├── .gitignore ├── Configs ├── .DS_Store ├── mask2former_r50_COCO2LIS.py ├── mask2former_r50_caffe_AWD_SCB_DSL_SynCOCO2LIS.py ├── mask_rcnn_convnext-t_p4_w7_fpn_AWD_SCB_DSL_SynCOCO2LIS.py ├── mask_rcnn_convnext-t_p4_w7_fpn_COCO2LIS.py ├── mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_COCO80.py ├── mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_LIS2LIS.py ├── mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py ├── mask_rcnn_r50_fpn_caffe_COCO2LIS.py ├── pointrend_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py └── pointrend_r50_fpn_caffe_COCO2LIS.py ├── LICENSE ├── README.md ├── mmdetection ├── .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 ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── 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 │ ├── 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 │ │ ├── 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_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_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_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 │ ├── fp16 │ │ ├── README.md │ │ ├── faster_rcnn_r50_fpn_fp16_1x_coco.py │ │ ├── mask_rcnn_r50_fpn_fp16_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 │ │ ├── metafile.yml │ │ └── retinanet_r50_fpn_fp16_1x_coco.py │ ├── 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 │ ├── 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_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 │ ├── 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 │ ├── 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_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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 1_exist_data_model.md │ ├── 2_new_data_model.md │ ├── 3_exist_data_new_model.md │ ├── Makefile │ ├── api.rst │ ├── changelog.md │ ├── compatibility.md │ ├── conf.py │ ├── conventions.md │ ├── faq.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── model_zoo.md │ ├── projects.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 │ │ └── robustness_benchmarking.md │ └── useful_tools.md ├── docs_zh-CN │ ├── 1_exist_data_model.md │ ├── 2_new_data_model.md │ ├── 3_exist_data_new_model.md │ ├── Makefile │ ├── 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 copy.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 │ │ │ │ ├── mask_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 │ │ │ │ ├── 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 │ │ │ │ ├── mask_pseudo_sampler.py │ │ │ │ ├── mask_sampling_result.py │ │ │ │ ├── ohem_sampler.py │ │ │ │ ├── pseudo_sampler.py │ │ │ │ ├── random_sampler.py │ │ │ │ ├── sampling_result.py │ │ │ │ └── score_hlr_sampler.py │ │ │ └── transforms.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 │ │ │ ├── ema.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 │ │ │ └── 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 │ │ ├── builder.py │ │ ├── cityscapes.py │ │ ├── coco.py │ │ ├── coco_panoptic.py │ │ ├── custom.py │ │ ├── dataset_wrappers.py │ │ ├── deepfashion.py │ │ ├── lod.py │ │ ├── lvis.py │ │ ├── nolabel.py │ │ ├── pipelines │ │ │ ├── __init__.py │ │ │ ├── auto_augment.py │ │ │ ├── compose.py │ │ │ ├── formating.py │ │ │ ├── instaboost.py │ │ │ ├── loading.py │ │ │ ├── noisemodel │ │ │ │ ├── ISP.py │ │ │ │ ├── __init__.py │ │ │ │ ├── camera_params │ │ │ │ │ ├── CanonEOS5D4.npy │ │ │ │ │ └── CanonEOS5D4_params.npy │ │ │ │ ├── dark_noising.py │ │ │ │ ├── hist_match.py │ │ │ │ ├── noisy_raw.py │ │ │ │ ├── process.py │ │ │ │ ├── synthesis.py │ │ │ │ └── unprocess.py │ │ │ ├── test_time_aug.py │ │ │ └── transforms.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── distributed_sampler.py │ │ │ └── group_sampler.py │ │ ├── utils.py │ │ ├── voc.py │ │ ├── voc_custom.py │ │ ├── wider_face.py │ │ └── xml_style.py │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── CustomConv.py │ │ │ ├── __init__.py │ │ │ ├── cbam.py │ │ │ ├── convnext.py │ │ │ ├── csp_darknet.py │ │ │ ├── darknet.py │ │ │ ├── detectors_resnet.py │ │ │ ├── detectors_resnext.py │ │ │ ├── hourglass.py │ │ │ ├── hrnet.py │ │ │ ├── mobilenet_v2.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 │ │ │ ├── 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 │ │ │ ├── ld_head.py │ │ │ ├── mask2former_head.py │ │ │ ├── maskformer_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 │ │ │ ├── ssd_head.py │ │ │ ├── vfnet_head.py │ │ │ ├── yolact_head.py │ │ │ ├── yolo_head.py │ │ │ ├── yolof_head.py │ │ │ └── yolox_head.py │ │ ├── detectors │ │ │ ├── __init__.py │ │ │ ├── atss.py │ │ │ ├── autoassign.py │ │ │ ├── aux_modules.py │ │ │ ├── base.py │ │ │ ├── cascade_rcnn.py │ │ │ ├── centernet.py │ │ │ ├── cornernet.py │ │ │ ├── deformable_detr.py │ │ │ ├── detr.py │ │ │ ├── fast_rcnn.py │ │ │ ├── faster_rcnn.py │ │ │ ├── faster_rcnn_noise_inv.py │ │ │ ├── fcos.py │ │ │ ├── fovea.py │ │ │ ├── fsaf.py │ │ │ ├── gfl.py │ │ │ ├── grid_rcnn.py │ │ │ ├── htc.py │ │ │ ├── kd_one_stage.py │ │ │ ├── lsid.py │ │ │ ├── mask2former.py │ │ │ ├── mask_rcnn.py │ │ │ ├── mask_scoring_rcnn.py │ │ │ ├── maskformer.py │ │ │ ├── multiscale_discriminator.py │ │ │ ├── nasfcos.py │ │ │ ├── non_local.py │ │ │ ├── paa.py │ │ │ ├── point_rend.py │ │ │ ├── pspunet.py │ │ │ ├── reppoints_detector.py │ │ │ ├── retinanet.py │ │ │ ├── rpn.py │ │ │ ├── scnet.py │ │ │ ├── single_stage.py │ │ │ ├── sparse_rcnn.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 │ │ ├── losses_ │ │ │ ├── __init__.py │ │ │ ├── accuracy.py │ │ │ ├── ae_loss.py │ │ │ ├── balanced_l1_loss.py │ │ │ ├── cross_entropy_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 │ │ │ ├── msdeformattn_pixel_decoder.py │ │ │ └── pixel_decoder.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 │ │ │ │ ├── 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 │ │ │ │ └── maskformer_fusion_head.py │ │ └── utils │ │ │ ├── __init__.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 │ │ │ ├── panoptic_gt_processing.py │ │ │ ├── point_sample.py │ │ │ ├── positional_encoding.py │ │ │ ├── res_layer.py │ │ │ ├── se_layer.py │ │ │ └── transformer.py │ ├── utils │ │ ├── __init__.py │ │ ├── collect_env.py │ │ ├── contextmanagers.py │ │ ├── logger.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 ├── temp_test.py ├── tests │ ├── 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 │ │ │ │ ├── test_img_augment.py │ │ │ │ ├── test_models_aug_test.py │ │ │ │ ├── test_rotate.py │ │ │ │ ├── test_shear.py │ │ │ │ ├── test_transform.py │ │ │ │ └── test_translate.py │ │ └── test_utils.py │ ├── test_downstream │ │ └── test_mmtrack.py │ ├── test_metrics │ │ ├── test_box_overlap.py │ │ └── test_losses.py │ ├── test_models │ │ ├── test_backbones │ │ │ ├── __init__.py │ │ │ ├── test_csp_darknet.py │ │ │ ├── test_detectors_resnet.py │ │ │ ├── test_hourglass.py │ │ │ ├── test_mobilenet_v2.py │ │ │ ├── test_regnet.py │ │ │ ├── test_renext.py │ │ │ ├── test_res2net.py │ │ │ ├── test_resnest.py │ │ │ ├── test_resnet.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_ld_head.py │ │ │ ├── test_paa_head.py │ │ │ ├── test_pisa_head.py │ │ │ ├── test_sabl_retina_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_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 │ │ ├── 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_hook.py │ │ ├── test_masks.py │ │ ├── test_misc.py │ │ ├── test_version.py │ │ └── test_visualization.py └── tools │ ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── coco_error_analysis.py │ ├── eval_metric.py │ ├── get_flops.py │ ├── robustness_eval.py │ └── test_robustness.py │ ├── dataset_converters │ ├── cityscapes.py │ └── pascal_voc.py │ ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ ├── onnx2tensorrt.py │ ├── pytorch2onnx.py │ └── test.py │ ├── dist_test.sh │ ├── dist_train.sh │ ├── misc │ ├── browse_dataset.py │ ├── model_inference.py │ ├── print_config.py │ ├── results_show.py │ └── visualize_coco.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 ├── mmdetection_custom_part ├── .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 ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml └── mmdet │ └── models │ ├── __init__.py │ ├── backbones │ ├── CustomConv.py │ ├── __init__.py │ ├── convnext.py │ ├── resnet.py │ ├── resnext.py │ └── swin.py │ ├── builder.py │ ├── dense_heads │ ├── __init__.py │ ├── mask2former_head.py │ └── maskformer_head.py │ ├── detectors │ ├── __init__.py │ ├── faster_rcnn.py │ ├── faster_rcnn_noise_inv.py │ ├── mask2former.py │ ├── mask_rcnn.py │ ├── maskformer.py │ └── two_stage.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 │ ├── plugins │ ├── __init__.py │ ├── dropblock.py │ ├── msdeformattn_pixel_decoder.py │ └── pixel_decoder.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 │ │ ├── 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 │ └── maskformer_fusion_head.py ├── static ├── .DS_Store ├── dataset.png ├── overview.png └── segindark-pic-center.gif └── utils ├── ISP.py ├── __pycache__ ├── ISP.cpython-37.pyc └── ISP.cpython-38.pyc ├── camera_params ├── CanonEOS5D4.npy └── CanonEOS5D4_params.npy ├── read_RAW.py ├── read_RAW2RGB.py └── reparameter.py /.gitignore: -------------------------------------------------------------------------------- 1 | ./.* -------------------------------------------------------------------------------- /Configs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/.DS_Store -------------------------------------------------------------------------------- /Configs/mask2former_r50_COCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask2former_r50_COCO2LIS.py -------------------------------------------------------------------------------- /Configs/mask2former_r50_caffe_AWD_SCB_DSL_SynCOCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask2former_r50_caffe_AWD_SCB_DSL_SynCOCO2LIS.py -------------------------------------------------------------------------------- /Configs/mask_rcnn_convnext-t_p4_w7_fpn_COCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask_rcnn_convnext-t_p4_w7_fpn_COCO2LIS.py -------------------------------------------------------------------------------- /Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_COCO80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_COCO80.py -------------------------------------------------------------------------------- /Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_LIS2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_LIS2LIS.py -------------------------------------------------------------------------------- /Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask_rcnn_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py -------------------------------------------------------------------------------- /Configs/mask_rcnn_r50_fpn_caffe_COCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/mask_rcnn_r50_fpn_caffe_COCO2LIS.py -------------------------------------------------------------------------------- /Configs/pointrend_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/pointrend_r50_fpn_caffe_AWD_SCB_DSL_SynCOCO2LIS.py -------------------------------------------------------------------------------- /Configs/pointrend_r50_fpn_caffe_COCO2LIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/Configs/pointrend_r50_fpn_caffe_COCO2LIS.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/README.md -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/batch_train_list.txt -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_inference_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/benchmark_inference_fps.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/benchmark_test_image.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/convert_test_benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/convert_test_benchmark_script.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/convert_train_benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/convert_train_benchmark_script.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/gather_test_benchmark_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/gather_test_benchmark_metric.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/gather_train_benchmark_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/gather_train_benchmark_metric.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_init_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/test_init_backbone.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.gitignore -------------------------------------------------------------------------------- /mmdetection/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/.readthedocs.yml -------------------------------------------------------------------------------- /mmdetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/LICENSE -------------------------------------------------------------------------------- /mmdetection/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/MANIFEST.in -------------------------------------------------------------------------------- /mmdetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/README.md -------------------------------------------------------------------------------- /mmdetection/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/README_zh-CN.md -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/cityscapes_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/cityscapes_detection.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_instance_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/coco_instance_semantic.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/cascade_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/cascade_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/faster_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/faster_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/mask_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/mask_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/albu_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/albu_example/README.md -------------------------------------------------------------------------------- /mmdetection/configs/atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/atss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/atss/atss_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/atss/atss_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/atss/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/autoassign/README.md -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/autoassign/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/carafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/carafe/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cascade_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cascade_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cascade_rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rpn/crpn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cascade_rpn/crpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/centernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/centernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centernet/centernet_resnet18_140e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/centernet/centernet_resnet18_140e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/centernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/centernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/centripetalnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/centripetalnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cityscapes/README.md -------------------------------------------------------------------------------- /mmdetection/configs/common/mstrain-poly_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/common/mstrain-poly_3x_coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/common/mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/common/mstrain_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/common/mstrain_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/common/mstrain_3x_coco_instance.py -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cornernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/cornernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dcn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_r50_fpn_dpool_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dcn/faster_rcnn_r50_fpn_dpool_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/faster_rcnn_r50_fpn_mdpool_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dcn/faster_rcnn_r50_fpn_mdpool_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/deepfashion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/deepfashion/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/deformable_detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/deformable_detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detectors/cascade_rcnn_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/cascade_rcnn_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/cascade_rcnn_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/cascade_rcnn_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/detectors_htc_r50_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/detectors_htc_r50_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/htc_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/htc_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/htc_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/htc_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detectors/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detectors/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detr/detr_r50_8x2_150e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detr/detr_r50_8x2_150e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/double_heads/README.md -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/double_heads/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dynamic_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/dynamic_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/empirical_attention/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fast_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/faster_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/foveabox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fp16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fp16/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fp16/mask_rcnn_r50_fpn_fp16_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fp16/mask_rcnn_r50_fpn_fp16_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fp16/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fp16/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fp16/retinanet_r50_fpn_fp16_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fp16/retinanet_r50_fpn_fp16_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fpg/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/free_anchor/README.md -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/free_anchor/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fsaf/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gcnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gfl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ghm/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn+ws/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/gn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/grid_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/groie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/groie/README.md -------------------------------------------------------------------------------- /mmdetection/configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/groie/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/guided_anchoring/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/htc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/htc/htc_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/htc/htc_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/htc/htc_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/htc/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/instaboost/README.md -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/instaboost/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ld/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/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/Linwei-Chen/LIS/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/Linwei-Chen/LIS/HEAD/mmdetection/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ld/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/legacy_1.x/README.md -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/ssd300_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/legacy_1.x/ssd300_coco_v1.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/libra_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/lvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/lvis/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/mask_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/nas_fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/nas_fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/nas_fpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/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/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r50_fpn_1.5x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pafpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd300_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pascal_voc/ssd300_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd512_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pascal_voc/ssd512_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/pisa_ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/pisa_ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/pisa/pisa_ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/point_rend/README.md -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/point_rend/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/regnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/regnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/reppoints/README.md -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/reppoints/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /mmdetection/configs/res2net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/res2net/README.md -------------------------------------------------------------------------------- /mmdetection/configs/res2net/htc_r2_101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/res2net/htc_r2_101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/resnest/README.md -------------------------------------------------------------------------------- /mmdetection/configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/retinanet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/retinanet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/retinanet/retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/retinanet_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/retinanet/retinanet_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_caffe_c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/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/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/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/Linwei-Chen/LIS/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/Linwei-Chen/LIS/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/Linwei-Chen/LIS/HEAD/mmdetection/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/sabl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/sabl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/scnet_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scratch/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scratch/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/scratch/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/seesaw_loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/seesaw_loss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/selfsup_pretrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/selfsup_pretrain/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/sparse_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/sparse_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ssd/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/tridentnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/tridentnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/vfnet_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/vfnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/wider_face/README.md -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolact/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r101_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolact/yolact_r101_1x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r50_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolact/yolact_r50_1x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolact/yolact_r50_8x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolact/yolact_r50_8x8_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolo/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolo/yolov3_d53_320_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolo/yolov3_d53_320_273e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolof/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_l_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_l_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_m_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_m_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_nano_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_nano_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_s_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_s_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_tiny_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_tiny_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py -------------------------------------------------------------------------------- /mmdetection/demo/MMDet_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/MMDet_Tutorial.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/create_result_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/create_result_gif.py -------------------------------------------------------------------------------- /mmdetection/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/demo.jpg -------------------------------------------------------------------------------- /mmdetection/demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/demo.mp4 -------------------------------------------------------------------------------- /mmdetection/demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/image_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/video_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/demo/webcam_demo.py -------------------------------------------------------------------------------- /mmdetection/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docker/serve/config.properties -------------------------------------------------------------------------------- /mmdetection/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmdetection/docs/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/1_exist_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/3_exist_data_new_model.md -------------------------------------------------------------------------------- /mmdetection/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/Makefile -------------------------------------------------------------------------------- /mmdetection/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/api.rst -------------------------------------------------------------------------------- /mmdetection/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/changelog.md -------------------------------------------------------------------------------- /mmdetection/docs/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/conf.py -------------------------------------------------------------------------------- /mmdetection/docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/conventions.md -------------------------------------------------------------------------------- /mmdetection/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/faq.md -------------------------------------------------------------------------------- /mmdetection/docs/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/make.bat -------------------------------------------------------------------------------- /mmdetection/docs/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/model_zoo.md -------------------------------------------------------------------------------- /mmdetection/docs/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/projects.md -------------------------------------------------------------------------------- /mmdetection/docs/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/stat.py -------------------------------------------------------------------------------- /mmdetection/docs/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/customize_dataset.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/customize_losses.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/customize_models.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/customize_runtime.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/finetune.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/init_cfg.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/onnx2tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/onnx2tensorrt.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/pytorch2onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/pytorch2onnx.md -------------------------------------------------------------------------------- /mmdetection/docs/tutorials/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/tutorials/robustness_benchmarking.md -------------------------------------------------------------------------------- /mmdetection/docs/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs/useful_tools.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/1_exist_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/3_exist_data_new_model.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/Makefile -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/api.rst -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/conf.py -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/conventions.md: -------------------------------------------------------------------------------- 1 | # 默认约定 2 | -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/faq.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/index.rst -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/make.bat -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/model_zoo.md: -------------------------------------------------------------------------------- 1 | # 模型库 2 | 3 | ## 镜像地址 4 | -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/projects.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/robustness_benchmarking.md: -------------------------------------------------------------------------------- 1 | # 检测器鲁棒性检查 2 | -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/stat.py -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/docs_zh-CN/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- 1 | # 教程 2: 自定义数据集 2 | -------------------------------------------------------------------------------- /mmdetection/docs_zh-CN/tutorials/customize_losses.md: -------------------------------------------------------------------------------- 1 | # 教程 6: 自定义损失函数 2 | -------------------------------------------------------------------------------- /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/Linwei-Chen/LIS/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/Linwei-Chen/LIS/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/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/apis/test.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/train copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/apis/train copy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/region_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/sim_ota_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/sim_ota_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/assigners/uniform_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/assigners/uniform_assigner.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/bucketing_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/bucketing_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/match_costs/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/match_costs/match_cost.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/samplers/score_hlr_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/samplers/score_hlr_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/model_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/export/model_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/export/onnx_helper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/ema.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/sync_norm_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/sync_random_size_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/sync_random_size_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/yolox_lrupdater_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/yolox_lrupdater_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/hook/yolox_mode_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/hook/yolox_mode_switch_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/visualization/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/core/visualization/image.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/lod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/lod.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/nolabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/nolabel.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/noisemodel/ISP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/noisemodel/ISP.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/noisemodel/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/noisemodel/process.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/voc_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/voc_custom.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/CustomConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/CustomConv.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/cbam.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/convnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/anchor_free_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/anchor_free_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/cascade_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/cascade_rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/centripetal_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/centripetal_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/dense_test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/dense_test_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/embedding_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/embedding_rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/mask2former_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/mask2former_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/maskformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/maskformer_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/retina_sepbn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/retina_sepbn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/sabl_retina_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/aux_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/aux_modules.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/lsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/lsid.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask2former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/mask2former.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/non_local.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/pspunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/pspunet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/trident_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/trident_faster_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/accuracy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/ae_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/gaussian_focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/gfocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/iou_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/kd_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/mse_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/pisa_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/seesaw_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses_/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/losses_/varifocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins/pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/plugins/pixel_decoder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/plugins_/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/plugins_/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/plugins_/dropblock.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/bbox_heads/dii_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/bbox_heads/dii_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/bbox_heads/sabl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/bbox_heads/sabl_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/point_rend_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/point_rend_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/trident_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/roi_heads/trident_roi_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/seg_heads/base_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/seg_heads/base_semantic_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/seg_heads/panoptic_fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/seg_heads/panoptic_fpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/conv_upsample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/csp_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/normed_predictor.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/panoptic_gt_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/panoptic_gt_processing.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/positional_encoding.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/models/utils/transformer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdetection/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/mmdet/version.py -------------------------------------------------------------------------------- /mmdetection/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/model-index.yml -------------------------------------------------------------------------------- /mmdetection/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/pytest.ini -------------------------------------------------------------------------------- /mmdetection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements.txt -------------------------------------------------------------------------------- /mmdetection/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/build.txt -------------------------------------------------------------------------------- /mmdetection/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/docs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.8 2 | -------------------------------------------------------------------------------- /mmdetection/requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/optional.txt -------------------------------------------------------------------------------- /mmdetection/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/runtime.txt -------------------------------------------------------------------------------- /mmdetection/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/requirements/tests.txt -------------------------------------------------------------------------------- /mmdetection/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /mmdetection/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /mmdetection/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/data_pipeline.png -------------------------------------------------------------------------------- /mmdetection/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/loss_curve.png -------------------------------------------------------------------------------- /mmdetection/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/setup.cfg -------------------------------------------------------------------------------- /mmdetection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/setup.py -------------------------------------------------------------------------------- /mmdetection/temp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/temp_test.py -------------------------------------------------------------------------------- /mmdetection/tests/test_data/test_datasets/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_data/test_datasets/test_common.py -------------------------------------------------------------------------------- /mmdetection/tests/test_data/test_pipelines/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_data/test_pipelines/test_loading.py -------------------------------------------------------------------------------- /mmdetection/tests/test_data/test_pipelines/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_data/test_pipelines/test_sampler.py -------------------------------------------------------------------------------- /mmdetection/tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_downstream/test_mmtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_downstream/test_mmtrack.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_box_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_metrics/test_box_overlap.py -------------------------------------------------------------------------------- /mmdetection/tests/test_metrics/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_metrics/test_losses.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_loss_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_loss_compatibility.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_plugins.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_roi_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_roi_heads/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_utils/test_se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_models/test_utils/test_se_layer.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /mmdetection/tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_runtime/async_benchmark.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_runtime/test_async.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_runtime/test_config.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_runtime/test_eval_hook.py -------------------------------------------------------------------------------- /mmdetection/tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_assigner.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_hook.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_version.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tests/test_utils/test_visualization.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /mmdetection/tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/deployment/test.py -------------------------------------------------------------------------------- /mmdetection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/dist_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/dist_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/model_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/misc/model_inference.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/misc/print_config.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/results_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/misc/results_show.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/visualize_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/misc/visualize_coco.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /mmdetection/tools/model_converters/upgrade_ssd_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/model_converters/upgrade_ssd_version.py -------------------------------------------------------------------------------- /mmdetection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/test.py -------------------------------------------------------------------------------- /mmdetection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection/tools/train.py -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/batch_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/batch_train_list.txt -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/test_init_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/test_init_backbone.py -------------------------------------------------------------------------------- /mmdetection_custom_part/.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /mmdetection_custom_part/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.gitignore -------------------------------------------------------------------------------- /mmdetection_custom_part/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection_custom_part/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/.readthedocs.yml -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/backbones/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/backbones/convnext.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection_custom_part/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/mmdetection_custom_part/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/static/dataset.png -------------------------------------------------------------------------------- /static/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/static/overview.png -------------------------------------------------------------------------------- /static/segindark-pic-center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/static/segindark-pic-center.gif -------------------------------------------------------------------------------- /utils/ISP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/ISP.py -------------------------------------------------------------------------------- /utils/__pycache__/ISP.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/__pycache__/ISP.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/ISP.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/__pycache__/ISP.cpython-38.pyc -------------------------------------------------------------------------------- /utils/camera_params/CanonEOS5D4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/camera_params/CanonEOS5D4.npy -------------------------------------------------------------------------------- /utils/camera_params/CanonEOS5D4_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/camera_params/CanonEOS5D4_params.npy -------------------------------------------------------------------------------- /utils/read_RAW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/read_RAW.py -------------------------------------------------------------------------------- /utils/read_RAW2RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/read_RAW2RGB.py -------------------------------------------------------------------------------- /utils/reparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/LIS/HEAD/utils/reparameter.py --------------------------------------------------------------------------------