├── .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 └── train_benchmark.sh ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.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_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r101_fpn_20e_coco.py │ ├── cascade_mask_rcnn_r50_caffe_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_20e_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 │ ├── 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_fpn_1x_coco.py │ ├── retinanet_r101_fpn_2x_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_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 ├── 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 ├── tood │ ├── tood_r101_fpn_dconv_c3-c5_mstrain_2x_coco.py │ ├── tood_r101_fpn_mstrain_2x_coco.py │ ├── tood_r50_fpn_1x_coco.py │ ├── tood_r50_fpn_anchor_based_1x_coco.py │ ├── tood_r50_fpn_mstrain_2x_coco.py │ ├── tood_x101_64x4d_fpn_dconv_c4-c5_mstrain_2x_coco.py │ └── tood_x101_64x4d_fpn_mstrain_2x_coco.py ├── tridentnet │ ├── README.md │ ├── metafile.yml │ ├── tridentnet_r50_caffe_1x_coco.py │ ├── tridentnet_r50_caffe_mstrain_1x_coco.py │ └── tridentnet_r50_caffe_mstrain_3x_coco.py ├── vfnet │ ├── README.md │ ├── metafile.yml │ ├── vfnet_r101_fpn_1x_coco.py │ ├── vfnet_r101_fpn_2x_coco.py │ ├── vfnet_r101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r101_fpn_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_1x_coco.py │ ├── vfnet_r50_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_64x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ └── vfnet_x101_64x4d_fpn_mstrain_2x_coco.py ├── wider_face │ ├── README.md │ └── ssd300_wider_face.py ├── yolact │ ├── README.md │ ├── metafile.yml │ ├── yolact_r101_1x8_coco.py │ ├── yolact_r50_1x8_coco.py │ └── yolact_r50_8x8_coco.py ├── yolo │ ├── README.md │ ├── metafile.yml │ ├── yolov3_d53_320_273e_coco.py │ ├── yolov3_d53_fp16_mstrain-608_273e_coco.py │ ├── yolov3_d53_mstrain-416_273e_coco.py │ └── yolov3_d53_mstrain-608_273e_coco.py └── yolof │ ├── README.md │ ├── metafile.yml │ ├── yolof_r50_c5_8x8_1x_coco.py │ └── yolof_r50_c5_8x8_iter-1x_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 ├── robustness_benchmarking.md ├── stat.py ├── switch_language.md ├── tutorials │ ├── config.md │ ├── customize_dataset.md │ ├── customize_losses.md │ ├── customize_models.md │ ├── customize_runtime.md │ ├── data_pipeline.md │ ├── finetune.md │ ├── index.rst │ ├── init_cfg.md │ ├── onnx2tensorrt.md │ └── pytorch2onnx.md └── useful_tools.md ├── 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.py ├── core │ ├── __init__.py │ ├── anchor │ │ ├── __init__.py │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── hungarian_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ ├── point_assigner.py │ │ │ ├── region_assigner.py │ │ │ ├── task_aligned_assign_result.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 │ │ │ ├── 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 │ ├── 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 │ │ ├── head_hook.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 │ ├── lvis.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── auto_augment.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── samplers │ │ ├── __init__.py │ │ ├── distributed_sampler.py │ │ └── group_sampler.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.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 │ │ └── 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 │ │ ├── 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 │ │ ├── tood_head.py │ │ ├── vfnet_head.py │ │ ├── yolact_head.py │ │ ├── yolo_head.py │ │ └── yolof_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── atss.py │ │ ├── autoassign.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── centernet.py │ │ ├── cornernet.py │ │ ├── deformable_detr.py │ │ ├── detr.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── fsaf.py │ │ ├── gfl.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── kd_one_stage.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── nasfcos.py │ │ ├── paa.py │ │ ├── point_rend.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── scnet.py │ │ ├── single_stage.py │ │ ├── sparse_rcnn.py │ │ ├── tood.py │ │ ├── trident_faster_rcnn.py │ │ ├── two_stage.py │ │ ├── vfnet.py │ │ ├── yolact.py │ │ ├── yolo.py │ │ └── yolof.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 │ │ ├── task_aligned_focal_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 │ ├── 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 │ └── utils │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── gaussian_target.py │ │ ├── inverted_residual.py │ │ ├── make_divisible.py │ │ ├── normed_predictor.py │ │ ├── positional_encoding.py │ │ ├── res_layer.py │ │ ├── se_layer.py │ │ └── transformer.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ ├── contextmanagers.py │ ├── logger.py │ ├── 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 ├── T-head.png ├── T-head_1.png ├── coco_test_12510.jpg ├── corruptions_sev_3.png ├── data_pipeline.png ├── loss_curve.png ├── mmdet-logo.png ├── overview.png ├── qq_group_qrcode.jpg └── zhihu_qrcode.jpg ├── setup.cfg ├── setup.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_metrics │ ├── test_box_overlap.py │ └── test_losses.py ├── test_models │ ├── test_backbones │ │ ├── __init__.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_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_inverted_residual.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_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 └── print_config.py ├── model_converters ├── detectron2pytorch.py ├── publish_model.py ├── regnet2mmdet.py ├── selfsup2mmdet.py ├── upgrade_model_version.py └── upgrade_ssd_version.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /.dev_scripts/batch_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/batch_train_list.txt -------------------------------------------------------------------------------- /.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /.dev_scripts/benchmark_inference_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/benchmark_inference_fps.py -------------------------------------------------------------------------------- /.dev_scripts/benchmark_test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/benchmark_test_image.py -------------------------------------------------------------------------------- /.dev_scripts/convert_test_benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/convert_test_benchmark_script.py -------------------------------------------------------------------------------- /.dev_scripts/convert_train_benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/convert_train_benchmark_script.py -------------------------------------------------------------------------------- /.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /.dev_scripts/gather_test_benchmark_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/gather_test_benchmark_metric.py -------------------------------------------------------------------------------- /.dev_scripts/gather_train_benchmark_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/gather_train_benchmark_metric.py -------------------------------------------------------------------------------- /.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/README.md -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/cityscapes_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/coco_instance_semantic.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade_mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/cascade_mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/cascade_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/faster_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_caffe_dc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/faster_rcnn_r50_caffe_dc5.py -------------------------------------------------------------------------------- /configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/mask_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/mask_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /configs/albu_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/albu_example/README.md -------------------------------------------------------------------------------- /configs/albu_example/mask_rcnn_r50_fpn_albu_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/albu_example/mask_rcnn_r50_fpn_albu_1x_coco.py -------------------------------------------------------------------------------- /configs/atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/atss/README.md -------------------------------------------------------------------------------- /configs/atss/atss_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/atss/atss_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/atss/atss_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/atss/atss_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/atss/metafile.yml -------------------------------------------------------------------------------- /configs/autoassign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/autoassign/README.md -------------------------------------------------------------------------------- /configs/autoassign/autoassign_r50_fpn_8x2_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/autoassign/autoassign_r50_fpn_8x2_1x_coco.py -------------------------------------------------------------------------------- /configs/autoassign/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/autoassign/metafile.yml -------------------------------------------------------------------------------- /configs/carafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/carafe/README.md -------------------------------------------------------------------------------- /configs/carafe/faster_rcnn_r50_fpn_carafe_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/carafe/faster_rcnn_r50_fpn_carafe_1x_coco.py -------------------------------------------------------------------------------- /configs/carafe/mask_rcnn_r50_fpn_carafe_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/carafe/mask_rcnn_r50_fpn_carafe_1x_coco.py -------------------------------------------------------------------------------- /configs/cascade_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/README.md -------------------------------------------------------------------------------- /configs/cascade_rcnn/cascade_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/cascade_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/cascade_rcnn/cascade_rcnn_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/cascade_rcnn_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/cascade_rcnn/cascade_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/cascade_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/cascade_rcnn/cascade_rcnn_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/cascade_rcnn_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/cascade_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/cascade_rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rpn/README.md -------------------------------------------------------------------------------- /configs/cascade_rpn/crpn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cascade_rpn/crpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/centernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centernet/README.md -------------------------------------------------------------------------------- /configs/centernet/centernet_resnet18_140e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centernet/centernet_resnet18_140e_coco.py -------------------------------------------------------------------------------- /configs/centernet/centernet_resnet18_dcnv2_140e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centernet/centernet_resnet18_dcnv2_140e_coco.py -------------------------------------------------------------------------------- /configs/centernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centernet/metafile.yml -------------------------------------------------------------------------------- /configs/centripetalnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centripetalnet/README.md -------------------------------------------------------------------------------- /configs/centripetalnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/centripetalnet/metafile.yml -------------------------------------------------------------------------------- /configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cityscapes/README.md -------------------------------------------------------------------------------- /configs/cityscapes/mask_rcnn_r50_fpn_1x_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cityscapes/mask_rcnn_r50_fpn_1x_cityscapes.py -------------------------------------------------------------------------------- /configs/common/mstrain-poly_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/common/mstrain-poly_3x_coco_instance.py -------------------------------------------------------------------------------- /configs/common/mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/common/mstrain_3x_coco.py -------------------------------------------------------------------------------- /configs/common/mstrain_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/common/mstrain_3x_coco_instance.py -------------------------------------------------------------------------------- /configs/cornernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cornernet/README.md -------------------------------------------------------------------------------- /configs/cornernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/cornernet/metafile.yml -------------------------------------------------------------------------------- /configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/README.md -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_r50_fpn_dpool_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/faster_rcnn_r50_fpn_dpool_1x_coco.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_r50_fpn_mdpool_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/faster_rcnn_r50_fpn_mdpool_1x_coco.py -------------------------------------------------------------------------------- /configs/dcn/mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py -------------------------------------------------------------------------------- /configs/dcn/mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py -------------------------------------------------------------------------------- /configs/dcn/mask_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/mask_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.py -------------------------------------------------------------------------------- /configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /configs/deepfashion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/deepfashion/README.md -------------------------------------------------------------------------------- /configs/deformable_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/deformable_detr/README.md -------------------------------------------------------------------------------- /configs/deformable_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/deformable_detr/metafile.yml -------------------------------------------------------------------------------- /configs/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/README.md -------------------------------------------------------------------------------- /configs/detectors/cascade_rcnn_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/cascade_rcnn_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /configs/detectors/cascade_rcnn_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/cascade_rcnn_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /configs/detectors/detectors_htc_r101_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/detectors_htc_r101_20e_coco.py -------------------------------------------------------------------------------- /configs/detectors/detectors_htc_r50_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/detectors_htc_r50_1x_coco.py -------------------------------------------------------------------------------- /configs/detectors/htc_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/htc_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /configs/detectors/htc_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/htc_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /configs/detectors/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detectors/metafile.yml -------------------------------------------------------------------------------- /configs/detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detr/README.md -------------------------------------------------------------------------------- /configs/detr/detr_r50_8x2_150e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detr/detr_r50_8x2_150e_coco.py -------------------------------------------------------------------------------- /configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/detr/metafile.yml -------------------------------------------------------------------------------- /configs/double_heads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/double_heads/README.md -------------------------------------------------------------------------------- /configs/double_heads/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/double_heads/metafile.yml -------------------------------------------------------------------------------- /configs/dynamic_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dynamic_rcnn/README.md -------------------------------------------------------------------------------- /configs/dynamic_rcnn/dynamic_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dynamic_rcnn/dynamic_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/dynamic_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/dynamic_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /configs/empirical_attention/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/empirical_attention/metafile.yml -------------------------------------------------------------------------------- /configs/fast_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/README.md -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/README.md -------------------------------------------------------------------------------- /configs/faster_rcnn/faster_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/faster_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/faster_rcnn/faster_rcnn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/faster_rcnn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/faster_rcnn/faster_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/faster_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fcos/README.md -------------------------------------------------------------------------------- /configs/fcos/fcos_r101_caffe_fpn_gn-head_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fcos/fcos_r101_caffe_fpn_gn-head_1x_coco.py -------------------------------------------------------------------------------- /configs/fcos/fcos_r50_caffe_fpn_gn-head_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fcos/fcos_r50_caffe_fpn_gn-head_1x_coco.py -------------------------------------------------------------------------------- /configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/README.md -------------------------------------------------------------------------------- /configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /configs/foveabox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/foveabox/metafile.yml -------------------------------------------------------------------------------- /configs/fp16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fp16/README.md -------------------------------------------------------------------------------- /configs/fp16/faster_rcnn_r50_fpn_fp16_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fp16/faster_rcnn_r50_fpn_fp16_1x_coco.py -------------------------------------------------------------------------------- /configs/fp16/mask_rcnn_r50_fpn_fp16_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fp16/mask_rcnn_r50_fpn_fp16_1x_coco.py -------------------------------------------------------------------------------- /configs/fp16/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fp16/metafile.yml -------------------------------------------------------------------------------- /configs/fp16/retinanet_r50_fpn_fp16_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fp16/retinanet_r50_fpn_fp16_1x_coco.py -------------------------------------------------------------------------------- /configs/fpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/README.md -------------------------------------------------------------------------------- /configs/fpg/faster_rcnn_r50_fpg_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/faster_rcnn_r50_fpg_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/fpg/faster_rcnn_r50_fpn_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/faster_rcnn_r50_fpn_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/fpg/mask_rcnn_r50_fpg_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/mask_rcnn_r50_fpg_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/fpg/mask_rcnn_r50_fpn_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/mask_rcnn_r50_fpn_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /configs/fpg/retinanet_r50_fpg_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fpg/retinanet_r50_fpg_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/free_anchor/README.md -------------------------------------------------------------------------------- /configs/free_anchor/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/free_anchor/metafile.yml -------------------------------------------------------------------------------- /configs/fsaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fsaf/README.md -------------------------------------------------------------------------------- /configs/fsaf/fsaf_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fsaf/fsaf_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fsaf/fsaf_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fsaf/fsaf_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gcnet/README.md -------------------------------------------------------------------------------- /configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /configs/gfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/README.md -------------------------------------------------------------------------------- /configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/gfl/gfl_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/gfl_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/gfl/gfl_x101_32x4d_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/gfl_x101_32x4d_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/README.md -------------------------------------------------------------------------------- /configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ghm/retinanet_ghm_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/retinanet_ghm_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ghm/retinanet_ghm_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ghm/retinanet_ghm_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn+ws/README.md -------------------------------------------------------------------------------- /configs/gn+ws/mask_rcnn_r101_fpn_gn_ws-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn+ws/mask_rcnn_r101_fpn_gn_ws-all_2x_coco.py -------------------------------------------------------------------------------- /configs/gn+ws/mask_rcnn_r50_fpn_gn_ws-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws-all_2x_coco.py -------------------------------------------------------------------------------- /configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/README.md -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r101_fpn_gn-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/mask_rcnn_r101_fpn_gn-all_2x_coco.py -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r101_fpn_gn-all_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/mask_rcnn_r101_fpn_gn-all_3x_coco.py -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py -------------------------------------------------------------------------------- /configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/gn/metafile.yml -------------------------------------------------------------------------------- /configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /configs/grid_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/grid_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/groie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/groie/README.md -------------------------------------------------------------------------------- /configs/groie/faster_rcnn_r50_fpn_groie_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/groie/faster_rcnn_r50_fpn_groie_1x_coco.py -------------------------------------------------------------------------------- /configs/groie/mask_rcnn_r50_fpn_groie_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/groie/mask_rcnn_r50_fpn_groie_1x_coco.py -------------------------------------------------------------------------------- /configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/groie/metafile.yml -------------------------------------------------------------------------------- /configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_faster_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/guided_anchoring/ga_faster_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/guided_anchoring/ga_rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/guided_anchoring/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/guided_anchoring/metafile.yml -------------------------------------------------------------------------------- /configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/README.md -------------------------------------------------------------------------------- /configs/hrnet/cascade_rcnn_hrnetv2p_w18_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/cascade_rcnn_hrnetv2p_w18_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/cascade_rcnn_hrnetv2p_w40_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/cascade_rcnn_hrnetv2p_w40_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w18_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w18_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w18_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w18_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w32_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w32_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w32_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w32_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w40_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w40_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w40_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w40_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/htc_hrnetv2p_w18_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/htc_hrnetv2p_w32_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/htc_hrnetv2p_w40_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/htc_hrnetv2p_w40_28e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/htc_x101_64x4d_fpn_16x1_28e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/htc_x101_64x4d_fpn_16x1_28e_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w18_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w18_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w18_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w18_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w32_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w32_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w32_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w32_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w40_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w40_1x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w40_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w40_2x_coco.py -------------------------------------------------------------------------------- /configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/README.md -------------------------------------------------------------------------------- /configs/htc/htc_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/htc/htc_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/htc/htc_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/htc/htc_without_semantic_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_without_semantic_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/htc/htc_x101_32x4d_fpn_16x1_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_x101_32x4d_fpn_16x1_20e_coco.py -------------------------------------------------------------------------------- /configs/htc/htc_x101_64x4d_fpn_16x1_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/htc_x101_64x4d_fpn_16x1_20e_coco.py -------------------------------------------------------------------------------- /configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/htc/metafile.yml -------------------------------------------------------------------------------- /configs/instaboost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/instaboost/README.md -------------------------------------------------------------------------------- /configs/instaboost/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/instaboost/metafile.yml -------------------------------------------------------------------------------- /configs/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/README.md -------------------------------------------------------------------------------- /configs/ld/ld_r101_gflv1_r101dcn_fpn_coco_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/ld_r101_gflv1_r101dcn_fpn_coco_2x.py -------------------------------------------------------------------------------- /configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ld/metafile.yml -------------------------------------------------------------------------------- /configs/legacy_1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/legacy_1.x/README.md -------------------------------------------------------------------------------- /configs/legacy_1.x/faster_rcnn_r50_fpn_1x_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/legacy_1.x/faster_rcnn_r50_fpn_1x_coco_v1.py -------------------------------------------------------------------------------- /configs/legacy_1.x/mask_rcnn_r50_fpn_1x_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/legacy_1.x/mask_rcnn_r50_fpn_1x_coco_v1.py -------------------------------------------------------------------------------- /configs/legacy_1.x/retinanet_r50_fpn_1x_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/legacy_1.x/retinanet_r50_fpn_1x_coco_v1.py -------------------------------------------------------------------------------- /configs/legacy_1.x/ssd300_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/legacy_1.x/ssd300_coco_v1.py -------------------------------------------------------------------------------- /configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/libra_rcnn/libra_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/libra_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/libra_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/lvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/lvis/README.md -------------------------------------------------------------------------------- /configs/mask_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/README.md -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r50_caffe_c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r50_caffe_c4_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_r50_fpn_poly_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_r50_fpn_poly_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_x101_32x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_x101_32x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_x101_32x8d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_x101_32x8d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/mask_rcnn_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/mask_rcnn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/nas_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/nas_fcos/README.md -------------------------------------------------------------------------------- /configs/nas_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/nas_fcos/metafile.yml -------------------------------------------------------------------------------- /configs/nas_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/nas_fpn/README.md -------------------------------------------------------------------------------- /configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /configs/nas_fpn/retinanet_r50_fpn_crop640_50e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/nas_fpn/retinanet_r50_fpn_crop640_50e_coco.py -------------------------------------------------------------------------------- /configs/paa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/README.md -------------------------------------------------------------------------------- /configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/metafile.yml -------------------------------------------------------------------------------- /configs/paa/paa_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r101_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r101_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r50_fpn_1.5x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r50_fpn_1.5x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/paa/paa_r50_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/paa/paa_r50_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /configs/pafpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pafpn/README.md -------------------------------------------------------------------------------- /configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py -------------------------------------------------------------------------------- /configs/pascal_voc/retinanet_r50_fpn_1x_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pascal_voc/retinanet_r50_fpn_1x_voc0712.py -------------------------------------------------------------------------------- /configs/pascal_voc/ssd300_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pascal_voc/ssd300_voc0712.py -------------------------------------------------------------------------------- /configs/pascal_voc/ssd512_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pascal_voc/ssd512_voc0712.py -------------------------------------------------------------------------------- /configs/pisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/README.md -------------------------------------------------------------------------------- /configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /configs/pisa/pisa_faster_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_faster_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_mask_rcnn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_mask_rcnn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_retinanet_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_retinanet_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_ssd300_coco.py -------------------------------------------------------------------------------- /configs/pisa/pisa_ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/pisa/pisa_ssd512_coco.py -------------------------------------------------------------------------------- /configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/point_rend/README.md -------------------------------------------------------------------------------- /configs/point_rend/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/point_rend/metafile.yml -------------------------------------------------------------------------------- /configs/regnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/README.md -------------------------------------------------------------------------------- /configs/regnet/mask_rcnn_regnetx-12GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/mask_rcnn_regnetx-12GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/mask_rcnn_regnetx-3.2GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/mask_rcnn_regnetx-3.2GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/mask_rcnn_regnetx-4GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/mask_rcnn_regnetx-4GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/mask_rcnn_regnetx-6.4GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/mask_rcnn_regnetx-6.4GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/mask_rcnn_regnetx-8GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/mask_rcnn_regnetx-8GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /configs/regnet/retinanet_regnetx-1.6GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/retinanet_regnetx-1.6GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/retinanet_regnetx-3.2GF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/retinanet_regnetx-3.2GF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/regnet/retinanet_regnetx-800MF_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/regnet/retinanet_regnetx-800MF_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/reppoints/README.md -------------------------------------------------------------------------------- /configs/reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/reppoints/metafile.yml -------------------------------------------------------------------------------- /configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /configs/reppoints/reppoints_moment_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/reppoints/reppoints_moment_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/res2net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/README.md -------------------------------------------------------------------------------- /configs/res2net/cascade_rcnn_r2_101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/cascade_rcnn_r2_101_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/res2net/faster_rcnn_r2_101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/faster_rcnn_r2_101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/res2net/htc_r2_101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/htc_r2_101_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/res2net/mask_rcnn_r2_101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/mask_rcnn_r2_101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/resnest/README.md -------------------------------------------------------------------------------- /configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /configs/retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/README.md -------------------------------------------------------------------------------- /configs/retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/metafile.yml -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_x101_32x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_x101_32x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/retinanet/retinanet_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/retinanet/retinanet_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/README.md -------------------------------------------------------------------------------- /configs/rpn/rpn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r50_caffe_c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r50_caffe_c4_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/sabl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/README.md -------------------------------------------------------------------------------- /configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /configs/sabl/sabl_cascade_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_cascade_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_cascade_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_cascade_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_faster_rcnn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_faster_rcnn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_faster_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_faster_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_retinanet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_retinanet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_retinanet_r101_fpn_gn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_retinanet_r101_fpn_gn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/sabl/sabl_retinanet_r50_fpn_gn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sabl/sabl_retinanet_r50_fpn_gn_1x_coco.py -------------------------------------------------------------------------------- /configs/scnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/README.md -------------------------------------------------------------------------------- /configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /configs/scnet/scnet_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/scnet_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/scnet/scnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/scnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/scnet/scnet_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/scnet_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py -------------------------------------------------------------------------------- /configs/scnet/scnet_x101_64x4d_fpn_8x1_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scnet/scnet_x101_64x4d_fpn_8x1_20e_coco.py -------------------------------------------------------------------------------- /configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scratch/README.md -------------------------------------------------------------------------------- /configs/scratch/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/scratch/metafile.yml -------------------------------------------------------------------------------- /configs/seesaw_loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/seesaw_loss/README.md -------------------------------------------------------------------------------- /configs/selfsup_pretrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/selfsup_pretrain/README.md -------------------------------------------------------------------------------- /configs/sparse_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sparse_rcnn/README.md -------------------------------------------------------------------------------- /configs/sparse_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sparse_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/sparse_rcnn/sparse_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/sparse_rcnn/sparse_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ssd/README.md -------------------------------------------------------------------------------- /configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /configs/ssd/ssdlite_mobilenetv2_scratch_600e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/ssd/ssdlite_mobilenetv2_scratch_600e_coco.py -------------------------------------------------------------------------------- /configs/tood/tood_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tood/tood_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/tood/tood_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tood/tood_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/tood/tood_r50_fpn_anchor_based_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tood/tood_r50_fpn_anchor_based_1x_coco.py -------------------------------------------------------------------------------- /configs/tood/tood_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tood/tood_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/tood/tood_x101_64x4d_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tood/tood_x101_64x4d_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/tridentnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tridentnet/README.md -------------------------------------------------------------------------------- /configs/tridentnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tridentnet/metafile.yml -------------------------------------------------------------------------------- /configs/tridentnet/tridentnet_r50_caffe_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/tridentnet/tridentnet_r50_caffe_1x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/README.md -------------------------------------------------------------------------------- /configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r2_101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r2_101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_x101_32x4d_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_x101_32x4d_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/vfnet/vfnet_x101_64x4d_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/vfnet/vfnet_x101_64x4d_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/wider_face/README.md -------------------------------------------------------------------------------- /configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /configs/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolact/README.md -------------------------------------------------------------------------------- /configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /configs/yolact/yolact_r101_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolact/yolact_r101_1x8_coco.py -------------------------------------------------------------------------------- /configs/yolact/yolact_r50_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolact/yolact_r50_1x8_coco.py -------------------------------------------------------------------------------- /configs/yolact/yolact_r50_8x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolact/yolact_r50_8x8_coco.py -------------------------------------------------------------------------------- /configs/yolo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/README.md -------------------------------------------------------------------------------- /configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /configs/yolo/yolov3_d53_320_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/yolov3_d53_320_273e_coco.py -------------------------------------------------------------------------------- /configs/yolo/yolov3_d53_fp16_mstrain-608_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/yolov3_d53_fp16_mstrain-608_273e_coco.py -------------------------------------------------------------------------------- /configs/yolo/yolov3_d53_mstrain-416_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/yolov3_d53_mstrain-416_273e_coco.py -------------------------------------------------------------------------------- /configs/yolo/yolov3_d53_mstrain-608_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolo/yolov3_d53_mstrain-608_273e_coco.py -------------------------------------------------------------------------------- /configs/yolof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolof/README.md -------------------------------------------------------------------------------- /configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /configs/yolof/yolof_r50_c5_8x8_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolof/yolof_r50_c5_8x8_1x_coco.py -------------------------------------------------------------------------------- /configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py -------------------------------------------------------------------------------- /demo/MMDet_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/MMDet_Tutorial.ipynb -------------------------------------------------------------------------------- /demo/create_result_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/create_result_gif.py -------------------------------------------------------------------------------- /demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/demo.jpg -------------------------------------------------------------------------------- /demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/demo.mp4 -------------------------------------------------------------------------------- /demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/image_demo.py -------------------------------------------------------------------------------- /demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /demo/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/video_demo.py -------------------------------------------------------------------------------- /demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/demo/webcam_demo.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docker/serve/Dockerfile -------------------------------------------------------------------------------- /docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docker/serve/config.properties -------------------------------------------------------------------------------- /docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /docs/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/1_exist_data_model.md -------------------------------------------------------------------------------- /docs/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/2_new_data_model.md -------------------------------------------------------------------------------- /docs/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/3_exist_data_new_model.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/compatibility.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/conventions.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/get_started.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/model_zoo.md -------------------------------------------------------------------------------- /docs/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/projects.md -------------------------------------------------------------------------------- /docs/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/robustness_benchmarking.md -------------------------------------------------------------------------------- /docs/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/stat.py -------------------------------------------------------------------------------- /docs/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/switch_language.md -------------------------------------------------------------------------------- /docs/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/config.md -------------------------------------------------------------------------------- /docs/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/customize_dataset.md -------------------------------------------------------------------------------- /docs/tutorials/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/customize_losses.md -------------------------------------------------------------------------------- /docs/tutorials/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/customize_models.md -------------------------------------------------------------------------------- /docs/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/customize_runtime.md -------------------------------------------------------------------------------- /docs/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/finetune.md -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/init_cfg.md -------------------------------------------------------------------------------- /docs/tutorials/onnx2tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/onnx2tensorrt.md -------------------------------------------------------------------------------- /docs/tutorials/pytorch2onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/tutorials/pytorch2onnx.md -------------------------------------------------------------------------------- /docs/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs/useful_tools.md -------------------------------------------------------------------------------- /docs_zh-CN/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/1_exist_data_model.md -------------------------------------------------------------------------------- /docs_zh-CN/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/2_new_data_model.md -------------------------------------------------------------------------------- /docs_zh-CN/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/3_exist_data_new_model.md -------------------------------------------------------------------------------- /docs_zh-CN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/Makefile -------------------------------------------------------------------------------- /docs_zh-CN/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/api.rst -------------------------------------------------------------------------------- /docs_zh-CN/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/compatibility.md -------------------------------------------------------------------------------- /docs_zh-CN/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/conf.py -------------------------------------------------------------------------------- /docs_zh-CN/conventions.md: -------------------------------------------------------------------------------- 1 | # 默认约定 2 | -------------------------------------------------------------------------------- /docs_zh-CN/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/faq.md -------------------------------------------------------------------------------- /docs_zh-CN/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/get_started.md -------------------------------------------------------------------------------- /docs_zh-CN/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/index.rst -------------------------------------------------------------------------------- /docs_zh-CN/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/make.bat -------------------------------------------------------------------------------- /docs_zh-CN/model_zoo.md: -------------------------------------------------------------------------------- 1 | # 模型库 2 | 3 | ## 镜像地址 4 | -------------------------------------------------------------------------------- /docs_zh-CN/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/projects.md -------------------------------------------------------------------------------- /docs_zh-CN/robustness_benchmarking.md: -------------------------------------------------------------------------------- 1 | # 检测器鲁棒性检查 2 | -------------------------------------------------------------------------------- /docs_zh-CN/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/stat.py -------------------------------------------------------------------------------- /docs_zh-CN/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/switch_language.md -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/config.md: -------------------------------------------------------------------------------- 1 | # 教程 1: 配置文件 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- 1 | # 教程 2: 自定义数据集 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/customize_losses.md: -------------------------------------------------------------------------------- 1 | # 教程 6: 自定义损失函数 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/customize_models.md: -------------------------------------------------------------------------------- 1 | # 教程 4: 自定义模型 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- 1 | # 教程 5: 自定义训练配置 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- 1 | # 教程 3: 自定义数据预处理流程 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/finetune.md: -------------------------------------------------------------------------------- 1 | # 教程 7: 模型微调 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/docs_zh-CN/tutorials/index.rst -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/onnx2tensorrt.md: -------------------------------------------------------------------------------- 1 | # 教程 9: ONNX 到 TensorRT 的模型转换(实验性支持) 2 | -------------------------------------------------------------------------------- /docs_zh-CN/tutorials/pytorch2onnx.md: -------------------------------------------------------------------------------- 1 | # 教程 8: Pytorch 到 ONNX 的模型转换(实验性支持) 2 | -------------------------------------------------------------------------------- /docs_zh-CN/useful_tools.md: -------------------------------------------------------------------------------- 1 | ## 日志分析 2 | -------------------------------------------------------------------------------- /mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/apis/test.py -------------------------------------------------------------------------------- /mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/approx_max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/approx_max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/center_region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/center_region_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/hungarian_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/hungarian_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/region_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/task_aligned_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/task_aligned_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/uniform_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/assigners/uniform_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/bucketing_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/bucketing_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/legacy_delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/legacy_delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/iou_calculators/iou2d_calculator.py -------------------------------------------------------------------------------- /mmdet/core/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/match_costs/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/match_costs/match_cost.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/score_hlr_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/samplers/score_hlr_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /mmdet/core/export/model_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/export/model_wrappers.py -------------------------------------------------------------------------------- /mmdet/core/export/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/export/onnx_helper.py -------------------------------------------------------------------------------- /mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdet/core/utils/head_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/utils/head_hook.py -------------------------------------------------------------------------------- /mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdet/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/visualization/__init__.py -------------------------------------------------------------------------------- /mmdet/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/core/visualization/image.py -------------------------------------------------------------------------------- /mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_free_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/anchor_free_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/cascade_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/cascade_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centripetal_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/centripetal_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/deformable_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/deformable_detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dense_test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/dense_test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/embedding_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/embedding_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/free_anchor_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/free_anchor_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_retinanet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/pisa_retinanet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_sepbn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/retina_sepbn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/sabl_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /mmdet/models/detectors/trident_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/trident_faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/task_aligned_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/task_aligned_focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/dii_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/dii_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/double_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/double_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/sabl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/sabl_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/scnet_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/bbox_heads/scnet_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/coarse_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/coarse_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/fcn_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/fcn_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/htc_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/htc_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/mask_point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/mask_point_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/maskiou_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/maskiou_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/scnet_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_heads/scnet_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_scoring_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/mask_scoring_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/point_rend_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/point_rend_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/shared_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/shared_heads/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/trident_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/roi_heads/trident_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /mmdet/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmdet/models/utils/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/normed_predictor.py -------------------------------------------------------------------------------- /mmdet/models/utils/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/positional_encoding.py -------------------------------------------------------------------------------- /mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /mmdet/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/models/utils/transformer.py -------------------------------------------------------------------------------- /mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/mmdet/version.py -------------------------------------------------------------------------------- /model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/model-index.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.8 2 | -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/optional.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/T-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/T-head.png -------------------------------------------------------------------------------- /resources/T-head_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/T-head_1.png -------------------------------------------------------------------------------- /resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/data_pipeline.png -------------------------------------------------------------------------------- /resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/loss_curve.png -------------------------------------------------------------------------------- /resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/mmdet-logo.png -------------------------------------------------------------------------------- /resources/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/overview.png -------------------------------------------------------------------------------- /resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_coco_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_datasets/test_coco_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_datasets/test_common.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_custom_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_datasets/test_custom_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_dataset_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_datasets/test_dataset_wrapper.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_xml_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_datasets/test_xml_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_pipelines/test_formatting.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_pipelines/test_loading.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_pipelines/test_sampler.py -------------------------------------------------------------------------------- /tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /tests/test_metrics/test_box_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_metrics/test_box_overlap.py -------------------------------------------------------------------------------- /tests/test_metrics/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_metrics/test_losses.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/__init__.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_hourglass.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_mobilenet_v2.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_regnet.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_renext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_renext.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_res2net.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_resnest.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/test_resnet.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_atss_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_detr_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_fcos_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_fsaf_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_gfl_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_ld_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_paa_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_pisa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_pisa_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_vfnet_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_dense_heads/test_yolof_head.py -------------------------------------------------------------------------------- /tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /tests/test_models/test_loss_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_loss_compatibility.py -------------------------------------------------------------------------------- /tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /tests/test_models/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_plugins.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_roi_heads/__init__.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_roi_heads/test_bbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_roi_heads/test_mask_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_roi_heads/utils.py -------------------------------------------------------------------------------- /tests/test_models/test_utils/test_se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_utils/test_se_layer.py -------------------------------------------------------------------------------- /tests/test_models/test_utils/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_models/test_utils/test_transformer.py -------------------------------------------------------------------------------- /tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /tests/test_runtime/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_runtime/async_benchmark.py -------------------------------------------------------------------------------- /tests/test_runtime/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_runtime/test_async.py -------------------------------------------------------------------------------- /tests/test_runtime/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_runtime/test_config.py -------------------------------------------------------------------------------- /tests/test_runtime/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_runtime/test_eval_hook.py -------------------------------------------------------------------------------- /tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /tests/test_utils/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_assigner.py -------------------------------------------------------------------------------- /tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /tests/test_utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_version.py -------------------------------------------------------------------------------- /tests/test_utils/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tests/test_utils/test_visualization.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/deployment/test.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/upgrade_model_version.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_ssd_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/model_converters/upgrade_ssd_version.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/TOOD/HEAD/tools/train.py --------------------------------------------------------------------------------