├── C3-Framework ├── C3-Framework │ ├── README.md │ ├── config.py │ ├── datasets │ │ ├── GCC │ │ │ ├── GCC.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── prepare_GCC.m │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── Mall │ │ │ ├── Mall.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ └── setting.py │ │ ├── QNRF │ │ │ ├── QNRF.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── preapre_QNRF.m │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── SHHA │ │ │ ├── SHHA.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── SHHB │ │ │ ├── SHHB.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── preapre_SHHB.m │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── UCF50 │ │ │ ├── UCF50.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── preapre_UCF_CC_50.m │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── UCSD │ │ │ ├── UCSD.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ └── setting.py │ │ ├── WE │ │ │ ├── WE.py │ │ │ ├── __init__.py │ │ │ ├── loading_data.py │ │ │ ├── preapre_WE.m │ │ │ ├── readme.md │ │ │ └── setting.py │ │ ├── __init__.py │ │ └── get_density_map_gaussian.m │ ├── misc │ │ ├── __init__.py │ │ ├── cal_mean.py │ │ ├── layer.py │ │ ├── pytorch_ssim │ │ │ └── __init__.py │ │ ├── ssim_loss.py │ │ ├── transforms.py │ │ └── utils.py │ ├── models │ │ ├── CC.py │ │ ├── M2T2OCC.py │ │ ├── M2T2OCC_Model │ │ │ ├── CMTL.py │ │ │ └── __init__.py │ │ ├── M2TCC.py │ │ ├── M2TCC_Model │ │ │ ├── SANet.py │ │ │ └── __init__.py │ │ ├── SCC_Model │ │ │ ├── AlexNet.py │ │ │ ├── CSRNet.py │ │ │ ├── MCNN.py │ │ │ ├── Res101.py │ │ │ ├── Res101_SFCN.py │ │ │ ├── Res50.py │ │ │ ├── VGG.py │ │ │ ├── VGG_decoder.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── requirements.txt │ ├── results_reports │ │ ├── AlexNet │ │ │ ├── GCC_cc │ │ │ │ ├── 02-18_20-40_GCC_AlexNet_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 02-18_12-53_GCC_AlexNet_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 02-18_20-41_GCC_AlexNet_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── SHHB │ │ │ │ ├── 03-22_15-51_SHHB_AlexNet_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── CSRNet │ │ │ ├── GCC_cc │ │ │ │ ├── 01-26_13-07_GCC_CSRNet_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-27_04-37_GCC_CSRNet_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 01-25_23-01_GCC_CSRNet_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── SHHA │ │ │ │ ├── 12-27_10-14_SHHA_CSRNet_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── SHHB │ │ │ │ ├── 12-27_18-36_SHHB_CSRNet_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── MCNN │ │ │ ├── GCC_cc │ │ │ │ ├── 01-24_02-21_GCC_MCNN_0.0001_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-23_16-55_GCC_MCNN_0.0001_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 01-18_22-22_GCC_MCNN_0.0001_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── QNRF │ │ │ │ ├── 12-30_18-25_QNRF_MCNN_0.0001.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── SHHA │ │ │ │ ├── 12-30_12-35_SHHA_MCNN_0.0001.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── SHHB │ │ │ │ ├── 12-26_20-25_SHHB_MCNN_0.0001.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── Res101 │ │ │ ├── GCC_cc │ │ │ │ ├── 01-29_09-02_GCC_Res101_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-29_21-34_GCC_Res101_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── GCC_rd │ │ │ │ ├── 01-27_19-41_GCC_Res101_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── Res50 │ │ │ ├── GCC_cc │ │ │ │ ├── 01-11_18-51_GCC_Res50_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-10_07-12_GCC_Res50_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 12-29_17-03_GCC_Res50_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── SHHB │ │ │ │ ├── 12-28_09-18_SHHB_Res50_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── ResSFCN │ │ │ ├── GCC_cc │ │ │ │ ├── 02-14_02-44_GCC_Res101_SFCN_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 02-15_18-42_GCC_Res101_SFCN_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── GCC_rd │ │ │ │ ├── 02-12_11-39_GCC_Res101_SFCN_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── SANet │ │ │ ├── GCC_cc │ │ │ │ ├── 01-23_08-41_GCC_SANet_0.0001_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-24_15-14_GCC_SANet_0.0001_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 01-22_09-44_GCC_SANet_0.0001_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── SHHB │ │ │ │ ├── 01-08_20-41_SHHB_SANet_0.0001.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ ├── VGG │ │ │ ├── GCC_cc │ │ │ │ ├── 01-11_23-21_GCC_VGG_1e-05_cc.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ │ ├── 01-08_00-45_GCC_VGG_1e-05_cl.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ │ ├── 12-28_17-49_GCC_VGG_1e-05_rd.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── SHHA │ │ │ │ ├── 12-27_08-20_SHHA_VGG_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ ├── SHHB │ │ │ │ ├── 12-26_17-46_SHHB_VGG_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ │ └── UCFQNRF │ │ │ │ ├── 12-28_20-51_QNRF_VGG_1e-05.txt │ │ │ │ ├── config.py │ │ │ │ ├── img1.png │ │ │ │ ├── img2.png │ │ │ │ ├── readme.md │ │ │ │ └── setting.py │ │ └── VGG_decoder │ │ │ ├── GCC_cc │ │ │ ├── 01-14_09-27_GCC_VGG_DECODER_1e-05_cc.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ │ │ ├── GCC_cl │ │ │ ├── 01-08_00-40_GCC_VGG_DECODER_1e-05_cl.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ │ │ ├── GCC_rd │ │ │ ├── 12-29_17-05_GCC_VGG_DECODER_1e-05_rd.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ │ │ ├── SHHA │ │ │ ├── 12-29_17-40_SHHA_VGG_DECODER_1e-05.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ │ │ ├── SHHB │ │ │ ├── 12-26_16-18_SHHB_VGG_DECODER_1e-05.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ │ │ └── UCFQNRF │ │ │ ├── 12-28_21-29_QNRF_VGG_DECODER_1e-05.txt │ │ │ ├── config.py │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── readme.md │ │ │ └── setting.py │ ├── test.py │ ├── train.py │ ├── trainer.py │ ├── trainer_for_CMTL.py │ └── trainer_for_M2TCC.py └── SR │ ├── 4xUpSamplingDemo.sh │ ├── README.md │ ├── checkpoints │ ├── discriminator_final.pth │ ├── generator_final.pth │ └── generator_pretrain.pth │ ├── data │ ├── A │ │ ├── people183.jpg │ │ ├── people202.jpg │ │ └── people211.jpg │ └── README.txt │ ├── models.py │ ├── output │ ├── high_res_fake │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ ├── high_res_real │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ └── low_res │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ ├── test.py │ ├── test_fall.py │ ├── train.py │ ├── utils.py │ └── 代码说明.txt ├── README.md ├── fall_down ├── A_3.csv ├── SR │ ├── 4xUpSamplingDemo.sh │ ├── README.md │ ├── checkpoints │ │ ├── discriminator_final.pth │ │ ├── generator_final.pth │ │ └── generator_pretrain.pth │ ├── data │ │ ├── A │ │ │ ├── people183.jpg │ │ │ ├── people202.jpg │ │ │ └── people211.jpg │ │ └── README.txt │ ├── models.py │ ├── output │ │ ├── high_res_fake │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ ├── high_res_real │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── low_res │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── test.py │ ├── test_fall.py │ ├── train.py │ ├── utils.py │ └── 代码说明.txt ├── coco_names.py ├── data │ └── DataPS.txt ├── detect.py ├── fall_down_detection.py ├── mean_std.py ├── rescale.py └── 代码说明.txt └── mmdetection ├── .circleci └── config.yml ├── .dev_scripts ├── batch_test_list.py ├── batch_train_list.txt ├── benchmark_filter.py ├── benchmark_inference_fps.py ├── benchmark_test_image.py ├── convert_test_benchmark_script.py ├── convert_train_benchmark_script.py ├── gather_models.py ├── gather_test_benchmark_metric.py ├── gather_train_benchmark_metric.py ├── linter.sh ├── test_benchmark.sh ├── test_init_backbone.py └── train_benchmark.sh ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── error-report.md │ ├── feature_request.md │ ├── general_questions.md │ └── reimplementation_questions.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── build_pat.yml │ ├── deploy.yml │ └── lint.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh-CN.md ├── configs ├── _base_ │ ├── datasets │ │ ├── cityscapes_detection.py │ │ ├── cityscapes_instance.py │ │ ├── coco_detection.py │ │ ├── coco_instance.py │ │ ├── coco_instance_semantic.py │ │ ├── coco_panoptic.py │ │ ├── deepfashion.py │ │ ├── lvis_v0.5_instance.py │ │ ├── lvis_v1_instance.py │ │ ├── voc0712.py │ │ └── wider_face.py │ ├── default_runtime.py │ ├── models │ │ ├── cascade_mask_rcnn_r50_fpn.py │ │ ├── cascade_rcnn_r50_fpn.py │ │ ├── fast_rcnn_r50_fpn.py │ │ ├── faster_rcnn_r50_caffe_c4.py │ │ ├── faster_rcnn_r50_caffe_dc5.py │ │ ├── faster_rcnn_r50_fpn.py │ │ ├── mask_rcnn_r50_caffe_c4.py │ │ ├── mask_rcnn_r50_fpn.py │ │ ├── retinanet_r50_fpn.py │ │ ├── rpn_r50_caffe_c4.py │ │ ├── rpn_r50_fpn.py │ │ └── ssd300.py │ └── schedules │ │ ├── schedule_1x.py │ │ ├── schedule_20e.py │ │ └── schedule_2x.py ├── albu_example │ ├── README.md │ └── mask_rcnn_r50_fpn_albu_1x_coco.py ├── atss │ ├── README.md │ ├── atss_r101_fpn_1x_coco.py │ ├── atss_r50_fpn_1x_coco.py │ └── metafile.yml ├── autoassign │ ├── README.md │ ├── autoassign_r50_fpn_8x2_1x_coco.py │ └── metafile.yml ├── carafe │ ├── README.md │ ├── faster_rcnn_r50_fpn_carafe_1x_coco.py │ ├── mask_rcnn_r50_fpn_carafe_1x_coco.py │ └── metafile.yml ├── cascade_rcnn │ ├── README.md │ ├── cascade_mask_rcnn_r101_caffe_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r101_caffe_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r101_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r101_fpn_20e_coco.py │ ├── cascade_mask_rcnn_r101_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r50_caffe_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_caffe_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_20e_coco.py │ ├── cascade_mask_rcnn_r50_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_32x8d_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_mstrain_3x_coco.py │ ├── cascade_rcnn_r101_caffe_fpn_1x_coco.py │ ├── cascade_rcnn_r101_fpn_1x_coco.py │ ├── cascade_rcnn_r101_fpn_20e_coco.py │ ├── cascade_rcnn_r50_caffe_fpn_1x_coco.py │ ├── cascade_rcnn_r50_fpn_1x_coco.py │ ├── cascade_rcnn_r50_fpn_20e_coco.py │ ├── cascade_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── cascade_rcnn_x101_32x4d_fpn_20e_coco.py │ ├── cascade_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── cascade_rcnn_x101_64x4d_fpn_20e_coco.py │ └── metafile.yml ├── cascade_rpn │ ├── README.md │ ├── crpn_fast_rcnn_r50_caffe_fpn_1x_coco.py │ ├── crpn_faster_rcnn_r50_caffe_fpn_1x_coco.py │ └── crpn_r50_caffe_fpn_1x_coco.py ├── centernet │ ├── README.md │ ├── centernet_resnet18_140e_coco.py │ ├── centernet_resnet18_dcnv2_140e_coco.py │ └── metafile.yml ├── centripetalnet │ ├── README.md │ ├── centripetalnet_hourglass104_mstest_16x6_210e_coco.py │ └── metafile.yml ├── cityscapes │ ├── README.md │ ├── faster_rcnn_r50_fpn_1x_cityscapes.py │ └── mask_rcnn_r50_fpn_1x_cityscapes.py ├── common │ ├── lsj_100e_coco_instance.py │ ├── mstrain-poly_3x_coco_instance.py │ ├── mstrain_3x_coco.py │ └── mstrain_3x_coco_instance.py ├── cornernet │ ├── README.md │ ├── cornernet_hourglass104_mstest_10x5_210e_coco.py │ ├── cornernet_hourglass104_mstest_32x3_210e_coco.py │ ├── cornernet_hourglass104_mstest_8x6_210e_coco.py │ └── metafile.yml ├── dcn │ ├── README.md │ ├── cascade_mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_dconv_c3-c5_1x_coco.py │ ├── cascade_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py │ ├── cascade_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py │ ├── faster_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py │ ├── faster_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py │ ├── faster_rcnn_r50_fpn_dpool_1x_coco.py │ ├── faster_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.py │ ├── faster_rcnn_r50_fpn_mdconv_c3-c5_group4_1x_coco.py │ ├── faster_rcnn_r50_fpn_mdpool_1x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_fp16_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_fp16_mdconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.py │ └── metafile.yml ├── deepfashion │ ├── README.md │ └── mask_rcnn_r50_fpn_15e_deepfashion.py ├── deformable_detr │ ├── README.md │ ├── deformable_detr_r50_16x2_50e_coco.py │ ├── deformable_detr_refine_r50_16x2_50e_coco.py │ ├── deformable_detr_twostage_refine_r50_16x2_50e_coco.py │ └── metafile.yml ├── detectors │ ├── README.md │ ├── cascade_rcnn_r50_rfp_1x_coco.py │ ├── cascade_rcnn_r50_sac_1x_coco.py │ ├── detectors_cascade_rcnn_r50_1x_coco.py │ ├── detectors_htc_r101_20e_coco.py │ ├── detectors_htc_r50_1x_coco.py │ ├── htc_r50_rfp_1x_coco.py │ ├── htc_r50_sac_1x_coco.py │ └── metafile.yml ├── detr │ ├── README.md │ ├── detr_r50_8x2_150e_coco.py │ └── metafile.yml ├── double_heads │ ├── README.md │ ├── dh_faster_rcnn_r50_fpn_1x_coco.py │ └── metafile.yml ├── dynamic_rcnn │ ├── README.md │ ├── dynamic_rcnn_r50_fpn_1x_coco.py │ └── metafile.yml ├── empirical_attention │ ├── README.md │ ├── faster_rcnn_r50_fpn_attention_0010_1x_coco.py │ ├── faster_rcnn_r50_fpn_attention_0010_dcn_1x_coco.py │ ├── faster_rcnn_r50_fpn_attention_1111_1x_coco.py │ ├── faster_rcnn_r50_fpn_attention_1111_dcn_1x_coco.py │ └── metafile.yml ├── fast_rcnn │ ├── README.md │ ├── fast_rcnn_r101_caffe_fpn_1x_coco.py │ ├── fast_rcnn_r101_fpn_1x_coco.py │ ├── fast_rcnn_r101_fpn_2x_coco.py │ ├── fast_rcnn_r50_caffe_fpn_1x_coco.py │ ├── fast_rcnn_r50_fpn_1x_coco.py │ └── fast_rcnn_r50_fpn_2x_coco.py ├── faster_rcnn │ ├── README.md │ ├── faster_rcnn_r101_caffe_fpn_1x_coco.py │ ├── faster_rcnn_r101_caffe_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r101_fpn_1x_coco.py │ ├── faster_rcnn_r101_fpn_2x_coco.py │ ├── faster_rcnn_r101_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r50_caffe_c4_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_mstrain_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_mstrain_3x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_1x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_90k_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person-bicycle-car.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_2x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_90k_coco.py │ ├── faster_rcnn_r50_fpn_1x_coco.py │ ├── faster_rcnn_r50_fpn_2x_coco.py │ ├── faster_rcnn_r50_fpn_bounded_iou_1x_coco.py │ ├── faster_rcnn_r50_fpn_ciou_1x_coco.py │ ├── faster_rcnn_r50_fpn_fp16_1x_coco.py │ ├── faster_rcnn_r50_fpn_giou_1x_coco.py │ ├── faster_rcnn_r50_fpn_iou_1x_coco.py │ ├── faster_rcnn_r50_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r50_fpn_ohem_1x_coco.py │ ├── faster_rcnn_r50_fpn_soft_nms_1x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_2x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_x101_32x8d_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── faster_rcnn_x101_64x4d_fpn_2x_coco.py │ ├── faster_rcnn_x101_64x4d_fpn_mstrain_3x_coco.py │ └── metafile.yml ├── fcos │ ├── README.md │ ├── fcos_center-normbbox-centeronreg-giou_r50_caffe_fpn_gn-head_1x_coco.py │ ├── fcos_center-normbbox-centeronreg-giou_r50_caffe_fpn_gn-head_dcn_1x_coco.py │ ├── fcos_center_r50_caffe_fpn_gn-head_1x_coco.py │ ├── fcos_r101_caffe_fpn_gn-head_1x_coco.py │ ├── fcos_r101_caffe_fpn_gn-head_mstrain_640-800_2x_coco.py │ ├── fcos_r50_caffe_fpn_gn-head_1x_coco.py │ ├── fcos_r50_caffe_fpn_gn-head_4x4_1x_coco.py │ ├── fcos_r50_caffe_fpn_gn-head_mstrain_640-800_2x_coco.py │ ├── fcos_x101_64x4d_fpn_gn-head_mstrain_640-800_2x_coco.py │ └── metafile.yml ├── foveabox │ ├── README.md │ ├── fovea_align_r101_fpn_gn-head_4x4_2x_coco.py │ ├── fovea_align_r101_fpn_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fovea_align_r50_fpn_gn-head_4x4_2x_coco.py │ ├── fovea_align_r50_fpn_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fovea_r101_fpn_4x4_1x_coco.py │ ├── fovea_r101_fpn_4x4_2x_coco.py │ ├── fovea_r50_fpn_4x4_1x_coco.py │ ├── fovea_r50_fpn_4x4_2x_coco.py │ └── metafile.yml ├── fpg │ ├── README.md │ ├── faster_rcnn_r50_fpg-chn128_crop640_50e_coco.py │ ├── faster_rcnn_r50_fpg_crop640_50e_coco.py │ ├── faster_rcnn_r50_fpn_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpg-chn128_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpg_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpn_crop640_50e_coco.py │ ├── metafile.yml │ ├── retinanet_r50_fpg-chn128_crop640_50e_coco.py │ └── retinanet_r50_fpg_crop640_50e_coco.py ├── free_anchor │ ├── README.md │ ├── metafile.yml │ ├── retinanet_free_anchor_r101_fpn_1x_coco.py │ ├── retinanet_free_anchor_r50_fpn_1x_coco.py │ └── retinanet_free_anchor_x101_32x4d_fpn_1x_coco.py ├── fsaf │ ├── README.md │ ├── fsaf_r101_fpn_1x_coco.py │ ├── fsaf_r50_fpn_1x_coco.py │ ├── fsaf_x101_64x4d_fpn_1x_coco.py │ └── metafile.yml ├── gcnet │ ├── README.md │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r16_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r4_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ └── metafile.yml ├── gfl │ ├── README.md │ ├── gfl_r101_fpn_dconv_c3-c5_mstrain_2x_coco.py │ ├── gfl_r101_fpn_mstrain_2x_coco.py │ ├── gfl_r50_fpn_1x_coco.py │ ├── gfl_r50_fpn_mstrain_2x_coco.py │ ├── gfl_x101_32x4d_fpn_dconv_c4-c5_mstrain_2x_coco.py │ ├── gfl_x101_32x4d_fpn_mstrain_2x_coco.py │ └── metafile.yml ├── ghm │ ├── README.md │ ├── metafile.yml │ ├── retinanet_ghm_r101_fpn_1x_coco.py │ ├── retinanet_ghm_r50_fpn_1x_coco.py │ ├── retinanet_ghm_x101_32x4d_fpn_1x_coco.py │ └── retinanet_ghm_x101_64x4d_fpn_1x_coco.py ├── gn+ws │ ├── README.md │ ├── faster_rcnn_r101_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_r50_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_x50_32x4d_fpn_gn_ws-all_1x_coco.py │ ├── mask_rcnn_r101_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_r101_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_r50_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_x50_32x4d_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_x50_32x4d_fpn_gn_ws-all_2x_coco.py │ └── metafile.yml ├── gn │ ├── README.md │ ├── mask_rcnn_r101_fpn_gn-all_2x_coco.py │ ├── mask_rcnn_r101_fpn_gn-all_3x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_3x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_contrib_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_contrib_3x_coco.py │ └── metafile.yml ├── grid_rcnn │ ├── README.md │ ├── grid_rcnn_r101_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_1x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_x101_32x4d_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_x101_64x4d_fpn_gn-head_2x_coco.py │ └── metafile.yml ├── groie │ ├── README.md │ ├── faster_rcnn_r50_fpn_groie_1x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_groie_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.py │ ├── mask_rcnn_r50_fpn_groie_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.py │ └── metafile.yml ├── guided_anchoring │ ├── README.md │ ├── ga_fast_r50_caffe_fpn_1x_coco.py │ ├── ga_faster_r101_caffe_fpn_1x_coco.py │ ├── ga_faster_r50_caffe_fpn_1x_coco.py │ ├── ga_faster_r50_fpn_1x_coco.py │ ├── ga_faster_x101_32x4d_fpn_1x_coco.py │ ├── ga_faster_x101_64x4d_fpn_1x_coco.py │ ├── ga_retinanet_r101_caffe_fpn_1x_coco.py │ ├── ga_retinanet_r101_caffe_fpn_mstrain_2x.py │ ├── ga_retinanet_r50_caffe_fpn_1x_coco.py │ ├── ga_retinanet_r50_fpn_1x_coco.py │ ├── ga_retinanet_x101_32x4d_fpn_1x_coco.py │ ├── ga_retinanet_x101_64x4d_fpn_1x_coco.py │ ├── ga_rpn_r101_caffe_fpn_1x_coco.py │ ├── ga_rpn_r50_caffe_fpn_1x_coco.py │ ├── ga_rpn_r50_fpn_1x_coco.py │ ├── ga_rpn_x101_32x4d_fpn_1x_coco.py │ ├── ga_rpn_x101_64x4d_fpn_1x_coco.py │ └── metafile.yml ├── hrnet │ ├── README.md │ ├── cascade_mask_rcnn_hrnetv2p_w18_20e_coco.py │ ├── cascade_mask_rcnn_hrnetv2p_w32_20e_coco.py │ ├── cascade_mask_rcnn_hrnetv2p_w40_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w18_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w32_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w40_20e_coco.py │ ├── faster_rcnn_hrnetv2p_w18_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w18_2x_coco.py │ ├── faster_rcnn_hrnetv2p_w32_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w32_2x_coco.py │ ├── faster_rcnn_hrnetv2p_w40_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w40_2x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_4x4_1x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_4x4_1x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w40_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── htc_hrnetv2p_w18_20e_coco.py │ ├── htc_hrnetv2p_w32_20e_coco.py │ ├── htc_hrnetv2p_w40_20e_coco.py │ ├── htc_hrnetv2p_w40_28e_coco.py │ ├── htc_x101_64x4d_fpn_16x1_28e_coco.py │ ├── mask_rcnn_hrnetv2p_w18_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w18_2x_coco.py │ ├── mask_rcnn_hrnetv2p_w32_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w32_2x_coco.py │ ├── mask_rcnn_hrnetv2p_w40_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w40_2x_coco.py │ └── metafile.yml ├── htc │ ├── README.md │ ├── htc_r101_fpn_20e_coco.py │ ├── htc_r50_fpn_1x_coco.py │ ├── htc_r50_fpn_20e_coco.py │ ├── htc_without_semantic_r50_fpn_1x_coco.py │ ├── htc_x101_32x4d_fpn_16x1_20e_coco.py │ ├── htc_x101_64x4d_fpn_16x1_20e_coco.py │ ├── htc_x101_64x4d_fpn_dconv_c3-c5_mstrain_400_1400_16x1_20e_coco.py │ └── metafile.yml ├── instaboost │ ├── README.md │ ├── cascade_mask_rcnn_r101_fpn_instaboost_4x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_instaboost_4x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_r101_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_r50_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.py │ └── metafile.yml ├── lad │ ├── README.md │ ├── lad_r101_paa_r50_fpn_coco_1x.py │ └── lad_r50_paa_r101_fpn_coco_1x.py ├── ld │ ├── README.md │ ├── ld_r101_gflv1_r101dcn_fpn_coco_2x.py │ ├── ld_r18_gflv1_r101_fpn_coco_1x.py │ ├── ld_r34_gflv1_r101_fpn_coco_1x.py │ ├── ld_r50_gflv1_r101_fpn_coco_1x.py │ └── metafile.yml ├── legacy_1.x │ ├── README.md │ ├── cascade_mask_rcnn_r50_fpn_1x_coco_v1.py │ ├── faster_rcnn_r50_fpn_1x_coco_v1.py │ ├── mask_rcnn_r50_fpn_1x_coco_v1.py │ ├── retinanet_r50_caffe_fpn_1x_coco_v1.py │ ├── retinanet_r50_fpn_1x_coco_v1.py │ └── ssd300_coco_v1.py ├── libra_rcnn │ ├── README.md │ ├── libra_fast_rcnn_r50_fpn_1x_coco.py │ ├── libra_faster_rcnn_r101_fpn_1x_coco.py │ ├── libra_faster_rcnn_r50_fpn_1x_coco.py │ ├── libra_faster_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── libra_retinanet_r50_fpn_1x_coco.py │ └── metafile.yml ├── lvis │ ├── README.md │ ├── mask_rcnn_r101_fpn_sample1e-3_mstrain_1x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_sample1e-3_mstrain_2x_lvis_v0.5.py │ ├── mask_rcnn_r50_fpn_sample1e-3_mstrain_1x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_sample1e-3_mstrain_2x_lvis_v0.5.py │ ├── mask_rcnn_x101_32x4d_fpn_sample1e-3_mstrain_1x_lvis_v1.py │ ├── mask_rcnn_x101_32x4d_fpn_sample1e-3_mstrain_2x_lvis_v0.5.py │ ├── mask_rcnn_x101_64x4d_fpn_sample1e-3_mstrain_1x_lvis_v1.py │ └── mask_rcnn_x101_64x4d_fpn_sample1e-3_mstrain_2x_lvis_v0.5.py ├── mask_rcnn │ ├── README.md │ ├── mask_rcnn_r101_caffe_fpn_1x_coco.py │ ├── mask_rcnn_r101_caffe_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_r101_fpn_1x_coco.py │ ├── mask_rcnn_r101_fpn_2x_coco.py │ ├── mask_rcnn_r101_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_r50_caffe_c4_1x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_1x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_1x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_2x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_mstrain_1x_coco.py │ ├── mask_rcnn_r50_caffe_fpn_poly_1x_coco_v1.py │ ├── mask_rcnn_r50_fpn_1x_coco.py │ ├── mask_rcnn_r50_fpn_2x_coco.py │ ├── mask_rcnn_r50_fpn_fp16_1x_coco.py │ ├── mask_rcnn_r50_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_r50_fpn_poly_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_2x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_1x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_1x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_2x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_mstrain-poly_3x_coco.py │ └── metafile.yml ├── ms_rcnn │ ├── README.md │ ├── metafile.yml │ ├── ms_rcnn_r101_caffe_fpn_1x_coco.py │ ├── ms_rcnn_r101_caffe_fpn_2x_coco.py │ ├── ms_rcnn_r50_caffe_fpn_1x_coco.py │ ├── ms_rcnn_r50_caffe_fpn_2x_coco.py │ ├── ms_rcnn_r50_fpn_1x_coco.py │ ├── ms_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── ms_rcnn_x101_64x4d_fpn_1x_coco.py │ └── ms_rcnn_x101_64x4d_fpn_2x_coco.py ├── nas_fcos │ ├── README.md │ ├── metafile.yml │ ├── nas_fcos_fcoshead_r50_caffe_fpn_gn-head_4x4_1x_coco.py │ └── nas_fcos_nashead_r50_caffe_fpn_gn-head_4x4_1x_coco.py ├── nas_fpn │ ├── README.md │ ├── metafile.yml │ ├── retinanet_r50_fpn_crop640_50e_coco.py │ └── retinanet_r50_nasfpn_crop640_50e_coco.py ├── paa │ ├── README.md │ ├── metafile.yml │ ├── paa_r101_fpn_1x_coco.py │ ├── paa_r101_fpn_2x_coco.py │ ├── paa_r101_fpn_mstrain_3x_coco.py │ ├── paa_r50_fpn_1.5x_coco.py │ ├── paa_r50_fpn_1x_coco.py │ ├── paa_r50_fpn_2x_coco.py │ └── paa_r50_fpn_mstrain_3x_coco.py ├── pafpn │ ├── README.md │ ├── faster_rcnn_r50_pafpn_1x_coco.py │ └── metafile.yml ├── panoptic_fpn │ ├── README.md │ ├── metafile.yml │ ├── panoptic_fpn_r101_fpn_1x_coco.py │ ├── panoptic_fpn_r101_fpn_mstrain_3x_coco.py │ ├── panoptic_fpn_r50_fpn_1x_coco.py │ └── panoptic_fpn_r50_fpn_mstrain_3x_coco.py ├── pascal_voc │ ├── README.md │ ├── faster_rcnn_r50_fpn_1x_voc0712.py │ ├── faster_rcnn_r50_fpn_1x_voc0712_cocofmt.py │ ├── retinanet_r50_fpn_1x_voc0712.py │ ├── ssd300_voc0712.py │ └── ssd512_voc0712.py ├── pisa │ ├── README.md │ ├── metafile.yml │ ├── pisa_faster_rcnn_r50_fpn_1x_coco.py │ ├── pisa_faster_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── pisa_mask_rcnn_r50_fpn_1x_coco.py │ ├── pisa_mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── pisa_retinanet_r50_fpn_1x_coco.py │ ├── pisa_retinanet_x101_32x4d_fpn_1x_coco.py │ ├── pisa_ssd300_coco.py │ └── pisa_ssd512_coco.py ├── point_rend │ ├── README.md │ ├── metafile.yml │ ├── point_rend_r50_caffe_fpn_mstrain_1x_coco.py │ └── point_rend_r50_caffe_fpn_mstrain_3x_coco.py ├── pvt │ ├── README.md │ ├── metafile.yml │ ├── retinanet_pvt-l_fpn_1x_coco.py │ ├── retinanet_pvt-m_fpn_1x_coco.py │ ├── retinanet_pvt-s_fpn_1x_coco.py │ ├── retinanet_pvt-t_fpn_1x_coco.py │ ├── retinanet_pvtv2-b0_fpn_1x_coco.py │ ├── retinanet_pvtv2-b1_fpn_1x_coco.py │ ├── retinanet_pvtv2-b2_fpn_1x_coco.py │ ├── retinanet_pvtv2-b3_fpn_1x_coco.py │ ├── retinanet_pvtv2-b4_fpn_1x_coco.py │ └── retinanet_pvtv2-b5_fpn_1x_coco.py ├── queryinst │ ├── README.md │ ├── metafile.yml │ ├── queryinst_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ ├── queryinst_r101_fpn_mstrain_480-800_3x_coco.py │ ├── queryinst_r50_fpn_1x_coco.py │ ├── queryinst_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ └── queryinst_r50_fpn_mstrain_480-800_3x_coco.py ├── regnet │ ├── README.md │ ├── cascade_mask_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_1x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_2x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.py │ ├── mask_rcnn_regnetx-1.6GF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-12GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_mdconv_c3-c5_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── mask_rcnn_regnetx-400MF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-4GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-4GF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-6.4GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-800MF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-8GF_fpn_1x_coco.py │ ├── metafile.yml │ ├── retinanet_regnetx-1.6GF_fpn_1x_coco.py │ ├── retinanet_regnetx-3.2GF_fpn_1x_coco.py │ └── retinanet_regnetx-800MF_fpn_1x_coco.py ├── reppoints │ ├── README.md │ ├── bbox_r50_grid_center_fpn_gn-neck+head_1x_coco.py │ ├── bbox_r50_grid_fpn_gn-neck+head_1x_coco.py │ ├── metafile.yml │ ├── reppoints.png │ ├── reppoints_minmax_r50_fpn_gn-neck+head_1x_coco.py │ ├── reppoints_moment_r101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.py │ ├── reppoints_moment_r101_fpn_gn-neck+head_2x_coco.py │ ├── reppoints_moment_r50_fpn_1x_coco.py │ ├── reppoints_moment_r50_fpn_gn-neck+head_1x_coco.py │ ├── reppoints_moment_r50_fpn_gn-neck+head_2x_coco.py │ ├── reppoints_moment_x101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.py │ └── reppoints_partial_minmax_r50_fpn_gn-neck+head_1x_coco.py ├── res2net │ ├── README.md │ ├── cascade_mask_rcnn_r2_101_fpn_20e_coco.py │ ├── cascade_rcnn_r2_101_fpn_20e_coco.py │ ├── faster_rcnn_r2_101_fpn_2x_coco.py │ ├── htc_r2_101_fpn_20e_coco.py │ ├── mask_rcnn_r2_101_fpn_2x_coco.py │ └── metafile.yml ├── resnest │ ├── README.md │ ├── cascade_mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── cascade_mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── cascade_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── cascade_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── faster_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── faster_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ └── metafile.yml ├── retinanet │ ├── README.md │ ├── metafile.yml │ ├── retinanet_r101_caffe_fpn_1x_coco.py │ ├── retinanet_r101_caffe_fpn_mstrain_3x_coco.py │ ├── retinanet_r101_fpn_1x_coco.py │ ├── retinanet_r101_fpn_2x_coco.py │ ├── retinanet_r101_fpn_mstrain_640-800_3x_coco.py │ ├── retinanet_r50_caffe_fpn_1x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_1x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_2x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_3x_coco.py │ ├── retinanet_r50_fpn_1x_coco.py │ ├── retinanet_r50_fpn_2x_coco.py │ ├── retinanet_r50_fpn_90k_coco.py │ ├── retinanet_r50_fpn_fp16_1x_coco.py │ ├── retinanet_r50_fpn_mstrain_640-800_3x_coco.py │ ├── retinanet_x101_32x4d_fpn_1x_coco.py │ ├── retinanet_x101_32x4d_fpn_2x_coco.py │ ├── retinanet_x101_64x4d_fpn_1x_coco.py │ ├── retinanet_x101_64x4d_fpn_2x_coco.py │ └── retinanet_x101_64x4d_fpn_mstrain_640-800_3x_coco.py ├── rpn │ ├── README.md │ ├── rpn_r101_caffe_fpn_1x_coco.py │ ├── rpn_r101_fpn_1x_coco.py │ ├── rpn_r101_fpn_2x_coco.py │ ├── rpn_r50_caffe_c4_1x_coco.py │ ├── rpn_r50_caffe_fpn_1x_coco.py │ ├── rpn_r50_fpn_1x_coco.py │ ├── rpn_r50_fpn_2x_coco.py │ ├── rpn_x101_32x4d_fpn_1x_coco.py │ ├── rpn_x101_32x4d_fpn_2x_coco.py │ ├── rpn_x101_64x4d_fpn_1x_coco.py │ └── rpn_x101_64x4d_fpn_2x_coco.py ├── sabl │ ├── README.md │ ├── metafile.yml │ ├── sabl_cascade_rcnn_r101_fpn_1x_coco.py │ ├── sabl_cascade_rcnn_r50_fpn_1x_coco.py │ ├── sabl_faster_rcnn_r101_fpn_1x_coco.py │ ├── sabl_faster_rcnn_r50_fpn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_gn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_480_960_coco.py │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_640_800_coco.py │ ├── sabl_retinanet_r50_fpn_1x_coco.py │ └── sabl_retinanet_r50_fpn_gn_1x_coco.py ├── scnet │ ├── README.md │ ├── metafile.yml │ ├── scnet_r101_fpn_20e_coco.py │ ├── scnet_r50_fpn_1x_coco.py │ ├── scnet_r50_fpn_20e_coco.py │ ├── scnet_x101_64x4d_fpn_20e_coco.py │ └── scnet_x101_64x4d_fpn_8x1_20e_coco.py ├── scratch │ ├── README.md │ ├── faster_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ └── metafile.yml ├── seesaw_loss │ ├── README.md │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ └── metafile.yml ├── selfsup_pretrain │ ├── README.md │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_1x_coco.py │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_ms-2x_coco.py │ ├── mask_rcnn_r50_fpn_swav-pretrain_1x_coco.py │ └── mask_rcnn_r50_fpn_swav-pretrain_ms-2x_coco.py ├── solo │ ├── README.md │ ├── decoupled_solo_light_r50_fpn_3x_coco.py │ ├── decoupled_solo_r50_fpn_1x_coco.py │ ├── decoupled_solo_r50_fpn_3x_coco.py │ ├── metafile.yml │ ├── solo_r50_fpn_1x_coco.py │ └── solo_r50_fpn_3x_coco.py ├── sparse_rcnn │ ├── README.md │ ├── metafile.yml │ ├── sparse_rcnn_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ ├── sparse_rcnn_r101_fpn_mstrain_480-800_3x_coco.py │ ├── sparse_rcnn_r50_fpn_1x_coco.py │ ├── sparse_rcnn_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ └── sparse_rcnn_r50_fpn_mstrain_480-800_3x_coco.py ├── ssd │ ├── README.md │ ├── metafile.yml │ ├── ssd300_coco.py │ ├── ssd512_coco.py │ └── ssdlite_mobilenetv2_scratch_600e_coco.py ├── strong_baselines │ ├── README.md │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.py │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.py │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_400e_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.py │ └── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_50e_coco.py ├── swin │ ├── README.md │ ├── mask_rcnn_swin-s-p4-w7_fpn_fp16_ms-crop-3x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_1x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_fp16_ms-crop-3x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_ms-crop-3x_coco.py │ ├── metafile.yml │ └── retinanet_swin-t-p4-w7_fpn_1x_coco.py ├── tood │ ├── README.md │ ├── metafile.yml │ ├── tood_r101_fpn_dconv_c3-c5_mstrain_2x_coco.py │ ├── tood_r101_fpn_mstrain_2x_coco.py │ ├── tood_r50_fpn_1x_coco.py │ ├── tood_r50_fpn_anchor_based_1x_coco.py │ ├── tood_r50_fpn_mstrain_2x_coco.py │ ├── tood_x101_64x4d_fpn_dconv_c4-c5_mstrain_2x_coco.py │ └── tood_x101_64x4d_fpn_mstrain_2x_coco.py ├── tridentnet │ ├── README.md │ ├── metafile.yml │ ├── tridentnet_r50_caffe_1x_coco.py │ ├── tridentnet_r50_caffe_mstrain_1x_coco.py │ └── tridentnet_r50_caffe_mstrain_3x_coco.py ├── vfnet │ ├── README.md │ ├── metafile.yml │ ├── vfnet_r101_fpn_1x_coco.py │ ├── vfnet_r101_fpn_2x_coco.py │ ├── vfnet_r101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r101_fpn_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_1x_coco.py │ ├── vfnet_r50_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_64x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ └── vfnet_x101_64x4d_fpn_mstrain_2x_coco.py ├── wider_face │ ├── README.md │ └── ssd300_wider_face.py ├── yolact │ ├── README.md │ ├── metafile.yml │ ├── yolact_r101_1x8_coco.py │ ├── yolact_r50_1x8_coco.py │ └── yolact_r50_8x8_coco.py ├── yolo │ ├── README.md │ ├── metafile.yml │ ├── yolov3_d53_320_273e_coco.py │ ├── yolov3_d53_fp16_mstrain-608_273e_coco.py │ ├── yolov3_d53_mstrain-416_273e_coco.py │ ├── yolov3_d53_mstrain-608_273e_coco.py │ ├── yolov3_mobilenetv2_320_300e_coco.py │ └── yolov3_mobilenetv2_mstrain-416_300e_coco.py ├── yolof │ ├── README.md │ ├── metafile.yml │ ├── yolof_r50_c5_8x8_1x_coco.py │ └── yolof_r50_c5_8x8_iter-1x_coco.py └── yolox │ ├── README.md │ ├── metafile.yml │ ├── yolox_l_8x8_300e_coco.py │ ├── yolox_m_8x8_300e_coco.py │ ├── yolox_nano_8x8_300e_coco.py │ ├── yolox_s_8x8_300e_coco.py │ ├── yolox_tiny_8x8_300e_coco.py │ └── yolox_x_8x8_300e_coco.py ├── demo ├── MMDet_Tutorial.ipynb ├── create_result_gif.py ├── demo.jpg ├── demo.mp4 ├── image_demo.py ├── inference_demo.ipynb ├── video_demo.py └── webcam_demo.py ├── docker ├── Dockerfile └── serve │ ├── Dockerfile │ ├── config.properties │ └── entrypoint.sh ├── docs ├── en │ ├── 1_exist_data_model.md │ ├── 2_new_data_model.md │ ├── 3_exist_data_new_model.md │ ├── Makefile │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ └── mmdet-logo.png │ ├── api.rst │ ├── changelog.md │ ├── compatibility.md │ ├── conf.py │ ├── conventions.md │ ├── faq.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── model_zoo.md │ ├── projects.md │ ├── robustness_benchmarking.md │ ├── stat.py │ ├── switch_language.md │ ├── tutorials │ │ ├── config.md │ │ ├── customize_dataset.md │ │ ├── customize_losses.md │ │ ├── customize_models.md │ │ ├── customize_runtime.md │ │ ├── data_pipeline.md │ │ ├── finetune.md │ │ ├── index.rst │ │ ├── init_cfg.md │ │ ├── onnx2tensorrt.md │ │ └── pytorch2onnx.md │ └── useful_tools.md └── zh_cn │ ├── 1_exist_data_model.md │ ├── 2_new_data_model.md │ ├── 3_exist_data_new_model.md │ ├── Makefile │ ├── _static │ ├── css │ │ └── readthedocs.css │ └── image │ │ └── mmdet-logo.png │ ├── api.rst │ ├── compatibility.md │ ├── conf.py │ ├── conventions.md │ ├── faq.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── model_zoo.md │ ├── projects.md │ ├── robustness_benchmarking.md │ ├── stat.py │ ├── switch_language.md │ ├── tutorials │ ├── config.md │ ├── customize_dataset.md │ ├── customize_losses.md │ ├── customize_models.md │ ├── customize_runtime.md │ ├── data_pipeline.md │ ├── finetune.md │ ├── index.rst │ ├── onnx2tensorrt.md │ └── pytorch2onnx.md │ └── useful_tools.md ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── anchor │ │ ├── __init__.py │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── hungarian_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ ├── point_assigner.py │ │ │ ├── region_assigner.py │ │ │ ├── sim_ota_assigner.py │ │ │ ├── task_aligned_assigner.py │ │ │ └── uniform_assigner.py │ │ ├── builder.py │ │ ├── coder │ │ │ ├── __init__.py │ │ │ ├── base_bbox_coder.py │ │ │ ├── bucketing_bbox_coder.py │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ ├── distance_point_bbox_coder.py │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ ├── pseudo_bbox_coder.py │ │ │ ├── tblr_bbox_coder.py │ │ │ └── yolo_bbox_coder.py │ │ ├── demodata.py │ │ ├── iou_calculators │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── iou2d_calculator.py │ │ ├── match_costs │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── match_cost.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 │ │ │ └── score_hlr_sampler.py │ │ └── transforms.py │ ├── data_structures │ │ ├── __init__.py │ │ ├── general_data.py │ │ └── instance_data.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ └── recall.py │ ├── export │ │ ├── __init__.py │ │ ├── model_wrappers.py │ │ ├── onnx_helper.py │ │ └── pytorch2onnx.py │ ├── hook │ │ ├── __init__.py │ │ ├── checkloss_hook.py │ │ ├── ema.py │ │ ├── set_epoch_info_hook.py │ │ ├── sync_norm_hook.py │ │ ├── sync_random_size_hook.py │ │ ├── yolox_lrupdater_hook.py │ │ └── yolox_mode_switch_hook.py │ ├── mask │ │ ├── __init__.py │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── bbox_nms.py │ │ ├── matrix_nms.py │ │ └── merge_augs.py │ ├── utils │ │ ├── __init__.py │ │ ├── dist_utils.py │ │ └── misc.py │ └── visualization │ │ ├── __init__.py │ │ └── image.py ├── datasets │ ├── __init__.py │ ├── api_wrappers │ │ ├── __init__.py │ │ ├── coco_api.py │ │ └── panoptic_evaluation.py │ ├── builder.py │ ├── cityscapes.py │ ├── coco.py │ ├── coco_panoptic.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── deepfashion.py │ ├── lvis.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── auto_augment.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── samplers │ │ ├── __init__.py │ │ ├── distributed_sampler.py │ │ ├── group_sampler.py │ │ └── infinite_sampler.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── csp_darknet.py │ │ ├── darknet.py │ │ ├── detectors_resnet.py │ │ ├── detectors_resnext.py │ │ ├── hourglass.py │ │ ├── hrnet.py │ │ ├── mobilenet_v2.py │ │ ├── pvt.py │ │ ├── regnet.py │ │ ├── res2net.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── ssd_vgg.py │ │ ├── swin.py │ │ └── trident_resnet.py │ ├── builder.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── anchor_free_head.py │ │ ├── anchor_head.py │ │ ├── atss_head.py │ │ ├── autoassign_head.py │ │ ├── base_dense_head.py │ │ ├── base_mask_head.py │ │ ├── cascade_rpn_head.py │ │ ├── centernet_head.py │ │ ├── centripetal_head.py │ │ ├── corner_head.py │ │ ├── deformable_detr_head.py │ │ ├── dense_test_mixins.py │ │ ├── detr_head.py │ │ ├── embedding_rpn_head.py │ │ ├── fcos_head.py │ │ ├── fovea_head.py │ │ ├── free_anchor_retina_head.py │ │ ├── fsaf_head.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── gfl_head.py │ │ ├── guided_anchor_head.py │ │ ├── lad_head.py │ │ ├── ld_head.py │ │ ├── nasfcos_head.py │ │ ├── paa_head.py │ │ ├── pisa_retinanet_head.py │ │ ├── pisa_ssd_head.py │ │ ├── reppoints_head.py │ │ ├── retina_head.py │ │ ├── retina_sepbn_head.py │ │ ├── rpn_head.py │ │ ├── sabl_retina_head.py │ │ ├── solo_head.py │ │ ├── ssd_head.py │ │ ├── tood_head.py │ │ ├── vfnet_head.py │ │ ├── yolact_head.py │ │ ├── yolo_head.py │ │ ├── yolof_head.py │ │ └── yolox_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── atss.py │ │ ├── autoassign.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── centernet.py │ │ ├── cornernet.py │ │ ├── deformable_detr.py │ │ ├── detr.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── fsaf.py │ │ ├── gfl.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── kd_one_stage.py │ │ ├── lad.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── nasfcos.py │ │ ├── paa.py │ │ ├── panoptic_fpn.py │ │ ├── panoptic_two_stage_segmentor.py │ │ ├── point_rend.py │ │ ├── queryinst.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── scnet.py │ │ ├── single_stage.py │ │ ├── single_stage_instance_seg.py │ │ ├── solo.py │ │ ├── sparse_rcnn.py │ │ ├── tood.py │ │ ├── trident_faster_rcnn.py │ │ ├── two_stage.py │ │ ├── vfnet.py │ │ ├── yolact.py │ │ ├── yolo.py │ │ ├── yolof.py │ │ └── yolox.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── ae_loss.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ ├── focal_loss.py │ │ ├── gaussian_focal_loss.py │ │ ├── gfocal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── kd_loss.py │ │ ├── mse_loss.py │ │ ├── pisa_loss.py │ │ ├── seesaw_loss.py │ │ ├── smooth_l1_loss.py │ │ ├── utils.py │ │ └── varifocal_loss.py │ ├── necks │ │ ├── __init__.py │ │ ├── bfp.py │ │ ├── channel_mapper.py │ │ ├── ct_resnet_neck.py │ │ ├── dilated_encoder.py │ │ ├── fpg.py │ │ ├── fpn.py │ │ ├── fpn_carafe.py │ │ ├── hrfpn.py │ │ ├── nas_fpn.py │ │ ├── nasfcos_fpn.py │ │ ├── pafpn.py │ │ ├── rfp.py │ │ ├── ssd_neck.py │ │ ├── yolo_neck.py │ │ └── yolox_pafpn.py │ ├── plugins │ │ ├── __init__.py │ │ └── dropblock.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── base_roi_head.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── bbox_head.py │ │ │ ├── convfc_bbox_head.py │ │ │ ├── dii_head.py │ │ │ ├── double_bbox_head.py │ │ │ ├── sabl_head.py │ │ │ └── scnet_bbox_head.py │ │ ├── cascade_roi_head.py │ │ ├── double_roi_head.py │ │ ├── dynamic_roi_head.py │ │ ├── grid_roi_head.py │ │ ├── htc_roi_head.py │ │ ├── mask_heads │ │ │ ├── __init__.py │ │ │ ├── coarse_mask_head.py │ │ │ ├── dynamic_mask_head.py │ │ │ ├── fcn_mask_head.py │ │ │ ├── feature_relay_head.py │ │ │ ├── fused_semantic_head.py │ │ │ ├── global_context_head.py │ │ │ ├── grid_head.py │ │ │ ├── htc_mask_head.py │ │ │ ├── mask_point_head.py │ │ │ ├── maskiou_head.py │ │ │ ├── scnet_mask_head.py │ │ │ └── scnet_semantic_head.py │ │ ├── mask_scoring_roi_head.py │ │ ├── pisa_roi_head.py │ │ ├── point_rend_roi_head.py │ │ ├── roi_extractors │ │ │ ├── __init__.py │ │ │ ├── base_roi_extractor.py │ │ │ ├── generic_roi_extractor.py │ │ │ └── single_level_roi_extractor.py │ │ ├── scnet_roi_head.py │ │ ├── shared_heads │ │ │ ├── __init__.py │ │ │ └── res_layer.py │ │ ├── sparse_roi_head.py │ │ ├── standard_roi_head.py │ │ ├── test_mixins.py │ │ └── trident_roi_head.py │ ├── seg_heads │ │ ├── __init__.py │ │ ├── base_semantic_head.py │ │ ├── panoptic_fpn_head.py │ │ └── panoptic_fusion_heads │ │ │ ├── __init__.py │ │ │ ├── base_panoptic_fusion_head.py │ │ │ └── heuristic_fusion_head.py │ └── utils │ │ ├── __init__.py │ │ ├── brick_wrappers.py │ │ ├── builder.py │ │ ├── ckpt_convert.py │ │ ├── conv_upsample.py │ │ ├── csp_layer.py │ │ ├── gaussian_target.py │ │ ├── inverted_residual.py │ │ ├── make_divisible.py │ │ ├── misc.py │ │ ├── normed_predictor.py │ │ ├── positional_encoding.py │ │ ├── res_layer.py │ │ ├── se_layer.py │ │ └── transformer.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ ├── contextmanagers.py │ ├── logger.py │ ├── misc.py │ ├── profiling.py │ ├── util_mixins.py │ └── util_random.py └── version.py ├── model-index.yml ├── pytest.ini ├── requirements.txt ├── requirements ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── coco_test_12510.jpg ├── corruptions_sev_3.png ├── data_pipeline.png ├── loss_curve.png ├── mmdet-logo.png ├── qq_group_qrcode.jpg └── zhihu_qrcode.jpg ├── setup.cfg ├── setup.py ├── tests ├── data │ ├── VOCdevkit │ │ ├── VOC2007 │ │ │ ├── Annotations │ │ │ │ └── 000001.xml │ │ │ ├── ImageSets │ │ │ │ └── Main │ │ │ │ │ ├── test.txt │ │ │ │ │ └── trainval.txt │ │ │ └── JPEGImages │ │ │ │ └── 000001.jpg │ │ └── VOC2012 │ │ │ ├── Annotations │ │ │ └── 000001.xml │ │ │ ├── ImageSets │ │ │ └── Main │ │ │ │ ├── test.txt │ │ │ │ └── trainval.txt │ │ │ └── JPEGImages │ │ │ └── 000001.jpg │ ├── coco_sample.json │ ├── color.jpg │ ├── configs_mmtrack │ │ ├── faster_rcnn_r50_dc5.py │ │ ├── faster_rcnn_r50_fpn.py │ │ ├── mot_challenge.py │ │ ├── selsa_faster_rcnn_r101_dc5_1x.py │ │ └── tracktor_faster-rcnn_r50_fpn_4e.py │ ├── custom_dataset │ │ ├── images │ │ │ ├── 000001.jpg │ │ │ └── 000001.xml │ │ ├── test.txt │ │ └── trainval.txt │ └── gray.jpg ├── test_data │ ├── test_datasets │ │ ├── test_coco_dataset.py │ │ ├── test_common.py │ │ ├── test_custom_dataset.py │ │ ├── test_dataset_wrapper.py │ │ ├── test_panoptic_dataset.py │ │ └── test_xml_dataset.py │ ├── test_pipelines │ │ ├── test_formatting.py │ │ ├── test_loading.py │ │ ├── test_sampler.py │ │ └── test_transform │ │ │ ├── __init__.py │ │ │ ├── test_img_augment.py │ │ │ ├── test_models_aug_test.py │ │ │ ├── test_rotate.py │ │ │ ├── test_shear.py │ │ │ ├── test_transform.py │ │ │ ├── test_translate.py │ │ │ └── utils.py │ └── test_utils.py ├── test_downstream │ └── test_mmtrack.py ├── test_metrics │ ├── test_box_overlap.py │ ├── test_losses.py │ ├── test_mean_ap.py │ └── test_recall.py ├── test_models │ ├── test_backbones │ │ ├── __init__.py │ │ ├── test_csp_darknet.py │ │ ├── test_detectors_resnet.py │ │ ├── test_hourglass.py │ │ ├── test_hrnet.py │ │ ├── test_mobilenet_v2.py │ │ ├── test_pvt.py │ │ ├── test_regnet.py │ │ ├── test_renext.py │ │ ├── test_res2net.py │ │ ├── test_resnest.py │ │ ├── test_resnet.py │ │ ├── test_swin.py │ │ ├── test_trident_resnet.py │ │ └── utils.py │ ├── test_dense_heads │ │ ├── test_anchor_head.py │ │ ├── test_atss_head.py │ │ ├── test_autoassign_head.py │ │ ├── test_centernet_head.py │ │ ├── test_corner_head.py │ │ ├── test_dense_heads_attr.py │ │ ├── test_detr_head.py │ │ ├── test_fcos_head.py │ │ ├── test_fsaf_head.py │ │ ├── test_ga_anchor_head.py │ │ ├── test_gfl_head.py │ │ ├── test_lad_head.py │ │ ├── test_ld_head.py │ │ ├── test_paa_head.py │ │ ├── test_pisa_head.py │ │ ├── test_sabl_retina_head.py │ │ ├── test_solo_head.py │ │ ├── test_tood_head.py │ │ ├── test_vfnet_head.py │ │ ├── test_yolact_head.py │ │ ├── test_yolof_head.py │ │ └── test_yolox_head.py │ ├── test_forward.py │ ├── test_loss.py │ ├── test_loss_compatibility.py │ ├── test_necks.py │ ├── test_plugins.py │ ├── test_roi_heads │ │ ├── __init__.py │ │ ├── test_bbox_head.py │ │ ├── test_mask_head.py │ │ ├── test_roi_extractor.py │ │ ├── test_sabl_bbox_head.py │ │ └── utils.py │ └── test_utils │ │ ├── test_brick_wrappers.py │ │ ├── test_conv_upsample.py │ │ ├── test_inverted_residual.py │ │ ├── test_model_misc.py │ │ ├── test_position_encoding.py │ │ ├── test_se_layer.py │ │ └── test_transformer.py ├── test_onnx │ ├── __init__.py │ ├── data │ │ ├── fsaf_head_get_bboxes.pkl │ │ ├── retina_head_get_bboxes.pkl │ │ ├── ssd_head_get_bboxes.pkl │ │ ├── yolov3_head_get_bboxes.pkl │ │ └── yolov3_neck.pkl │ ├── test_head.py │ ├── test_neck.py │ └── utils.py ├── test_runtime │ ├── async_benchmark.py │ ├── test_async.py │ ├── test_config.py │ ├── test_eval_hook.py │ └── test_fp16.py └── test_utils │ ├── test_anchor.py │ ├── test_assigner.py │ ├── test_coder.py │ ├── test_general_data.py │ ├── test_hook.py │ ├── test_masks.py │ ├── test_misc.py │ ├── test_nms.py │ ├── test_version.py │ └── test_visualization.py └── tools ├── analysis_tools ├── analyze_logs.py ├── analyze_results.py ├── benchmark.py ├── coco_error_analysis.py ├── confusion_matrix.py ├── eval_metric.py ├── get_flops.py ├── optimize_anchors.py ├── robustness_eval.py └── test_robustness.py ├── dataset_converters ├── cityscapes.py ├── images2coco.py └── pascal_voc.py ├── deployment ├── mmdet2torchserve.py ├── mmdet_handler.py ├── onnx2tensorrt.py ├── pytorch2onnx.py ├── test.py └── test_torchserver.py ├── dist_test.sh ├── dist_train.sh ├── misc ├── browse_dataset.py └── print_config.py ├── model_converters ├── detectron2pytorch.py ├── publish_model.py ├── regnet2mmdet.py ├── selfsup2mmdet.py ├── upgrade_model_version.py └── upgrade_ssd_version.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /C3-Framework/C3-Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/README.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/config.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/GCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/GCC/GCC.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/GCC/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/prepare_GCC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/GCC/prepare_GCC.m -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/GCC/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/GCC/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/GCC/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/Mall/Mall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/Mall/Mall.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/Mall/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/Mall/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/Mall/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/Mall/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/Mall/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/QNRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/QNRF/QNRF.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/QNRF/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/preapre_QNRF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/QNRF/preapre_QNRF.m -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/QNRF/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/QNRF/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/QNRF/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHA/SHHA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHA/SHHA.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHA/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHA/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHA/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHA/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHA/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/SHHB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHB/SHHB.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHB/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/preapre_SHHB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHB/preapre_SHHB.m -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHB/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/SHHB/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/SHHB/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCF50/UCF50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCF50/UCF50.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCF50/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCF50/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCF50/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCF50/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCF50/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCSD/UCSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCSD/UCSD.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCSD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCSD/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCSD/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/UCSD/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/UCSD/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/WE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/WE/WE.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/WE/loading_data.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/preapre_WE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/WE/preapre_WE.m -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/WE/readme.md -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/WE/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/datasets/WE/setting.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/cal_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/cal_mean.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/layer.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/ssim_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/ssim_loss.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/transforms.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/misc/utils.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/CC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/CC.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2T2OCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/M2T2OCC.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2T2OCC_Model/CMTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/M2T2OCC_Model/CMTL.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2T2OCC_Model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2TCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/M2TCC.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2TCC_Model/SANet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/M2TCC_Model/SANet.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/M2TCC_Model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/AlexNet.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/CSRNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/CSRNet.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/MCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/MCNN.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/Res101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/Res101.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/Res50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/Res50.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/models/SCC_Model/VGG.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/SCC_Model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/requirements.txt -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/test.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/train.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/trainer.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/trainer_for_CMTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/trainer_for_CMTL.py -------------------------------------------------------------------------------- /C3-Framework/C3-Framework/trainer_for_M2TCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/C3-Framework/trainer_for_M2TCC.py -------------------------------------------------------------------------------- /C3-Framework/SR/4xUpSamplingDemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/4xUpSamplingDemo.sh -------------------------------------------------------------------------------- /C3-Framework/SR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/README.md -------------------------------------------------------------------------------- /C3-Framework/SR/checkpoints/discriminator_final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/checkpoints/discriminator_final.pth -------------------------------------------------------------------------------- /C3-Framework/SR/checkpoints/generator_final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/checkpoints/generator_final.pth -------------------------------------------------------------------------------- /C3-Framework/SR/checkpoints/generator_pretrain.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/checkpoints/generator_pretrain.pth -------------------------------------------------------------------------------- /C3-Framework/SR/data/A/people183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/data/A/people183.jpg -------------------------------------------------------------------------------- /C3-Framework/SR/data/A/people202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/data/A/people202.jpg -------------------------------------------------------------------------------- /C3-Framework/SR/data/A/people211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/data/A/people211.jpg -------------------------------------------------------------------------------- /C3-Framework/SR/data/README.txt: -------------------------------------------------------------------------------- 1 | Place your data in here. -------------------------------------------------------------------------------- /C3-Framework/SR/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/models.py -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_fake/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_fake/0.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_fake/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_fake/1.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_fake/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_fake/2.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_real/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_real/0.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_real/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_real/1.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/high_res_real/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/high_res_real/2.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/low_res/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/low_res/0.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/low_res/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/low_res/1.png -------------------------------------------------------------------------------- /C3-Framework/SR/output/low_res/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/output/low_res/2.png -------------------------------------------------------------------------------- /C3-Framework/SR/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/test.py -------------------------------------------------------------------------------- /C3-Framework/SR/test_fall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/test_fall.py -------------------------------------------------------------------------------- /C3-Framework/SR/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/train.py -------------------------------------------------------------------------------- /C3-Framework/SR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/utils.py -------------------------------------------------------------------------------- /C3-Framework/SR/代码说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/C3-Framework/SR/代码说明.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/README.md -------------------------------------------------------------------------------- /fall_down/A_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/A_3.csv -------------------------------------------------------------------------------- /fall_down/SR/4xUpSamplingDemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/4xUpSamplingDemo.sh -------------------------------------------------------------------------------- /fall_down/SR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/README.md -------------------------------------------------------------------------------- /fall_down/SR/checkpoints/discriminator_final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/checkpoints/discriminator_final.pth -------------------------------------------------------------------------------- /fall_down/SR/checkpoints/generator_final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/checkpoints/generator_final.pth -------------------------------------------------------------------------------- /fall_down/SR/checkpoints/generator_pretrain.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/checkpoints/generator_pretrain.pth -------------------------------------------------------------------------------- /fall_down/SR/data/A/people183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/data/A/people183.jpg -------------------------------------------------------------------------------- /fall_down/SR/data/A/people202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/data/A/people202.jpg -------------------------------------------------------------------------------- /fall_down/SR/data/A/people211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/data/A/people211.jpg -------------------------------------------------------------------------------- /fall_down/SR/data/README.txt: -------------------------------------------------------------------------------- 1 | Place your data in here. -------------------------------------------------------------------------------- /fall_down/SR/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/models.py -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_fake/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_fake/0.png -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_fake/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_fake/1.png -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_fake/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_fake/2.png -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_real/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_real/0.png -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_real/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_real/1.png -------------------------------------------------------------------------------- /fall_down/SR/output/high_res_real/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/high_res_real/2.png -------------------------------------------------------------------------------- /fall_down/SR/output/low_res/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/low_res/0.png -------------------------------------------------------------------------------- /fall_down/SR/output/low_res/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/low_res/1.png -------------------------------------------------------------------------------- /fall_down/SR/output/low_res/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/output/low_res/2.png -------------------------------------------------------------------------------- /fall_down/SR/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/test.py -------------------------------------------------------------------------------- /fall_down/SR/test_fall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/test_fall.py -------------------------------------------------------------------------------- /fall_down/SR/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/train.py -------------------------------------------------------------------------------- /fall_down/SR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/utils.py -------------------------------------------------------------------------------- /fall_down/SR/代码说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/SR/代码说明.txt -------------------------------------------------------------------------------- /fall_down/coco_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/coco_names.py -------------------------------------------------------------------------------- /fall_down/data/DataPS.txt: -------------------------------------------------------------------------------- 1 | the data of bisai move to dir "/data/reid/ChronousZ/DALC/fall_down/" -------------------------------------------------------------------------------- /fall_down/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/detect.py -------------------------------------------------------------------------------- /fall_down/fall_down_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/fall_down_detection.py -------------------------------------------------------------------------------- /fall_down/mean_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/mean_std.py -------------------------------------------------------------------------------- /fall_down/rescale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/rescale.py -------------------------------------------------------------------------------- /fall_down/代码说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/fall_down/代码说明.txt -------------------------------------------------------------------------------- /mmdetection/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.circleci/config.yml -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/batch_train_list.txt -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_inference_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/benchmark_inference_fps.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/benchmark_test_image.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_init_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/test_init_backbone.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmdetection/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/general_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/ISSUE_TEMPLATE/general_questions.md -------------------------------------------------------------------------------- /mmdetection/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/pull_request_template.md -------------------------------------------------------------------------------- /mmdetection/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/workflows/build.yml -------------------------------------------------------------------------------- /mmdetection/.github/workflows/build_pat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/workflows/build_pat.yml -------------------------------------------------------------------------------- /mmdetection/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /mmdetection/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.github/workflows/lint.yml -------------------------------------------------------------------------------- /mmdetection/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/.readthedocs.yml -------------------------------------------------------------------------------- /mmdetection/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/CITATION.cff -------------------------------------------------------------------------------- /mmdetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/LICENSE -------------------------------------------------------------------------------- /mmdetection/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/MANIFEST.in -------------------------------------------------------------------------------- /mmdetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/README.md -------------------------------------------------------------------------------- /mmdetection/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/README_zh-CN.md -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/albu_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/albu_example/README.md -------------------------------------------------------------------------------- /mmdetection/configs/atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/atss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/atss/atss_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/atss/atss_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/atss/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/autoassign/README.md -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/autoassign/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/carafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/carafe/README.md -------------------------------------------------------------------------------- /mmdetection/configs/carafe/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/carafe/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cascade_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cascade_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cascade_rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/centernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/centernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/centripetalnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/centripetalnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cityscapes/README.md -------------------------------------------------------------------------------- /mmdetection/configs/common/lsj_100e_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/common/lsj_100e_coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/common/mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/common/mstrain_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/common/mstrain_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/common/mstrain_3x_coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cornernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/cornernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/dcn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/deepfashion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/deepfashion/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/deformable_detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/deformable_detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detectors/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detectors/htc_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detectors/htc_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/htc_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detectors/htc_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detectors/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detr/detr_r50_8x2_150e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detr/detr_r50_8x2_150e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/double_heads/README.md -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/double_heads/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/dynamic_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/dynamic_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/empirical_attention/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fast_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/faster_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/foveabox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/foveabox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fpg/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/free_anchor/README.md -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/free_anchor/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fsaf/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gcnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gfl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ghm/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gn+ws/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/gn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/grid_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/groie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/groie/README.md -------------------------------------------------------------------------------- /mmdetection/configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/groie/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/guided_anchoring/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/htc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/htc/htc_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/htc/htc_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/htc/htc_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/htc/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/instaboost/README.md -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/instaboost/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/lad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/lad/README.md -------------------------------------------------------------------------------- /mmdetection/configs/lad/lad_r101_paa_r50_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/lad/lad_r101_paa_r50_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/lad/lad_r50_paa_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/lad/lad_r50_paa_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ld/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ld/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/legacy_1.x/README.md -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/ssd300_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/legacy_1.x/ssd300_coco_v1.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/libra_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/lvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/lvis/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/mask_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/nas_fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/nas_fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/nas_fpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r101_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_1.5x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r50_fpn_1.5x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pafpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/panoptic_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/panoptic_fpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/panoptic_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/panoptic_fpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd300_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pascal_voc/ssd300_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd512_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pascal_voc/ssd512_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pisa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pisa/pisa_ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pisa/pisa_ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/point_rend/README.md -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/point_rend/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pvt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pvt/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pvt/retinanet_pvt-l_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/retinanet_pvt-l_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pvt/retinanet_pvt-m_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/retinanet_pvt-m_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pvt/retinanet_pvt-s_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/retinanet_pvt-s_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pvt/retinanet_pvt-t_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/pvt/retinanet_pvt-t_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/queryinst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/queryinst/README.md -------------------------------------------------------------------------------- /mmdetection/configs/queryinst/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/queryinst/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/regnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/regnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/reppoints/README.md -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/reppoints/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /mmdetection/configs/res2net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/res2net/README.md -------------------------------------------------------------------------------- /mmdetection/configs/res2net/htc_r2_101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/res2net/htc_r2_101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/resnest/README.md -------------------------------------------------------------------------------- /mmdetection/configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/retinanet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/retinanet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_caffe_c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r50_caffe_c4_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/sabl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/sabl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/scnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scnet/scnet_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scratch/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scratch/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/scratch/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/seesaw_loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/seesaw_loss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/seesaw_loss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/seesaw_loss/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/selfsup_pretrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/selfsup_pretrain/README.md -------------------------------------------------------------------------------- /mmdetection/configs/solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/solo/README.md -------------------------------------------------------------------------------- /mmdetection/configs/solo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/solo/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/solo/solo_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/solo/solo_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/solo/solo_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/solo/solo_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/sparse_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/sparse_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ssd/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/strong_baselines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/strong_baselines/README.md -------------------------------------------------------------------------------- /mmdetection/configs/swin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/swin/README.md -------------------------------------------------------------------------------- /mmdetection/configs/swin/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/swin/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/tood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/tood/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tood/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/tood/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/tood/tood_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/tood/tood_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/tridentnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/tridentnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/vfnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/vfnet/vfnet_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/vfnet/vfnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/wider_face/README.md -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolact/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r101_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolact/yolact_r101_1x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r50_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolact/yolact_r50_1x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r50_8x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolact/yolact_r50_8x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolo/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolo/yolov3_d53_320_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolo/yolov3_d53_320_273e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolof/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_l_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_l_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_m_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_m_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_nano_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_nano_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_s_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_s_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_tiny_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_tiny_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/demo/MMDet_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/MMDet_Tutorial.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/create_result_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/create_result_gif.py -------------------------------------------------------------------------------- /mmdetection/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/demo.jpg -------------------------------------------------------------------------------- /mmdetection/demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/demo.mp4 -------------------------------------------------------------------------------- /mmdetection/demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/image_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/video_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/demo/webcam_demo.py -------------------------------------------------------------------------------- /mmdetection/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docker/serve/config.properties -------------------------------------------------------------------------------- /mmdetection/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmdetection/docs/en/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/1_exist_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/en/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/en/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/3_exist_data_new_model.md -------------------------------------------------------------------------------- /mmdetection/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/Makefile -------------------------------------------------------------------------------- /mmdetection/docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /mmdetection/docs/en/_static/image/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/_static/image/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/api.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/changelog.md -------------------------------------------------------------------------------- /mmdetection/docs/en/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/conf.py -------------------------------------------------------------------------------- /mmdetection/docs/en/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/conventions.md -------------------------------------------------------------------------------- /mmdetection/docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/faq.md -------------------------------------------------------------------------------- /mmdetection/docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/make.bat -------------------------------------------------------------------------------- /mmdetection/docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/model_zoo.md -------------------------------------------------------------------------------- /mmdetection/docs/en/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/projects.md -------------------------------------------------------------------------------- /mmdetection/docs/en/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/robustness_benchmarking.md -------------------------------------------------------------------------------- /mmdetection/docs/en/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/stat.py -------------------------------------------------------------------------------- /mmdetection/docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/customize_dataset.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/customize_losses.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/customize_models.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/customize_runtime.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/finetune.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/init_cfg.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/onnx2tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/onnx2tensorrt.md -------------------------------------------------------------------------------- /mmdetection/docs/en/tutorials/pytorch2onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/tutorials/pytorch2onnx.md -------------------------------------------------------------------------------- /mmdetection/docs/en/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/en/useful_tools.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/1_exist_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/3_exist_data_new_model.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/_static/css/readthedocs.css -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/_static/image/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/_static/image/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/conventions.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/faq.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/projects.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/robustness_benchmarking.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/stat.py -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/tutorials/customize_dataset.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/tutorials/customize_losses.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/customize_models.md: -------------------------------------------------------------------------------- 1 | # 教程 4: 自定义模型 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- 1 | # 教程 5: 自定义训练配置 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/finetune.md: -------------------------------------------------------------------------------- 1 | # 教程 7: 模型微调 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/docs/zh_cn/tutorials/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/onnx2tensorrt.md: -------------------------------------------------------------------------------- 1 | # 教程 9: ONNX 到 TensorRT 的模型转换(实验性支持) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/tutorials/pytorch2onnx.md: -------------------------------------------------------------------------------- 1 | # 教程 8: Pytorch 到 ONNX 的模型转换(实验性支持) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/useful_tools.md: -------------------------------------------------------------------------------- 1 | ## 日志分析 2 | -------------------------------------------------------------------------------- /mmdetection/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/apis/test.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/match_costs/match_cost.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/data_structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/data_structures/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/data_structures/general_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/data_structures/general_data.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/data_structures/instance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/data_structures/instance_data.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/model_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/export/model_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/export/onnx_helper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/checkloss_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/ema.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/set_epoch_info_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/set_epoch_info_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/sync_norm_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/sync_random_size_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/sync_random_size_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/yolox_lrupdater_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/yolox_lrupdater_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/yolox_mode_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/hook/yolox_mode_switch_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/matrix_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/post_processing/matrix_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/visualization/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/core/visualization/image.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/infinite_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/samplers/infinite_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/base_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/base_mask_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/solo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/solo_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/panoptic_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/brick_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/brick_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/conv_upsample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/csp_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/normed_predictor.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/positional_encoding.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/models/utils/transformer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdetection/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/mmdet/version.py -------------------------------------------------------------------------------- /mmdetection/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/model-index.yml -------------------------------------------------------------------------------- /mmdetection/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/pytest.ini -------------------------------------------------------------------------------- /mmdetection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements.txt -------------------------------------------------------------------------------- /mmdetection/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/build.txt -------------------------------------------------------------------------------- /mmdetection/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/docs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.17 2 | -------------------------------------------------------------------------------- /mmdetection/requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/optional.txt -------------------------------------------------------------------------------- /mmdetection/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/runtime.txt -------------------------------------------------------------------------------- /mmdetection/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/requirements/tests.txt -------------------------------------------------------------------------------- /mmdetection/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /mmdetection/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /mmdetection/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/data_pipeline.png -------------------------------------------------------------------------------- /mmdetection/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/loss_curve.png -------------------------------------------------------------------------------- /mmdetection/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/setup.cfg -------------------------------------------------------------------------------- /mmdetection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/setup.py -------------------------------------------------------------------------------- /mmdetection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/coco_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/data/coco_sample.json -------------------------------------------------------------------------------- /mmdetection/tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/data/color.jpg -------------------------------------------------------------------------------- /mmdetection/tests/data/custom_dataset/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/custom_dataset/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /mmdetection/tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/data/gray.jpg -------------------------------------------------------------------------------- /mmdetection/tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_downstream/test_mmtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_downstream/test_mmtrack.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_box_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_metrics/test_box_overlap.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_metrics/test_losses.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_metrics/test_mean_ap.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_metrics/test_recall.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_plugins.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_roi_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_models/test_roi_heads/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/data/yolov3_neck.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_onnx/data/yolov3_neck.pkl -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_runtime/async_benchmark.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_runtime/test_async.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_runtime/test_config.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_runtime/test_eval_hook.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_assigner.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_general_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_general_data.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_hook.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_nms.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_version.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tests/test_utils/test_visualization.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/optimize_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/optimize_anchors.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /mmdetection/tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/tools/dataset_converters/images2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/dataset_converters/images2coco.py -------------------------------------------------------------------------------- /mmdetection/tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/test.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /mmdetection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/dist_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/dist_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/misc/print_config.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /mmdetection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/test.py -------------------------------------------------------------------------------- /mmdetection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kronoszhang/DALC/HEAD/mmdetection/tools/train.py --------------------------------------------------------------------------------