├── README.md ├── inference ├── inference.py ├── multi_requests_batch_inference.py ├── multi_requests_inference.py ├── multi_thread_batch_inference.py ├── multi_thread_inference.py ├── requirements.txt ├── run.sh └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── bbox_voting.cpython-37.pyc │ ├── infer_request_wrap.cpython-37.pyc │ ├── nms.cpython-37.pyc │ ├── retinanet_adapter.cpython-37.pyc │ └── tools.cpython-37.pyc │ ├── bbox_voting.py │ ├── infer_request_wrap.py │ ├── nms.py │ ├── retinanet_adapter.py │ └── tools.py └── mmdetection ├── .DS_Store ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ ├── error-report.md │ ├── feature_request.md │ └── general_questions.md ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .style.yapf ├── .travis.yml ├── LICENSE ├── README.md ├── configs ├── .DS_Store ├── albu_example │ └── mask_rcnn_r50_fpn_1x.py ├── cascade_mask_rcnn_r101_fpn_1x.py ├── cascade_mask_rcnn_r50_caffe_c4_1x.py ├── cascade_mask_rcnn_r50_fpn_1x.py ├── cascade_mask_rcnn_x101_32x4d_fpn_1x.py ├── cascade_mask_rcnn_x101_64x4d_fpn_1x.py ├── cascade_rcnn_r101_fpn_1x.py ├── cascade_rcnn_r50_caffe_c4_1x.py ├── cascade_rcnn_r50_fpn_1x.py ├── cascade_rcnn_x101_32x4d_fpn_1x.py ├── cascade_rcnn_x101_64x4d_fpn_1x.py ├── cervical_cancer │ ├── retinanet_mobilenetv2_bifpn_1x.py │ ├── retinanet_mobilenetv2_fpn_1x.py │ ├── retinanet_mobilenetv2_fpn_dwhead_1x.py │ └── retinanet_r50_fpn_1x.py ├── cityscapes │ ├── README.md │ ├── faster_rcnn_r50_fpn_1x_cityscapes.py │ └── mask_rcnn_r50_fpn_1x_cityscapes.py ├── dcn │ ├── README.md │ ├── cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py │ ├── faster_rcnn_dpool_r50_fpn_1x.py │ ├── faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py │ ├── faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_mdpool_r50_fpn_1x.py │ └── mask_rcnn_dconv_c3-c5_r50_fpn_1x.py ├── double_heads │ └── dh_faster_rcnn_r50_fpn_1x.py ├── empirical_attention │ ├── README.md │ ├── faster_rcnn_r50_fpn_attention_0010_1x.py │ ├── faster_rcnn_r50_fpn_attention_0010_dcn_1x.py │ ├── faster_rcnn_r50_fpn_attention_1111_1x.py │ └── faster_rcnn_r50_fpn_attention_1111_dcn_1x.py ├── fast_mask_rcnn_r101_fpn_1x.py ├── fast_mask_rcnn_r50_caffe_c4_1x.py ├── fast_mask_rcnn_r50_fpn_1x.py ├── fast_rcnn_r101_fpn_1x.py ├── fast_rcnn_r50_caffe_c4_1x.py ├── fast_rcnn_r50_fpn_1x.py ├── faster_rcnn_ohem_r50_fpn_1x.py ├── faster_rcnn_r101_fpn_1x.py ├── faster_rcnn_r50_caffe_c4_1x.py ├── faster_rcnn_r50_fpn_1x.py ├── faster_rcnn_x101_32x4d_fpn_1x.py ├── faster_rcnn_x101_64x4d_fpn_1x.py ├── fcos │ ├── README.md │ ├── fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py │ ├── fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py │ └── fcos_r50_caffe_fpn_gn_1x_4gpu.py ├── foveabox │ ├── README.md │ ├── fovea_align_gn_ms_r101_fpn_4gpu_2x.py │ ├── fovea_align_gn_ms_r50_fpn_4gpu_2x.py │ ├── fovea_align_gn_r101_fpn_4gpu_2x.py │ ├── fovea_align_gn_r50_fpn_4gpu_2x.py │ └── fovea_r50_fpn_4gpu_1x.py ├── fp16 │ ├── faster_rcnn_r50_fpn_fp16_1x.py │ ├── mask_rcnn_r50_fpn_fp16_1x.py │ └── retinanet_r50_fpn_fp16_1x.py ├── free_anchor │ ├── README.md │ ├── retinanet_free_anchor_r101_fpn_1x.py │ ├── retinanet_free_anchor_r50_fpn_1x.py │ └── retinanet_free_anchor_x101-32x4d_fpn_1x.py ├── gcnet │ ├── README.md │ ├── mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py │ ├── mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py │ ├── mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py │ ├── mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py │ └── mask_rcnn_r50_fpn_sbn_1x.py ├── ghm │ ├── README.md │ └── retinanet_ghm_r50_fpn_1x.py ├── gn+ws │ ├── README.md │ ├── faster_rcnn_r50_fpn_gn_ws_1x.py │ ├── mask_rcnn_r50_fpn_gn_ws_20_23_24e.py │ ├── mask_rcnn_r50_fpn_gn_ws_2x.py │ └── mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py ├── gn │ ├── README.md │ ├── mask_rcnn_r101_fpn_gn_2x.py │ ├── mask_rcnn_r50_fpn_gn_2x.py │ └── mask_rcnn_r50_fpn_gn_contrib_2x.py ├── grid_rcnn │ ├── README.md │ ├── grid_rcnn_gn_head_r50_fpn_2x.py │ └── grid_rcnn_gn_head_x101_32x4d_fpn_2x.py ├── guided_anchoring │ ├── README.md │ ├── ga_fast_r50_caffe_fpn_1x.py │ ├── ga_faster_r50_caffe_fpn_1x.py │ ├── ga_faster_x101_32x4d_fpn_1x.py │ ├── ga_retinanet_r50_caffe_fpn_1x.py │ ├── ga_retinanet_x101_32x4d_fpn_1x.py │ ├── ga_rpn_r101_caffe_rpn_1x.py │ ├── ga_rpn_r50_caffe_fpn_1x.py │ └── ga_rpn_x101_32x4d_fpn_1x.py ├── hrnet │ ├── README.md │ ├── cascade_mask_rcnn_hrnetv2p_w32_20e.py │ ├── cascade_rcnn_hrnetv2p_w32_20e.py │ ├── faster_rcnn_hrnetv2p_w18_1x.py │ ├── faster_rcnn_hrnetv2p_w32_1x.py │ ├── faster_rcnn_hrnetv2p_w40_1x.py │ ├── fcos_hrnetv2p_w32_gn_1x_4gpu.py │ ├── htc_hrnetv2p_w32_20e.py │ ├── mask_rcnn_hrnetv2p_w18_1x.py │ └── mask_rcnn_hrnetv2p_w32_1x.py ├── htc │ ├── README.md │ ├── htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py │ ├── htc_r101_fpn_20e.py │ ├── htc_r50_fpn_1x.py │ ├── htc_r50_fpn_20e.py │ ├── htc_without_semantic_r50_fpn_1x.py │ ├── htc_x101_32x4d_fpn_20e_16gpu.py │ └── htc_x101_64x4d_fpn_20e_16gpu.py ├── libra_rcnn │ ├── README.md │ ├── libra_fast_rcnn_r50_fpn_1x.py │ ├── libra_faster_rcnn_r101_fpn_1x.py │ ├── libra_faster_rcnn_r50_fpn_1x.py │ ├── libra_faster_rcnn_x101_64x4d_fpn_1x.py │ └── libra_retinanet_r50_fpn_1x.py ├── mask_rcnn_r101_fpn_1x.py ├── mask_rcnn_r50_caffe_c4_1x.py ├── mask_rcnn_r50_fpn_1x.py ├── mask_rcnn_x101_32x4d_fpn_1x.py ├── mask_rcnn_x101_64x4d_fpn_1x.py ├── ms_rcnn │ ├── README.md │ ├── ms_rcnn_r101_caffe_fpn_1x.py │ ├── ms_rcnn_r50_caffe_fpn_1x.py │ └── ms_rcnn_x101_64x4d_fpn_1x.py ├── pascal_voc │ ├── README.md │ ├── faster_rcnn_r50_fpn_1x_voc0712.py │ ├── ssd300_voc.py │ └── ssd512_voc.py ├── reppoints │ ├── README.md │ ├── bbox_r50_grid_center_fpn_1x.py │ ├── bbox_r50_grid_fpn_1x.py │ ├── reppoints.png │ ├── reppoints_minmax_r50_fpn_1x.py │ ├── reppoints_moment_r101_dcn_fpn_2x.py │ ├── reppoints_moment_r101_dcn_fpn_2x_mt.py │ ├── reppoints_moment_r101_fpn_2x.py │ ├── reppoints_moment_r101_fpn_2x_mt.py │ ├── reppoints_moment_r50_fpn_1x.py │ ├── reppoints_moment_r50_fpn_2x.py │ ├── reppoints_moment_r50_fpn_2x_mt.py │ ├── reppoints_moment_x101_dcn_fpn_2x.py │ ├── reppoints_moment_x101_dcn_fpn_2x_mt.py │ └── reppoints_partial_minmax_r50_fpn_1x.py ├── retinanet_r101_fpn_1x.py ├── retinanet_r50_fpn_1x.py ├── retinanet_x101_32x4d_fpn_1x.py ├── retinanet_x101_64x4d_fpn_1x.py ├── rpn_r101_fpn_1x.py ├── rpn_r50_caffe_c4_1x.py ├── rpn_r50_fpn_1x.py ├── rpn_x101_32x4d_fpn_1x.py ├── rpn_x101_64x4d_fpn_1x.py ├── scratch │ ├── README.md │ ├── scratch_faster_rcnn_r50_fpn_gn_6x.py │ └── scratch_mask_rcnn_r50_fpn_gn_6x.py ├── ssd300_coco.py ├── ssd512_coco.py └── wider_face │ ├── README.md │ └── ssd300_wider_face.py ├── demo ├── coco_test_12510.jpg ├── corruptions_sev_3.png ├── data_pipeline.png ├── demo.jpg ├── inference_demo.ipynb ├── loss_curve.png └── webcam_demo.py ├── docker └── Dockerfile ├── docs ├── CHANGELOG.md ├── DATA_PIPELINE.md ├── GETTING_STARTED.md ├── INSTALL.md ├── MODEL_ZOO.md ├── ROBUSTNESS_BENCHMARKING.md └── TECHNICAL_DETAILS.md ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── env.py │ ├── inference.py │ └── train.py ├── core │ ├── __init__.py │ ├── anchor │ │ ├── __init__.py │ │ ├── anchor_generator.py │ │ ├── anchor_target.py │ │ ├── guided_anchor_target.py │ │ ├── point_generator.py │ │ └── point_target.py │ ├── bbox │ │ ├── __init__.py │ │ ├── assign_sampling.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── base_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ └── point_assigner.py │ │ ├── bbox_target.py │ │ ├── geometry.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── base_sampler.py │ │ │ ├── combined_sampler.py │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ ├── ohem_sampler.py │ │ │ ├── pseudo_sampler.py │ │ │ ├── random_sampler.py │ │ │ └── sampling_result.py │ │ └── transforms.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── coco_utils.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ └── recall.py │ ├── fp16 │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── hooks.py │ │ └── utils.py │ ├── mask │ │ ├── __init__.py │ │ ├── mask_target.py │ │ └── utils.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── bbox_nms.py │ │ └── merge_augs.py │ └── utils │ │ ├── __init__.py │ │ ├── dist_utils.py │ │ └── misc.py ├── datasets │ ├── __init__.py │ ├── builder.py │ ├── cervical_cancer.py │ ├── cityscapes.py │ ├── coco.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── loader │ │ ├── __init__.py │ │ ├── build_loader.py │ │ └── sampler.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── loading.py │ │ ├── stain_utils.py │ │ ├── test_aug.py │ │ └── transforms.py │ ├── registry.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── anchor_heads │ │ ├── __init__.py │ │ ├── anchor_head.py │ │ ├── fcos_head.py │ │ ├── fovea_head.py │ │ ├── free_anchor_retina_head.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── guided_anchor_head.py │ │ ├── reppoints_head.py │ │ ├── retina_head.py │ │ ├── rpn_head.py │ │ └── ssd_head.py │ ├── backbones │ │ ├── __init__.py │ │ ├── hrnet.py │ │ ├── mobilenet_v2.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ └── ssd_vgg.py │ ├── bbox_heads │ │ ├── __init__.py │ │ ├── bbox_head.py │ │ ├── convfc_bbox_head.py │ │ └── double_bbox_head.py │ ├── builder.py │ ├── detectors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── double_head_rcnn.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── single_stage.py │ │ ├── test_mixins.py │ │ └── two_stage.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── focal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── mse_loss.py │ │ ├── smooth_l1_loss.py │ │ └── utils.py │ ├── mask_heads │ │ ├── __init__.py │ │ ├── fcn_mask_head.py │ │ ├── fused_semantic_head.py │ │ ├── grid_head.py │ │ ├── htc_mask_head.py │ │ └── maskiou_head.py │ ├── necks │ │ ├── __init__.py │ │ ├── bfp.py │ │ ├── bifpn.py │ │ ├── fpn.py │ │ └── hrfpn.py │ ├── plugins │ │ ├── __init__.py │ │ ├── generalized_attention.py │ │ └── non_local.py │ ├── registry.py │ ├── roi_extractors │ │ ├── __init__.py │ │ └── single_level.py │ ├── shared_heads │ │ ├── __init__.py │ │ └── res_layer.py │ └── utils │ │ ├── __init__.py │ │ ├── conv_module.py │ │ ├── conv_ws.py │ │ ├── norm.py │ │ ├── scale.py │ │ └── weight_init.py ├── ops │ ├── __init__.py │ ├── context_block.py │ ├── dcn │ │ ├── __init__.py │ │ ├── deform_conv.py │ │ ├── deform_pool.py │ │ └── src │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ ├── deform_pool_cuda.cpp │ │ │ └── deform_pool_cuda_kernel.cu │ ├── masked_conv │ │ ├── __init__.py │ │ ├── masked_conv.py │ │ └── src │ │ │ ├── masked_conv2d_cuda.cpp │ │ │ └── masked_conv2d_kernel.cu │ ├── nms │ │ ├── __init__.py │ │ ├── nms_wrapper.py │ │ └── src │ │ │ ├── nms_cpu.cpp │ │ │ ├── nms_cuda.cpp │ │ │ ├── nms_kernel.cu │ │ │ └── soft_nms_cpu.pyx │ ├── roi_align │ │ ├── __init__.py │ │ ├── gradcheck.py │ │ ├── roi_align.py │ │ └── src │ │ │ ├── roi_align_cuda.cpp │ │ │ └── roi_align_kernel.cu │ ├── roi_pool │ │ ├── __init__.py │ │ ├── gradcheck.py │ │ ├── roi_pool.py │ │ └── src │ │ │ ├── roi_pool_cuda.cpp │ │ │ └── roi_pool_kernel.cu │ ├── sigmoid_focal_loss │ │ ├── __init__.py │ │ ├── sigmoid_focal_loss.py │ │ └── src │ │ │ ├── sigmoid_focal_loss.cpp │ │ │ └── sigmoid_focal_loss_cuda.cu │ └── utils │ │ ├── __init__.py │ │ └── src │ │ └── compiling_info.cpp └── utils │ ├── __init__.py │ ├── flops_counter.py │ └── registry.py ├── model_zoo └── .DS_Store ├── mytools ├── export_to_onnx.py ├── export_to_onnx.sh ├── test.py ├── test.sh └── voc_eval.py ├── pytest.ini ├── requirements.txt ├── setup.py ├── tests ├── requirements.txt ├── test_config.py ├── test_forward.py ├── test_nms.py ├── test_transform.py └── test_utils.py ├── tools ├── analyze_logs.py ├── coco_error_analysis.py ├── coco_eval.py ├── collect_env.py ├── convert_datasets │ └── pascal_voc.py ├── detectron2pytorch.py ├── dist_test.sh ├── dist_train.sh ├── get_flops.py ├── publish_model.py ├── robustness_eval.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── test_robustness.py ├── train.py ├── upgrade_model_version.py └── voc_eval.py └── train.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/README.md -------------------------------------------------------------------------------- /inference/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/inference.py -------------------------------------------------------------------------------- /inference/multi_requests_batch_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/multi_requests_batch_inference.py -------------------------------------------------------------------------------- /inference/multi_requests_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/multi_requests_inference.py -------------------------------------------------------------------------------- /inference/multi_thread_batch_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/multi_thread_batch_inference.py -------------------------------------------------------------------------------- /inference/multi_thread_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/multi_thread_inference.py -------------------------------------------------------------------------------- /inference/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.1.2.30 2 | numpy==1.17.3 3 | -------------------------------------------------------------------------------- /inference/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/run.sh -------------------------------------------------------------------------------- /inference/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/__pycache__/bbox_voting.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/bbox_voting.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/__pycache__/infer_request_wrap.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/infer_request_wrap.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/__pycache__/nms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/nms.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/__pycache__/retinanet_adapter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/retinanet_adapter.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/__pycache__/tools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/__pycache__/tools.cpython-37.pyc -------------------------------------------------------------------------------- /inference/utils/bbox_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/bbox_voting.py -------------------------------------------------------------------------------- /inference/utils/infer_request_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/infer_request_wrap.py -------------------------------------------------------------------------------- /inference/utils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/nms.py -------------------------------------------------------------------------------- /inference/utils/retinanet_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/retinanet_adapter.py -------------------------------------------------------------------------------- /inference/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/inference/utils/tools.py -------------------------------------------------------------------------------- /mmdetection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.DS_Store -------------------------------------------------------------------------------- /mmdetection/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmdetection/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/general_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.github/ISSUE_TEMPLATE/general_questions.md -------------------------------------------------------------------------------- /mmdetection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.gitignore -------------------------------------------------------------------------------- /mmdetection/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.isort.cfg -------------------------------------------------------------------------------- /mmdetection/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.style.yapf -------------------------------------------------------------------------------- /mmdetection/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/.travis.yml -------------------------------------------------------------------------------- /mmdetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/LICENSE -------------------------------------------------------------------------------- /mmdetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/README.md -------------------------------------------------------------------------------- /mmdetection/configs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/.DS_Store -------------------------------------------------------------------------------- /mmdetection/configs/albu_example/mask_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/albu_example/mask_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_mask_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_mask_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_mask_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_mask_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_mask_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_mask_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_mask_rcnn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_mask_rcnn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_mask_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_mask_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_rcnn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cascade_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_bifpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_bifpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_fpn_dwhead_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cervical_cancer/retinanet_mobilenetv2_fpn_dwhead_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cervical_cancer/retinanet_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cervical_cancer/retinanet_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cityscapes/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/faster_rcnn_r50_fpn_1x_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cityscapes/faster_rcnn_r50_fpn_1x_cityscapes.py -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/mask_rcnn_r50_fpn_1x_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/cityscapes/mask_rcnn_r50_fpn_1x_cityscapes.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_dpool_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_dpool_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_mdpool_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/faster_rcnn_mdpool_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/dh_faster_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/double_heads/dh_faster_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_mask_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_mask_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_mask_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_mask_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_mask_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_mask_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fast_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_ohem_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_ohem_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/faster_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fcos/fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fcos/fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py -------------------------------------------------------------------------------- /mmdetection/configs/fcos/fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fcos/fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/fcos/fcos_r50_caffe_fpn_gn_1x_4gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fcos/fcos_r50_caffe_fpn_gn_1x_4gpu.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_align_gn_ms_r101_fpn_4gpu_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/fovea_align_gn_ms_r101_fpn_4gpu_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_align_gn_ms_r50_fpn_4gpu_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/fovea_align_gn_ms_r50_fpn_4gpu_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_align_gn_r101_fpn_4gpu_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/fovea_align_gn_r101_fpn_4gpu_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_align_gn_r50_fpn_4gpu_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/fovea_align_gn_r50_fpn_4gpu_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_r50_fpn_4gpu_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/foveabox/fovea_r50_fpn_4gpu_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fp16/faster_rcnn_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fp16/faster_rcnn_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fp16/mask_rcnn_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fp16/mask_rcnn_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/fp16/retinanet_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/fp16/retinanet_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/free_anchor/README.md -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/retinanet_free_anchor_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/free_anchor/retinanet_free_anchor_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/retinanet_free_anchor_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/free_anchor/retinanet_free_anchor_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/retinanet_free_anchor_x101-32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/free_anchor/retinanet_free_anchor_x101-32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/mask_rcnn_r50_fpn_sbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gcnet/mask_rcnn_r50_fpn_sbn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ghm/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ghm/retinanet_ghm_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ghm/retinanet_ghm_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn+ws/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/faster_rcnn_r50_fpn_gn_ws_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn+ws/faster_rcnn_r50_fpn_gn_ws_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_20_23_24e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_20_23_24e.py -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn+ws/mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn/mask_rcnn_r101_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn/mask_rcnn_r101_fpn_gn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn/mask_rcnn_r50_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn/mask_rcnn_r50_fpn_gn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/gn/mask_rcnn_r50_fpn_gn_contrib_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/gn/mask_rcnn_r50_fpn_gn_contrib_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/grid_rcnn_gn_head_r50_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/grid_rcnn/grid_rcnn_gn_head_r50_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/grid_rcnn_gn_head_x101_32x4d_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/grid_rcnn/grid_rcnn_gn_head_x101_32x4d_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_fast_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_fast_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_faster_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_faster_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_faster_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_faster_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_retinanet_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_retinanet_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_retinanet_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_retinanet_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_rpn_r101_caffe_rpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_rpn_r101_caffe_rpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_rpn_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_rpn_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/ga_rpn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/guided_anchoring/ga_rpn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/cascade_mask_rcnn_hrnetv2p_w32_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/cascade_mask_rcnn_hrnetv2p_w32_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w18_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w18_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w32_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w32_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w40_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/faster_rcnn_hrnetv2p_w40_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/fcos_hrnetv2p_w32_gn_1x_4gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/fcos_hrnetv2p_w32_gn_1x_4gpu.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/mask_rcnn_hrnetv2p_w18_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/mask_rcnn_hrnetv2p_w18_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/mask_rcnn_hrnetv2p_w32_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/hrnet/mask_rcnn_hrnetv2p_w32_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r101_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_r101_fpn_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_r50_fpn_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_without_semantic_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_without_semantic_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_x101_32x4d_fpn_20e_16gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_x101_32x4d_fpn_20e_16gpu.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_x101_64x4d_fpn_20e_16gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/htc/htc_x101_64x4d_fpn_20e_16gpu.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/libra_faster_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/libra_faster_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/libra_faster_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/libra_faster_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/libra_faster_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/libra_faster_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/libra_retinanet_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/libra_rcnn/libra_retinanet_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/mask_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/mask_rcnn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/mask_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/mask_rcnn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/mask_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd300_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/pascal_voc/ssd300_voc.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd512_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/pascal_voc/ssd512_voc.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/README.md -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/bbox_r50_grid_center_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/bbox_r50_grid_center_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/bbox_r50_grid_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/bbox_r50_grid_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_minmax_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_minmax_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r101_dcn_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r101_dcn_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r101_dcn_fpn_2x_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r101_dcn_fpn_2x_mt.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r101_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r101_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r101_fpn_2x_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r101_fpn_2x_mt.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r50_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r50_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_r50_fpn_2x_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_r50_fpn_2x_mt.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_x101_dcn_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_x101_dcn_fpn_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_moment_x101_dcn_fpn_2x_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_moment_x101_dcn_fpn_2x_mt.py -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints_partial_minmax_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/reppoints/reppoints_partial_minmax_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/retinanet_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/retinanet_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/retinanet_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/retinanet_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/retinanet_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/retinanet_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/retinanet_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/retinanet_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/rpn_r101_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn_r50_caffe_c4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/rpn_r50_caffe_c4_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/rpn_r50_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/rpn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/rpn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/scratch/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scratch/scratch_faster_rcnn_r50_fpn_gn_6x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/scratch/scratch_faster_rcnn_r50_fpn_gn_6x.py -------------------------------------------------------------------------------- /mmdetection/configs/scratch/scratch_mask_rcnn_r50_fpn_gn_6x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/scratch/scratch_mask_rcnn_r50_fpn_gn_6x.py -------------------------------------------------------------------------------- /mmdetection/configs/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/wider_face/README.md -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /mmdetection/demo/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/coco_test_12510.jpg -------------------------------------------------------------------------------- /mmdetection/demo/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/corruptions_sev_3.png -------------------------------------------------------------------------------- /mmdetection/demo/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/data_pipeline.png -------------------------------------------------------------------------------- /mmdetection/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/demo.jpg -------------------------------------------------------------------------------- /mmdetection/demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/loss_curve.png -------------------------------------------------------------------------------- /mmdetection/demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/demo/webcam_demo.py -------------------------------------------------------------------------------- /mmdetection/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/CHANGELOG.md -------------------------------------------------------------------------------- /mmdetection/docs/DATA_PIPELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/DATA_PIPELINE.md -------------------------------------------------------------------------------- /mmdetection/docs/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/GETTING_STARTED.md -------------------------------------------------------------------------------- /mmdetection/docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/INSTALL.md -------------------------------------------------------------------------------- /mmdetection/docs/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/MODEL_ZOO.md -------------------------------------------------------------------------------- /mmdetection/docs/ROBUSTNESS_BENCHMARKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/ROBUSTNESS_BENCHMARKING.md -------------------------------------------------------------------------------- /mmdetection/docs/TECHNICAL_DETAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/docs/TECHNICAL_DETAILS.md -------------------------------------------------------------------------------- /mmdetection/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/apis/env.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/anchor_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/anchor_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/guided_anchor_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/guided_anchor_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/point_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/anchor/point_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assign_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assign_sampling.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/approx_max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/approx_max_iou_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/bbox_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/bbox_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/geometry.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/coco_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/fp16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/fp16/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/fp16/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/fp16/decorators.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/fp16/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/fp16/hooks.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/fp16/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/fp16/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/cervical_cancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/cervical_cancer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/loader/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/loader/build_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/loader/build_loader.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/loader/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/loader/sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/stain_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/stain_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/test_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/test_aug.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/registry.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/free_anchor_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/free_anchor_retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/reppoints_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/anchor_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/anchor_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/bbox_heads/convfc_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/bbox_heads/convfc_bbox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/bbox_heads/double_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/bbox_heads/double_bbox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/double_head_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/double_head_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/test_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/fcn_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/fcn_mask_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/fused_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/fused_semantic_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/htc_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/htc_mask_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/mask_heads/maskiou_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/mask_heads/maskiou_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/bifpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/necks/bifpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/generalized_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/plugins/generalized_attention.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/plugins/non_local.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/registry.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_extractors/single_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/roi_extractors/single_level.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/shared_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/shared_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/shared_heads/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/shared_heads/res_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/conv_module.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/conv_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/conv_ws.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/norm.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/scale.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/models/utils/weight_init.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/context_block.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/deform_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/deform_pool.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/src/deform_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/src/deform_pool_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/dcn/src/deform_pool_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/dcn/src/deform_pool_cuda_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/masked_conv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/masked_conv/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/masked_conv/masked_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/masked_conv/masked_conv.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/masked_conv/src/masked_conv2d_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/masked_conv/src/masked_conv2d_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/masked_conv/src/masked_conv2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/masked_conv/src/masked_conv2d_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/nms_wrapper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/src/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/src/nms_cpu.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/src/nms_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/src/nms_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/src/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/src/nms_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/nms/src/soft_nms_cpu.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/nms/src/soft_nms_cpu.pyx -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_align/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_align/gradcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_align/gradcheck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_align/roi_align.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_align/src/roi_align_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_align/src/roi_align_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_align/src/roi_align_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_align/src/roi_align_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_pool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_pool/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_pool/gradcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_pool/gradcheck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_pool/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_pool/roi_pool.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_pool/src/roi_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_pool/src/roi_pool_cuda.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/roi_pool/src/roi_pool_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/roi_pool/src/roi_pool_kernel.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/sigmoid_focal_loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/sigmoid_focal_loss/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/sigmoid_focal_loss/sigmoid_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/sigmoid_focal_loss/sigmoid_focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_cuda.cu -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/ops/utils/src/compiling_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/ops/utils/src/compiling_info.cpp -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/utils/flops_counter.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mmdet/utils/registry.py -------------------------------------------------------------------------------- /mmdetection/model_zoo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/model_zoo/.DS_Store -------------------------------------------------------------------------------- /mmdetection/mytools/export_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mytools/export_to_onnx.py -------------------------------------------------------------------------------- /mmdetection/mytools/export_to_onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mytools/export_to_onnx.sh -------------------------------------------------------------------------------- /mmdetection/mytools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mytools/test.py -------------------------------------------------------------------------------- /mmdetection/mytools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mytools/test.sh -------------------------------------------------------------------------------- /mmdetection/mytools/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/mytools/voc_eval.py -------------------------------------------------------------------------------- /mmdetection/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/pytest.ini -------------------------------------------------------------------------------- /mmdetection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/requirements.txt -------------------------------------------------------------------------------- /mmdetection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/setup.py -------------------------------------------------------------------------------- /mmdetection/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/requirements.txt -------------------------------------------------------------------------------- /mmdetection/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/test_config.py -------------------------------------------------------------------------------- /mmdetection/tests/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/test_forward.py -------------------------------------------------------------------------------- /mmdetection/tests/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/test_nms.py -------------------------------------------------------------------------------- /mmdetection/tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/test_transform.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tests/test_utils.py -------------------------------------------------------------------------------- /mmdetection/tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/analyze_logs.py -------------------------------------------------------------------------------- /mmdetection/tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/coco_error_analysis.py -------------------------------------------------------------------------------- /mmdetection/tools/coco_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/coco_eval.py -------------------------------------------------------------------------------- /mmdetection/tools/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/collect_env.py -------------------------------------------------------------------------------- /mmdetection/tools/convert_datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/convert_datasets/pascal_voc.py -------------------------------------------------------------------------------- /mmdetection/tools/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/detectron2pytorch.py -------------------------------------------------------------------------------- /mmdetection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/dist_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/dist_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/get_flops.py -------------------------------------------------------------------------------- /mmdetection/tools/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/publish_model.py -------------------------------------------------------------------------------- /mmdetection/tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/robustness_eval.py -------------------------------------------------------------------------------- /mmdetection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/test.py -------------------------------------------------------------------------------- /mmdetection/tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/test_robustness.py -------------------------------------------------------------------------------- /mmdetection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/train.py -------------------------------------------------------------------------------- /mmdetection/tools/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/upgrade_model_version.py -------------------------------------------------------------------------------- /mmdetection/tools/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/tools/voc_eval.py -------------------------------------------------------------------------------- /mmdetection/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-honghui/tianchi_Cervical_Cancer_VNNI_top1/HEAD/mmdetection/train.sh --------------------------------------------------------------------------------