├── README.md ├── image_classification ├── FLOPs_count.ipynb ├── README.md ├── distributed_train.sh ├── misc │ ├── README.md │ ├── demo_spanet.ipynb │ └── scoreCAM_demo │ │ ├── demo_score-cam.py │ │ ├── sample_imgs │ │ ├── drum.JPEG │ │ ├── goldfish.JPEG │ │ ├── gondola.JPEG │ │ └── tabby.JPEG │ │ └── spanet.py ├── scripts │ └── spanet │ │ ├── train_spanet_base.sh │ │ ├── train_spanet_baseX.sh │ │ ├── train_spanet_medium.sh │ │ ├── train_spanet_mediumX.sh │ │ └── train_spanet_small.sh ├── spanet.py ├── train.py ├── utils.py ├── val.sh └── validate.py └── object_detection ├── LICENSE ├── README.md ├── ckpt └── custom_ckpt.py ├── 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 │ │ ├── objects365v1_detection.py │ │ ├── objects365v2_detection.py │ │ ├── openimages_detection.py │ │ ├── voc0712.py │ │ └── wider_face.py │ ├── default_runtime.py │ ├── models │ │ ├── ascend_retinanet_r50_fpn.py │ │ ├── ascend_ssd300.py │ │ ├── cascade_mask_rcnn_r50_fpn.py │ │ ├── cascade_rcnn_r50_fpn.py │ │ ├── fast_rcnn_r50_fpn.py │ │ ├── faster_rcnn_r50_caffe_c4.py │ │ ├── faster_rcnn_r50_caffe_dc5.py │ │ ├── faster_rcnn_r50_fpn.py │ │ ├── mask_rcnn_r50_caffe_c4.py │ │ ├── mask_rcnn_r50_fpn.py │ │ ├── retinanet_r50_fpn.py │ │ ├── rpn_r50_caffe_c4.py │ │ ├── rpn_r50_fpn.py │ │ └── ssd300.py │ └── schedules │ │ ├── schedule_1x.py │ │ ├── schedule_20e.py │ │ └── schedule_2x.py ├── albu_example │ ├── README.md │ └── mask_rcnn_r50_fpn_albu_1x_coco.py ├── atss │ ├── README.md │ ├── atss_r101_fpn_1x_coco.py │ ├── atss_r50_fpn_1x_coco.py │ └── metafile.yml ├── autoassign │ ├── README.md │ ├── autoassign_r50_fpn_8x2_1x_coco.py │ └── metafile.yml ├── carafe │ ├── README.md │ ├── faster_rcnn_r50_fpn_carafe_1x_coco.py │ ├── mask_rcnn_r50_fpn_carafe_1x_coco.py │ └── metafile.yml ├── cascade_rcnn │ ├── README.md │ ├── cascade_mask_rcnn_r101_caffe_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r101_caffe_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r101_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r101_fpn_20e_coco.py │ ├── cascade_mask_rcnn_r101_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r50_caffe_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_caffe_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_1x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_20e_coco.py │ ├── cascade_mask_rcnn_r50_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_32x8d_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_20e_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_mstrain_3x_coco.py │ ├── cascade_rcnn_r101_caffe_fpn_1x_coco.py │ ├── cascade_rcnn_r101_fpn_1x_coco.py │ ├── cascade_rcnn_r101_fpn_20e_coco.py │ ├── cascade_rcnn_r50_caffe_fpn_1x_coco.py │ ├── cascade_rcnn_r50_fpn_1x_coco.py │ ├── cascade_rcnn_r50_fpn_20e_coco.py │ ├── cascade_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── cascade_rcnn_x101_32x4d_fpn_20e_coco.py │ ├── cascade_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── cascade_rcnn_x101_64x4d_fpn_20e_coco.py │ └── metafile.yml ├── cascade_rpn │ ├── README.md │ ├── crpn_fast_rcnn_r50_caffe_fpn_1x_coco.py │ ├── crpn_faster_rcnn_r50_caffe_fpn_1x_coco.py │ ├── crpn_r50_caffe_fpn_1x_coco.py │ └── metafile.yml ├── centernet │ ├── README.md │ ├── centernet_resnet18_140e_coco.py │ ├── centernet_resnet18_dcnv2_140e_coco.py │ └── metafile.yml ├── centripetalnet │ ├── README.md │ ├── centripetalnet_hourglass104_mstest_16x6_210e_coco.py │ └── metafile.yml ├── cityscapes │ ├── README.md │ ├── faster_rcnn_r50_fpn_1x_cityscapes.py │ └── mask_rcnn_r50_fpn_1x_cityscapes.py ├── common │ ├── lsj_100e_coco_instance.py │ ├── mstrain-poly_3x_coco_instance.py │ ├── mstrain_3x_coco.py │ ├── mstrain_3x_coco_instance.py │ ├── ssj_270k_coco_instance.py │ └── ssj_scp_270k_coco_instance.py ├── convnext │ ├── README.md │ ├── cascade_mask_rcnn_convnext-s_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.py │ ├── cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.py │ ├── mask_rcnn_convnext-t_p4_w7_fpn_fp16_ms-crop_3x_coco.py │ └── metafile.yml ├── 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_x101_32x4d_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_fp16_dconv_c3-c5_1x_coco.py │ └── metafile.yml ├── dcnv2 │ ├── README.md │ ├── 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 │ ├── mask_rcnn_r50_fpn_fp16_mdconv_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.py │ └── metafile.yml ├── ddod │ ├── README.md │ ├── ddod_r50_fpn_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 ├── dyhead │ ├── README.md │ ├── atss_r50_caffe_fpn_dyhead_1x_coco.py │ ├── atss_r50_fpn_dyhead_1x_coco.py │ ├── atss_swin-l-p4-w12_fpn_dyhead_mstrain_2x_coco.py │ └── metafile.yml ├── dynamic_rcnn │ ├── README.md │ ├── dynamic_rcnn_r50_fpn_1x_coco.py │ └── metafile.yml ├── efficientnet │ ├── README.md │ ├── metafile.yml │ └── retinanet_effb3_fpn_crop896_8x4_1x_coco.py ├── 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_c4_mstrain_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_mstrain_1x_coco.py │ ├── faster_rcnn_r50_caffe_dc5_mstrain_3x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_1x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_90k_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person-bicycle-car.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_2x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r50_caffe_fpn_mstrain_90k_coco.py │ ├── faster_rcnn_r50_fpn_1x_coco.py │ ├── faster_rcnn_r50_fpn_2x_coco.py │ ├── faster_rcnn_r50_fpn_bounded_iou_1x_coco.py │ ├── faster_rcnn_r50_fpn_ciou_1x_coco.py │ ├── faster_rcnn_r50_fpn_fp16_1x_coco.py │ ├── faster_rcnn_r50_fpn_giou_1x_coco.py │ ├── faster_rcnn_r50_fpn_iou_1x_coco.py │ ├── faster_rcnn_r50_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_r50_fpn_ohem_1x_coco.py │ ├── faster_rcnn_r50_fpn_soft_nms_1x_coco.py │ ├── faster_rcnn_r50_fpn_tnr-pretrain_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_fp16_1x_bs8x8_coco.py │ ├── fcos_r50_caffe_fpn_gn-head_mstrain_640-800_2x_coco.py │ ├── fcos_x101_64x4d_fpn_gn-head_mstrain_640-800_2x_coco.py │ └── metafile.yml ├── foveabox │ ├── README.md │ ├── fovea_align_r101_fpn_gn-head_4x4_2x_coco.py │ ├── fovea_align_r101_fpn_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fovea_align_r50_fpn_gn-head_4x4_2x_coco.py │ ├── fovea_align_r50_fpn_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fovea_r101_fpn_4x4_1x_coco.py │ ├── fovea_r101_fpn_4x4_2x_coco.py │ ├── fovea_r50_fpn_4x4_1x_coco.py │ ├── fovea_r50_fpn_4x4_2x_coco.py │ └── metafile.yml ├── fpg │ ├── README.md │ ├── faster_rcnn_r50_fpg-chn128_crop640_50e_coco.py │ ├── faster_rcnn_r50_fpg_crop640_50e_coco.py │ ├── faster_rcnn_r50_fpn_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpg-chn128_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpg_crop640_50e_coco.py │ ├── mask_rcnn_r50_fpn_crop640_50e_coco.py │ ├── metafile.yml │ ├── retinanet_r50_fpg-chn128_crop640_50e_coco.py │ └── retinanet_r50_fpg_crop640_50e_coco.py ├── free_anchor │ ├── README.md │ ├── metafile.yml │ ├── retinanet_free_anchor_r101_fpn_1x_coco.py │ ├── retinanet_free_anchor_r50_fpn_1x_coco.py │ └── retinanet_free_anchor_x101_32x4d_fpn_1x_coco.py ├── fsaf │ ├── README.md │ ├── fsaf_r101_fpn_1x_coco.py │ ├── fsaf_r50_fpn_1x_coco.py │ ├── fsaf_x101_64x4d_fpn_1x_coco.py │ └── metafile.yml ├── gcnet │ ├── README.md │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r16_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r4_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.py │ └── metafile.yml ├── gfl │ ├── README.md │ ├── gfl_r101_fpn_dconv_c3-c5_mstrain_2x_coco.py │ ├── gfl_r101_fpn_mstrain_2x_coco.py │ ├── gfl_r50_fpn_1x_coco.py │ ├── gfl_r50_fpn_mstrain_2x_coco.py │ ├── gfl_x101_32x4d_fpn_dconv_c4-c5_mstrain_2x_coco.py │ ├── gfl_x101_32x4d_fpn_mstrain_2x_coco.py │ └── metafile.yml ├── ghm │ ├── README.md │ ├── metafile.yml │ ├── retinanet_ghm_r101_fpn_1x_coco.py │ ├── retinanet_ghm_r50_fpn_1x_coco.py │ ├── retinanet_ghm_x101_32x4d_fpn_1x_coco.py │ └── retinanet_ghm_x101_64x4d_fpn_1x_coco.py ├── gn+ws │ ├── README.md │ ├── faster_rcnn_r101_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_r50_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_x101_32x4d_fpn_gn_ws-all_1x_coco.py │ ├── faster_rcnn_x50_32x4d_fpn_gn_ws-all_1x_coco.py │ ├── mask_rcnn_r101_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_r101_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_r50_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_2x_coco.py │ ├── mask_rcnn_x50_32x4d_fpn_gn_ws-all_20_23_24e_coco.py │ ├── mask_rcnn_x50_32x4d_fpn_gn_ws-all_2x_coco.py │ └── metafile.yml ├── gn │ ├── README.md │ ├── mask_rcnn_r101_fpn_gn-all_2x_coco.py │ ├── mask_rcnn_r101_fpn_gn-all_3x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_3x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_contrib_2x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_contrib_3x_coco.py │ └── metafile.yml ├── grid_rcnn │ ├── README.md │ ├── grid_rcnn_r101_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_1x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_x101_32x4d_fpn_gn-head_2x_coco.py │ ├── grid_rcnn_x101_64x4d_fpn_gn-head_2x_coco.py │ └── metafile.yml ├── groie │ ├── README.md │ ├── faster_rcnn_r50_fpn_groie_1x_coco.py │ ├── grid_rcnn_r50_fpn_gn-head_groie_1x_coco.py │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.py │ ├── mask_rcnn_r50_fpn_groie_1x_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.py │ └── metafile.yml ├── guided_anchoring │ ├── README.md │ ├── ga_fast_r50_caffe_fpn_1x_coco.py │ ├── ga_faster_r101_caffe_fpn_1x_coco.py │ ├── ga_faster_r50_caffe_fpn_1x_coco.py │ ├── ga_faster_r50_fpn_1x_coco.py │ ├── ga_faster_x101_32x4d_fpn_1x_coco.py │ ├── ga_faster_x101_64x4d_fpn_1x_coco.py │ ├── ga_retinanet_r101_caffe_fpn_1x_coco.py │ ├── ga_retinanet_r101_caffe_fpn_mstrain_2x.py │ ├── ga_retinanet_r50_caffe_fpn_1x_coco.py │ ├── ga_retinanet_r50_fpn_1x_coco.py │ ├── ga_retinanet_x101_32x4d_fpn_1x_coco.py │ ├── ga_retinanet_x101_64x4d_fpn_1x_coco.py │ ├── ga_rpn_r101_caffe_fpn_1x_coco.py │ ├── ga_rpn_r50_caffe_fpn_1x_coco.py │ ├── ga_rpn_r50_fpn_1x_coco.py │ ├── ga_rpn_x101_32x4d_fpn_1x_coco.py │ ├── ga_rpn_x101_64x4d_fpn_1x_coco.py │ └── metafile.yml ├── hrnet │ ├── README.md │ ├── cascade_mask_rcnn_hrnetv2p_w18_20e_coco.py │ ├── cascade_mask_rcnn_hrnetv2p_w32_20e_coco.py │ ├── cascade_mask_rcnn_hrnetv2p_w40_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w18_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w32_20e_coco.py │ ├── cascade_rcnn_hrnetv2p_w40_20e_coco.py │ ├── faster_rcnn_hrnetv2p_w18_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w18_2x_coco.py │ ├── faster_rcnn_hrnetv2p_w32_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w32_2x_coco.py │ ├── faster_rcnn_hrnetv2p_w40_1x_coco.py │ ├── faster_rcnn_hrnetv2p_w40_2x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_4x4_1x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w18_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_4x4_1x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w32_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── fcos_hrnetv2p_w40_gn-head_mstrain_640-800_4x4_2x_coco.py │ ├── htc_hrnetv2p_w18_20e_coco.py │ ├── htc_hrnetv2p_w32_20e_coco.py │ ├── htc_hrnetv2p_w40_20e_coco.py │ ├── htc_hrnetv2p_w40_28e_coco.py │ ├── htc_x101_64x4d_fpn_16x1_28e_coco.py │ ├── mask_rcnn_hrnetv2p_w18_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w18_2x_coco.py │ ├── mask_rcnn_hrnetv2p_w32_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w32_2x_coco.py │ ├── mask_rcnn_hrnetv2p_w40_1x_coco.py │ ├── mask_rcnn_hrnetv2p_w40_2x_coco.py │ └── metafile.yml ├── htc │ ├── README.md │ ├── htc_r101_fpn_20e_coco.py │ ├── htc_r50_fpn_1x_coco.py │ ├── htc_r50_fpn_20e_coco.py │ ├── htc_without_semantic_r50_fpn_1x_coco.py │ ├── htc_x101_32x4d_fpn_16x1_20e_coco.py │ ├── htc_x101_64x4d_fpn_16x1_20e_coco.py │ ├── htc_x101_64x4d_fpn_dconv_c3-c5_mstrain_400_1400_16x1_20e_coco.py │ └── metafile.yml ├── instaboost │ ├── README.md │ ├── cascade_mask_rcnn_r101_fpn_instaboost_4x_coco.py │ ├── cascade_mask_rcnn_r50_fpn_instaboost_4x_coco.py │ ├── cascade_mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_r101_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_r50_fpn_instaboost_4x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.py │ └── metafile.yml ├── lad │ ├── README.md │ ├── lad_r101_paa_r50_fpn_coco_1x.py │ ├── lad_r50_paa_r101_fpn_coco_1x.py │ └── 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 ├── mask2former │ ├── README.md │ ├── mask2former_r101_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_r101_lsj_8x2_50e_coco.py │ ├── mask2former_r50_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_r50_lsj_8x2_50e_coco.py │ ├── mask2former_swin-b-p4-w12-384-in21k_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_swin-b-p4-w12-384_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_swin-l-p4-w12-384-in21k_lsj_16x1_100e_coco-panoptic.py │ ├── mask2former_swin-s-p4-w7-224_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_swin-s-p4-w7-224_lsj_8x2_50e_coco.py │ ├── mask2former_swin-t-p4-w7-224_lsj_8x2_50e_coco-panoptic.py │ ├── mask2former_swin-t-p4-w7-224_lsj_8x2_50e_coco.py │ └── metafile.yml ├── 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_1x_wandb_coco.py │ ├── mask_rcnn_r50_fpn_2x_coco.py │ ├── mask_rcnn_r50_fpn_fp16_1x_coco.py │ ├── mask_rcnn_r50_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_r50_fpn_poly_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_2x_coco.py │ ├── mask_rcnn_x101_32x4d_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_1x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_1x_coco.py │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_1x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_2x_coco.py │ ├── mask_rcnn_x101_64x4d_fpn_mstrain-poly_3x_coco.py │ └── metafile.yml ├── maskformer │ ├── README.md │ ├── maskformer_r50_mstrain_16x1_75e_coco.py │ ├── maskformer_swin-l-p4-w12_mstrain_64x1_300e_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 ├── objects365 │ ├── README.md │ ├── faster_rcnn_r50_fpn_16x4_1x_obj365v1.py │ ├── faster_rcnn_r50_fpn_16x4_1x_obj365v2.py │ ├── faster_rcnn_r50_fpn_syncbn_1350k_obj365v1.py │ ├── metafile.yml │ ├── retinanet_r50_fpn_1x_obj365v1.py │ ├── retinanet_r50_fpn_1x_obj365v2.py │ └── retinanet_r50_fpn_syncbn_1350k_obj365v1.py ├── openimages │ ├── README.md │ ├── faster_rcnn_r50_fpn_32x2_1x_openimages.py │ ├── faster_rcnn_r50_fpn_32x2_1x_openimages_challenge.py │ ├── faster_rcnn_r50_fpn_32x2_cas_1x_openimages.py │ ├── faster_rcnn_r50_fpn_32x2_cas_1x_openimages_challenge.py │ ├── metafile.yml │ ├── retinanet_r50_fpn_32x2_1x_openimages.py │ └── ssd300_32x8_36e_openimages.py ├── paa │ ├── README.md │ ├── metafile.yml │ ├── paa_r101_fpn_1x_coco.py │ ├── paa_r101_fpn_2x_coco.py │ ├── paa_r101_fpn_mstrain_3x_coco.py │ ├── paa_r50_fpn_1.5x_coco.py │ ├── paa_r50_fpn_1x_coco.py │ ├── paa_r50_fpn_2x_coco.py │ └── paa_r50_fpn_mstrain_3x_coco.py ├── pafpn │ ├── README.md │ ├── faster_rcnn_r50_pafpn_1x_coco.py │ └── metafile.yml ├── panoptic_fpn │ ├── README.md │ ├── metafile.yml │ ├── panoptic_fpn_r101_fpn_1x_coco.py │ ├── panoptic_fpn_r101_fpn_mstrain_3x_coco.py │ ├── panoptic_fpn_r2_50_fpn_fp16_1x_coco.py │ ├── panoptic_fpn_r50_fpn_1x_coco.py │ └── panoptic_fpn_r50_fpn_mstrain_3x_coco.py ├── pascal_voc │ ├── README.md │ ├── faster_rcnn_r50_caffe_c4_mstrain_18k_voc0712.py │ ├── faster_rcnn_r50_fpn_1x_voc0712.py │ ├── faster_rcnn_r50_fpn_1x_voc0712_cocofmt.py │ ├── retinanet_r50_fpn_1x_voc0712.py │ ├── ssd300_voc0712.py │ └── ssd512_voc0712.py ├── pisa │ ├── README.md │ ├── metafile.yml │ ├── pisa_faster_rcnn_r50_fpn_1x_coco.py │ ├── pisa_faster_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── pisa_mask_rcnn_r50_fpn_1x_coco.py │ ├── pisa_mask_rcnn_x101_32x4d_fpn_1x_coco.py │ ├── pisa_retinanet_r50_fpn_1x_coco.py │ ├── pisa_retinanet_x101_32x4d_fpn_1x_coco.py │ ├── pisa_ssd300_coco.py │ └── pisa_ssd512_coco.py ├── point_rend │ ├── README.md │ ├── metafile.yml │ ├── point_rend_r50_caffe_fpn_mstrain_1x_coco.py │ └── point_rend_r50_caffe_fpn_mstrain_3x_coco.py ├── pvt │ ├── README.md │ ├── metafile.yml │ ├── retinanet_pvt-l_fpn_1x_coco.py │ ├── retinanet_pvt-m_fpn_1x_coco.py │ ├── retinanet_pvt-s_fpn_1x_coco.py │ ├── retinanet_pvt-t_fpn_1x_coco.py │ ├── retinanet_pvtv2-b0_fpn_1x_coco.py │ ├── retinanet_pvtv2-b1_fpn_1x_coco.py │ ├── retinanet_pvtv2-b2_fpn_1x_coco.py │ ├── retinanet_pvtv2-b3_fpn_1x_coco.py │ ├── retinanet_pvtv2-b4_fpn_1x_coco.py │ └── retinanet_pvtv2-b5_fpn_1x_coco.py ├── queryinst │ ├── README.md │ ├── metafile.yml │ ├── queryinst_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ ├── queryinst_r101_fpn_mstrain_480-800_3x_coco.py │ ├── queryinst_r50_fpn_1x_coco.py │ ├── queryinst_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ └── queryinst_r50_fpn_mstrain_480-800_3x_coco.py ├── regnet │ ├── README.md │ ├── cascade_mask_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.py │ ├── cascade_mask_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_1x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_2x_coco.py │ ├── faster_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.py │ ├── faster_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.py │ ├── mask_rcnn_regnetx-1.6GF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-12GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_mdconv_c3-c5_1x_coco.py │ ├── mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.py │ ├── mask_rcnn_regnetx-400MF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-4GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-4GF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-6.4GF_fpn_1x_coco.py │ ├── mask_rcnn_regnetx-800MF_fpn_mstrain-poly_3x_coco.py │ ├── mask_rcnn_regnetx-8GF_fpn_1x_coco.py │ ├── metafile.yml │ ├── retinanet_regnetx-1.6GF_fpn_1x_coco.py │ ├── retinanet_regnetx-3.2GF_fpn_1x_coco.py │ └── retinanet_regnetx-800MF_fpn_1x_coco.py ├── reppoints │ ├── README.md │ ├── bbox_r50_grid_center_fpn_gn-neck+head_1x_coco.py │ ├── bbox_r50_grid_fpn_gn-neck+head_1x_coco.py │ ├── metafile.yml │ ├── reppoints.png │ ├── reppoints_minmax_r50_fpn_gn-neck+head_1x_coco.py │ ├── reppoints_moment_r101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.py │ ├── reppoints_moment_r101_fpn_gn-neck+head_2x_coco.py │ ├── reppoints_moment_r50_fpn_1x_coco.py │ ├── reppoints_moment_r50_fpn_gn-neck+head_1x_coco.py │ ├── reppoints_moment_r50_fpn_gn-neck+head_2x_coco.py │ ├── reppoints_moment_x101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.py │ └── reppoints_partial_minmax_r50_fpn_gn-neck+head_1x_coco.py ├── res2net │ ├── README.md │ ├── cascade_mask_rcnn_r2_101_fpn_20e_coco.py │ ├── cascade_rcnn_r2_101_fpn_20e_coco.py │ ├── faster_rcnn_r2_101_fpn_2x_coco.py │ ├── htc_r2_101_fpn_20e_coco.py │ ├── mask_rcnn_r2_101_fpn_2x_coco.py │ └── metafile.yml ├── resnest │ ├── README.md │ ├── cascade_mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── cascade_mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── cascade_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── cascade_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── faster_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── faster_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.py │ ├── mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ ├── mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.py │ └── metafile.yml ├── resnet_strikes_back │ ├── README.md │ ├── cascade_mask_rcnn_r50_fpn_rsb-pretrain_1x_coco.py │ ├── faster_rcnn_r50_fpn_rsb-pretrain_1x_coco.py │ ├── mask_rcnn_r50_fpn_rsb-pretrain_1x_coco.py │ ├── metafile.yml │ └── retinanet_r50_fpn_rsb-pretrain_1x_coco.py ├── retinanet │ ├── README.md │ ├── ascend_retinanet_r18_fpn_1x8_1x_coco.py │ ├── metafile.yml │ ├── retinanet_r101_caffe_fpn_1x_coco.py │ ├── retinanet_r101_caffe_fpn_mstrain_3x_coco.py │ ├── retinanet_r101_fpn_1x_coco.py │ ├── retinanet_r101_fpn_2x_coco.py │ ├── retinanet_r101_fpn_mstrain_640-800_3x_coco.py │ ├── retinanet_r18_fpn_1x8_1x_coco.py │ ├── retinanet_r18_fpn_1x_coco.py │ ├── retinanet_r50_caffe_fpn_1x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_1x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_2x_coco.py │ ├── retinanet_r50_caffe_fpn_mstrain_3x_coco.py │ ├── retinanet_r50_fpn_1x_coco.py │ ├── retinanet_r50_fpn_2x_coco.py │ ├── retinanet_r50_fpn_90k_coco.py │ ├── retinanet_r50_fpn_fp16_1x_coco.py │ ├── retinanet_r50_fpn_mstrain_640-800_3x_coco.py │ ├── retinanet_x101_32x4d_fpn_1x_coco.py │ ├── retinanet_x101_32x4d_fpn_2x_coco.py │ ├── retinanet_x101_64x4d_fpn_1x_coco.py │ ├── retinanet_x101_64x4d_fpn_2x_coco.py │ └── retinanet_x101_64x4d_fpn_mstrain_640-800_3x_coco.py ├── rfnext │ ├── README.md │ ├── metafile.yml │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.py │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.py │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_r2_101_fpn_20e_coco.py │ ├── rfnext_fixed_multi_branch_mask_rcnn_pvtv2-b0_fpn_1x_coco.py │ ├── rfnext_fixed_multi_branch_panoptic_fpn_r2_50_fpn_fp16_1x_coco.py │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.py │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.py │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_r2_101_fpn_20e_coco.py │ ├── rfnext_fixed_single_branch_mask_rcnn_pvtv2-b0_fpn_1x_coco.py │ ├── rfnext_fixed_single_branch_panoptic_fpn_r2_50_fpn_fp16_1x_coco.py │ ├── rfnext_search_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.py │ ├── rfnext_search_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.py │ ├── rfnext_search_cascade_mask_rcnn_r2_101_fpn_20e_coco.py │ ├── rfnext_search_mask_rcnn_pvtv2-b0_fpn_1x_coco.py │ ├── rfnext_search_panoptic_fpn_r2_50_fpn_fp16_1x_coco.py │ └── search_log │ │ ├── cascade_mask_rcnn_hrnetv2p_w18_20e_coco │ │ └── local_search_config_step11.json │ │ ├── cascade_mask_rcnn_r2_101_fpn_20e_coco │ │ └── local_search_config_step11.json │ │ ├── convnext_cascade_maskrcnn │ │ └── local_search_config_step11.json │ │ ├── mask_rcnn_pvtv2-b0_fpn_1x_coco │ │ └── local_search_config_step10.json │ │ └── panoptic_fpn_r2_50_fpn_fp16_1x_coco │ │ └── local_search_config_step10.json ├── rpn │ ├── README.md │ ├── rpn_r101_caffe_fpn_1x_coco.py │ ├── rpn_r101_fpn_1x_coco.py │ ├── rpn_r101_fpn_2x_coco.py │ ├── rpn_r50_caffe_c4_1x_coco.py │ ├── rpn_r50_caffe_fpn_1x_coco.py │ ├── rpn_r50_fpn_1x_coco.py │ ├── rpn_r50_fpn_2x_coco.py │ ├── rpn_x101_32x4d_fpn_1x_coco.py │ ├── rpn_x101_32x4d_fpn_2x_coco.py │ ├── rpn_x101_64x4d_fpn_1x_coco.py │ └── rpn_x101_64x4d_fpn_2x_coco.py ├── sabl │ ├── README.md │ ├── metafile.yml │ ├── sabl_cascade_rcnn_r101_fpn_1x_coco.py │ ├── sabl_cascade_rcnn_r50_fpn_1x_coco.py │ ├── sabl_faster_rcnn_r101_fpn_1x_coco.py │ ├── sabl_faster_rcnn_r50_fpn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_gn_1x_coco.py │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_480_960_coco.py │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_640_800_coco.py │ ├── sabl_retinanet_r50_fpn_1x_coco.py │ └── sabl_retinanet_r50_fpn_gn_1x_coco.py ├── scnet │ ├── README.md │ ├── metafile.yml │ ├── scnet_r101_fpn_20e_coco.py │ ├── scnet_r50_fpn_1x_coco.py │ ├── scnet_r50_fpn_20e_coco.py │ ├── scnet_x101_64x4d_fpn_20e_coco.py │ └── scnet_x101_64x4d_fpn_8x1_20e_coco.py ├── scratch │ ├── README.md │ ├── faster_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ ├── mask_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ └── metafile.yml ├── seesaw_loss │ ├── README.md │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.py │ ├── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.py │ └── metafile.yml ├── selfsup_pretrain │ ├── README.md │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_1x_coco.py │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_ms-2x_coco.py │ ├── mask_rcnn_r50_fpn_swav-pretrain_1x_coco.py │ └── mask_rcnn_r50_fpn_swav-pretrain_ms-2x_coco.py ├── simple_copy_paste │ ├── README.md │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_32x2_270k_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_32x2_90k_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_scp_32x2_270k_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_scp_32x2_90k_coco.py │ └── metafile.yml ├── solo │ ├── README.md │ ├── decoupled_solo_light_r50_fpn_3x_coco.py │ ├── decoupled_solo_r50_fpn_1x_coco.py │ ├── decoupled_solo_r50_fpn_3x_coco.py │ ├── metafile.yml │ ├── solo_r50_fpn_1x_coco.py │ └── solo_r50_fpn_3x_coco.py ├── solov2 │ ├── README.md │ ├── metafile.yml │ ├── solov2_light_r18_fpn_3x_coco.py │ ├── solov2_light_r34_fpn_3x_coco.py │ ├── solov2_light_r50_dcn_fpn_3x_coco.py │ ├── solov2_light_r50_fpn_3x_coco.py │ ├── solov2_r101_dcn_fpn_3x_coco.py │ ├── solov2_r101_fpn_3x_coco.py │ ├── solov2_r50_fpn_1x_coco.py │ ├── solov2_r50_fpn_3x_coco.py │ └── solov2_x101_dcn_fpn_3x_coco.py ├── sparse_rcnn │ ├── README.md │ ├── metafile.yml │ ├── sparse_rcnn_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ ├── sparse_rcnn_r101_fpn_mstrain_480-800_3x_coco.py │ ├── sparse_rcnn_r50_fpn_1x_coco.py │ ├── sparse_rcnn_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.py │ └── sparse_rcnn_r50_fpn_mstrain_480-800_3x_coco.py ├── ssd │ ├── README.md │ ├── ascend_ssd300_coco.py │ ├── metafile.yml │ ├── ssd300_coco.py │ ├── ssd300_fp16_coco.py │ ├── ssd512_coco.py │ ├── ssd512_fp16_coco.py │ └── ssdlite_mobilenetv2_scratch_600e_coco.py ├── strong_baselines │ ├── README.md │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.py │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.py │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_400e_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.py │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.py │ └── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_50e_coco.py ├── swin │ ├── README.md │ ├── mask_rcnn_swin-s-p4-w7_fpn_fp16_ms-crop-3x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_1x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_fp16_ms-crop-3x_coco.py │ ├── mask_rcnn_swin-t-p4-w7_fpn_ms-crop-3x_coco.py │ ├── metafile.yml │ └── retinanet_swin-t-p4-w7_fpn_1x_coco.py ├── timm_example │ ├── README.md │ ├── retinanet_timm_efficientnet_b1_fpn_1x_coco.py │ └── retinanet_timm_tv_resnet50_fpn_1x_coco.py ├── tood │ ├── README.md │ ├── metafile.yml │ ├── tood_r101_fpn_dconv_c3-c5_mstrain_2x_coco.py │ ├── tood_r101_fpn_mstrain_2x_coco.py │ ├── tood_r50_fpn_1x_coco.py │ ├── tood_r50_fpn_anchor_based_1x_coco.py │ ├── tood_r50_fpn_mstrain_2x_coco.py │ ├── tood_x101_64x4d_fpn_dconv_c4-c5_mstrain_2x_coco.py │ └── tood_x101_64x4d_fpn_mstrain_2x_coco.py ├── tridentnet │ ├── README.md │ ├── metafile.yml │ ├── tridentnet_r50_caffe_1x_coco.py │ ├── tridentnet_r50_caffe_mstrain_1x_coco.py │ └── tridentnet_r50_caffe_mstrain_3x_coco.py ├── vfnet │ ├── README.md │ ├── metafile.yml │ ├── vfnet_r101_fpn_1x_coco.py │ ├── vfnet_r101_fpn_2x_coco.py │ ├── vfnet_r101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r101_fpn_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r2_101_fpn_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_1x_coco.py │ ├── vfnet_r50_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_r50_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ ├── vfnet_x101_32x4d_fpn_mstrain_2x_coco.py │ ├── vfnet_x101_64x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.py │ └── vfnet_x101_64x4d_fpn_mstrain_2x_coco.py ├── wider_face │ ├── README.md │ └── ssd300_wider_face.py ├── yolact │ ├── README.md │ ├── metafile.yml │ ├── yolact_r101_1x8_coco.py │ ├── yolact_r50_1x8_coco.py │ └── yolact_r50_8x8_coco.py ├── yolo │ ├── README.md │ ├── metafile.yml │ ├── yolov3_d53_320_273e_coco.py │ ├── yolov3_d53_fp16_mstrain-608_273e_coco.py │ ├── yolov3_d53_mstrain-416_273e_coco.py │ ├── yolov3_d53_mstrain-608_273e_coco.py │ ├── yolov3_mobilenetv2_320_300e_coco.py │ └── yolov3_mobilenetv2_mstrain-416_300e_coco.py ├── yolof │ ├── README.md │ ├── metafile.yml │ ├── yolof_r50_c5_8x8_1x_coco.py │ └── yolof_r50_c5_8x8_iter-1x_coco.py └── yolox │ ├── README.md │ ├── metafile.yml │ ├── yolox_l_8x8_300e_coco.py │ ├── yolox_m_8x8_300e_coco.py │ ├── yolox_nano_8x8_300e_coco.py │ ├── yolox_s_8x8_300e_coco.py │ ├── yolox_tiny_8x8_300e_coco.py │ └── yolox_x_8x8_300e_coco.py ├── data └── put_coco_dir_here.txt ├── get_flops.sh ├── local_configs ├── _base_ │ ├── datasets │ │ ├── coco_detection.py │ │ ├── coco_instance.py │ │ └── coco_instance_semantic.py │ ├── default_runtime.py │ ├── models │ │ ├── mask_rcnn_spanet_fpn.py │ │ └── retinanet_spanet_fpn.py │ └── schedules │ │ ├── schedule_1x.py │ │ ├── schedule_20e.py │ │ └── schedule_2x.py └── spanet │ ├── M36 │ ├── mask_rcnn_spanet_m36_fpn_1x_coco.py │ └── retinanet_spanet_m36_fpn_1x_coco.py │ ├── S24 │ ├── mask_rcnn_spanet_s24_fpn_1x_coco_r1100.py │ └── retinanet_spanet_s24_fpn_1x_coco.py │ └── S36 │ ├── mask_rcnn_spanet_s36_fpn_1x_coco_r1100.py │ └── retinanet_spanet_s36_fpn_1x_coco_r1100.py ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── inference.cpython-310.pyc │ │ ├── test.cpython-310.pyc │ │ └── train.cpython-310.pyc │ ├── inference.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-310.pyc │ ├── anchor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── anchor_generator.cpython-310.pyc │ │ │ ├── builder.cpython-310.pyc │ │ │ ├── point_generator.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── builder.cpython-310.pyc │ │ │ ├── demodata.cpython-310.pyc │ │ │ └── transforms.cpython-310.pyc │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── approx_max_iou_assigner.cpython-310.pyc │ │ │ │ ├── ascend_assign_result.cpython-310.pyc │ │ │ │ ├── ascend_max_iou_assigner.cpython-310.pyc │ │ │ │ ├── assign_result.cpython-310.pyc │ │ │ │ ├── atss_assigner.cpython-310.pyc │ │ │ │ ├── base_assigner.cpython-310.pyc │ │ │ │ ├── center_region_assigner.cpython-310.pyc │ │ │ │ ├── grid_assigner.cpython-310.pyc │ │ │ │ ├── hungarian_assigner.cpython-310.pyc │ │ │ │ ├── mask_hungarian_assigner.cpython-310.pyc │ │ │ │ ├── max_iou_assigner.cpython-310.pyc │ │ │ │ ├── point_assigner.cpython-310.pyc │ │ │ │ ├── region_assigner.cpython-310.pyc │ │ │ │ ├── sim_ota_assigner.cpython-310.pyc │ │ │ │ ├── task_aligned_assigner.cpython-310.pyc │ │ │ │ └── uniform_assigner.cpython-310.pyc │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── ascend_assign_result.py │ │ │ ├── ascend_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── hungarian_assigner.py │ │ │ ├── mask_hungarian_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ ├── point_assigner.py │ │ │ ├── region_assigner.py │ │ │ ├── sim_ota_assigner.py │ │ │ ├── task_aligned_assigner.py │ │ │ └── uniform_assigner.py │ │ ├── builder.py │ │ ├── coder │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base_bbox_coder.cpython-310.pyc │ │ │ │ ├── bucketing_bbox_coder.cpython-310.pyc │ │ │ │ ├── delta_xywh_bbox_coder.cpython-310.pyc │ │ │ │ ├── distance_point_bbox_coder.cpython-310.pyc │ │ │ │ ├── legacy_delta_xywh_bbox_coder.cpython-310.pyc │ │ │ │ ├── pseudo_bbox_coder.cpython-310.pyc │ │ │ │ ├── tblr_bbox_coder.cpython-310.pyc │ │ │ │ └── yolo_bbox_coder.cpython-310.pyc │ │ │ ├── base_bbox_coder.py │ │ │ ├── bucketing_bbox_coder.py │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ ├── distance_point_bbox_coder.py │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ ├── pseudo_bbox_coder.py │ │ │ ├── tblr_bbox_coder.py │ │ │ └── yolo_bbox_coder.py │ │ ├── demodata.py │ │ ├── iou_calculators │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── builder.cpython-310.pyc │ │ │ │ └── iou2d_calculator.cpython-310.pyc │ │ │ ├── builder.py │ │ │ └── iou2d_calculator.py │ │ ├── match_costs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── builder.cpython-310.pyc │ │ │ │ └── match_cost.cpython-310.pyc │ │ │ ├── builder.py │ │ │ └── match_cost.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base_sampler.cpython-310.pyc │ │ │ │ ├── combined_sampler.cpython-310.pyc │ │ │ │ ├── instance_balanced_pos_sampler.cpython-310.pyc │ │ │ │ ├── iou_balanced_neg_sampler.cpython-310.pyc │ │ │ │ ├── mask_pseudo_sampler.cpython-310.pyc │ │ │ │ ├── mask_sampling_result.cpython-310.pyc │ │ │ │ ├── ohem_sampler.cpython-310.pyc │ │ │ │ ├── pseudo_sampler.cpython-310.pyc │ │ │ │ ├── random_sampler.cpython-310.pyc │ │ │ │ ├── sampling_result.cpython-310.pyc │ │ │ │ └── score_hlr_sampler.cpython-310.pyc │ │ │ ├── base_sampler.py │ │ │ ├── combined_sampler.py │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ ├── mask_pseudo_sampler.py │ │ │ ├── mask_sampling_result.py │ │ │ ├── ohem_sampler.py │ │ │ ├── pseudo_sampler.py │ │ │ ├── random_sampler.py │ │ │ ├── sampling_result.py │ │ │ └── score_hlr_sampler.py │ │ └── transforms.py │ ├── data_structures │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── general_data.cpython-310.pyc │ │ │ └── instance_data.cpython-310.pyc │ │ ├── general_data.py │ │ └── instance_data.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── bbox_overlaps.cpython-310.pyc │ │ │ ├── class_names.cpython-310.pyc │ │ │ ├── eval_hooks.cpython-310.pyc │ │ │ ├── mean_ap.cpython-310.pyc │ │ │ ├── panoptic_utils.cpython-310.pyc │ │ │ └── recall.cpython-310.pyc │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ ├── panoptic_utils.py │ │ └── recall.py │ ├── export │ │ ├── __init__.py │ │ ├── model_wrappers.py │ │ ├── onnx_helper.py │ │ └── pytorch2onnx.py │ ├── hook │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── checkloss_hook.cpython-310.pyc │ │ │ ├── ema.cpython-310.pyc │ │ │ ├── memory_profiler_hook.cpython-310.pyc │ │ │ ├── set_epoch_info_hook.cpython-310.pyc │ │ │ ├── sync_norm_hook.cpython-310.pyc │ │ │ ├── sync_random_size_hook.cpython-310.pyc │ │ │ ├── wandblogger_hook.cpython-310.pyc │ │ │ ├── yolox_lrupdater_hook.cpython-310.pyc │ │ │ └── yolox_mode_switch_hook.cpython-310.pyc │ │ ├── checkloss_hook.py │ │ ├── ema.py │ │ ├── memory_profiler_hook.py │ │ ├── set_epoch_info_hook.py │ │ ├── sync_norm_hook.py │ │ ├── sync_random_size_hook.py │ │ ├── wandblogger_hook.py │ │ ├── yolox_lrupdater_hook.py │ │ └── yolox_mode_switch_hook.py │ ├── mask │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── mask_target.cpython-310.pyc │ │ │ ├── structures.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── builder.cpython-310.pyc │ │ │ └── layer_decay_optimizer_constructor.cpython-310.pyc │ │ ├── builder.py │ │ └── layer_decay_optimizer_constructor.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── bbox_nms.cpython-310.pyc │ │ │ ├── matrix_nms.cpython-310.pyc │ │ │ └── merge_augs.cpython-310.pyc │ │ ├── bbox_nms.py │ │ ├── matrix_nms.py │ │ └── merge_augs.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── dist_utils.cpython-310.pyc │ │ │ └── misc.cpython-310.pyc │ │ ├── dist_utils.py │ │ └── misc.py │ └── visualization │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── image.cpython-310.pyc │ │ └── palette.cpython-310.pyc │ │ ├── image.py │ │ └── palette.py ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── builder.cpython-310.pyc │ │ ├── cityscapes.cpython-310.pyc │ │ ├── coco.cpython-310.pyc │ │ ├── coco_occluded.cpython-310.pyc │ │ ├── coco_panoptic.cpython-310.pyc │ │ ├── custom.cpython-310.pyc │ │ ├── dataset_wrappers.cpython-310.pyc │ │ ├── deepfashion.cpython-310.pyc │ │ ├── lvis.cpython-310.pyc │ │ ├── objects365.cpython-310.pyc │ │ ├── openimages.cpython-310.pyc │ │ ├── utils.cpython-310.pyc │ │ ├── voc.cpython-310.pyc │ │ ├── wider_face.cpython-310.pyc │ │ └── xml_style.cpython-310.pyc │ ├── api_wrappers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── coco_api.cpython-310.pyc │ │ │ └── panoptic_evaluation.cpython-310.pyc │ │ ├── coco_api.py │ │ └── panoptic_evaluation.py │ ├── builder.py │ ├── cityscapes.py │ ├── coco.py │ ├── coco_occluded.py │ ├── coco_panoptic.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── deepfashion.py │ ├── lvis.py │ ├── objects365.py │ ├── openimages.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── auto_augment.cpython-310.pyc │ │ │ ├── compose.cpython-310.pyc │ │ │ ├── formatting.cpython-310.pyc │ │ │ ├── instaboost.cpython-310.pyc │ │ │ ├── loading.cpython-310.pyc │ │ │ ├── test_time_aug.cpython-310.pyc │ │ │ └── transforms.cpython-310.pyc │ │ ├── auto_augment.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── formatting.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── samplers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── class_aware_sampler.cpython-310.pyc │ │ │ ├── distributed_sampler.cpython-310.pyc │ │ │ ├── group_sampler.cpython-310.pyc │ │ │ └── infinite_sampler.cpython-310.pyc │ │ ├── class_aware_sampler.py │ │ ├── distributed_sampler.py │ │ ├── group_sampler.py │ │ └── infinite_sampler.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── builder.cpython-310.pyc │ ├── backbones │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── csp_darknet.cpython-310.pyc │ │ │ ├── darknet.cpython-310.pyc │ │ │ ├── detectors_resnet.cpython-310.pyc │ │ │ ├── detectors_resnext.cpython-310.pyc │ │ │ ├── efficientnet.cpython-310.pyc │ │ │ ├── hourglass.cpython-310.pyc │ │ │ ├── hrnet.cpython-310.pyc │ │ │ ├── mobilenet_v2.cpython-310.pyc │ │ │ ├── pvt.cpython-310.pyc │ │ │ ├── regnet.cpython-310.pyc │ │ │ ├── res2net.cpython-310.pyc │ │ │ ├── resnest.cpython-310.pyc │ │ │ ├── resnet.cpython-310.pyc │ │ │ ├── resnext.cpython-310.pyc │ │ │ ├── spanet.cpython-310.pyc │ │ │ ├── ssd_vgg.cpython-310.pyc │ │ │ ├── swin.cpython-310.pyc │ │ │ └── trident_resnet.cpython-310.pyc │ │ ├── csp_darknet.py │ │ ├── darknet.py │ │ ├── detectors_resnet.py │ │ ├── detectors_resnext.py │ │ ├── efficientnet.py │ │ ├── hourglass.py │ │ ├── hrnet.py │ │ ├── mobilenet_v2.py │ │ ├── pvt.py │ │ ├── regnet.py │ │ ├── res2net.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── spanet.py │ │ ├── ssd_vgg.py │ │ ├── swin.py │ │ └── trident_resnet.py │ ├── builder.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── anchor_free_head.cpython-310.pyc │ │ │ ├── anchor_head.cpython-310.pyc │ │ │ ├── ascend_anchor_head.cpython-310.pyc │ │ │ ├── ascend_retina_head.cpython-310.pyc │ │ │ ├── ascend_ssd_head.cpython-310.pyc │ │ │ ├── atss_head.cpython-310.pyc │ │ │ ├── autoassign_head.cpython-310.pyc │ │ │ ├── base_dense_head.cpython-310.pyc │ │ │ ├── base_mask_head.cpython-310.pyc │ │ │ ├── cascade_rpn_head.cpython-310.pyc │ │ │ ├── centernet_head.cpython-310.pyc │ │ │ ├── centripetal_head.cpython-310.pyc │ │ │ ├── corner_head.cpython-310.pyc │ │ │ ├── ddod_head.cpython-310.pyc │ │ │ ├── deformable_detr_head.cpython-310.pyc │ │ │ ├── dense_test_mixins.cpython-310.pyc │ │ │ ├── detr_head.cpython-310.pyc │ │ │ ├── embedding_rpn_head.cpython-310.pyc │ │ │ ├── fcos_head.cpython-310.pyc │ │ │ ├── fovea_head.cpython-310.pyc │ │ │ ├── free_anchor_retina_head.cpython-310.pyc │ │ │ ├── fsaf_head.cpython-310.pyc │ │ │ ├── ga_retina_head.cpython-310.pyc │ │ │ ├── ga_rpn_head.cpython-310.pyc │ │ │ ├── gfl_head.cpython-310.pyc │ │ │ ├── guided_anchor_head.cpython-310.pyc │ │ │ ├── lad_head.cpython-310.pyc │ │ │ ├── ld_head.cpython-310.pyc │ │ │ ├── mask2former_head.cpython-310.pyc │ │ │ ├── maskformer_head.cpython-310.pyc │ │ │ ├── nasfcos_head.cpython-310.pyc │ │ │ ├── paa_head.cpython-310.pyc │ │ │ ├── pisa_retinanet_head.cpython-310.pyc │ │ │ ├── pisa_ssd_head.cpython-310.pyc │ │ │ ├── reppoints_head.cpython-310.pyc │ │ │ ├── retina_head.cpython-310.pyc │ │ │ ├── retina_sepbn_head.cpython-310.pyc │ │ │ ├── rpn_head.cpython-310.pyc │ │ │ ├── sabl_retina_head.cpython-310.pyc │ │ │ ├── solo_head.cpython-310.pyc │ │ │ ├── solov2_head.cpython-310.pyc │ │ │ ├── ssd_head.cpython-310.pyc │ │ │ ├── tood_head.cpython-310.pyc │ │ │ ├── vfnet_head.cpython-310.pyc │ │ │ ├── yolact_head.cpython-310.pyc │ │ │ ├── yolo_head.cpython-310.pyc │ │ │ ├── yolof_head.cpython-310.pyc │ │ │ └── yolox_head.cpython-310.pyc │ │ ├── anchor_free_head.py │ │ ├── anchor_head.py │ │ ├── ascend_anchor_head.py │ │ ├── ascend_retina_head.py │ │ ├── ascend_ssd_head.py │ │ ├── atss_head.py │ │ ├── autoassign_head.py │ │ ├── base_dense_head.py │ │ ├── base_mask_head.py │ │ ├── cascade_rpn_head.py │ │ ├── centernet_head.py │ │ ├── centripetal_head.py │ │ ├── corner_head.py │ │ ├── ddod_head.py │ │ ├── deformable_detr_head.py │ │ ├── dense_test_mixins.py │ │ ├── detr_head.py │ │ ├── embedding_rpn_head.py │ │ ├── fcos_head.py │ │ ├── fovea_head.py │ │ ├── free_anchor_retina_head.py │ │ ├── fsaf_head.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── gfl_head.py │ │ ├── guided_anchor_head.py │ │ ├── lad_head.py │ │ ├── ld_head.py │ │ ├── mask2former_head.py │ │ ├── maskformer_head.py │ │ ├── nasfcos_head.py │ │ ├── paa_head.py │ │ ├── pisa_retinanet_head.py │ │ ├── pisa_ssd_head.py │ │ ├── reppoints_head.py │ │ ├── retina_head.py │ │ ├── retina_sepbn_head.py │ │ ├── rpn_head.py │ │ ├── sabl_retina_head.py │ │ ├── solo_head.py │ │ ├── solov2_head.py │ │ ├── ssd_head.py │ │ ├── tood_head.py │ │ ├── vfnet_head.py │ │ ├── yolact_head.py │ │ ├── yolo_head.py │ │ ├── yolof_head.py │ │ └── yolox_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── atss.cpython-310.pyc │ │ │ ├── autoassign.cpython-310.pyc │ │ │ ├── base.cpython-310.pyc │ │ │ ├── cascade_rcnn.cpython-310.pyc │ │ │ ├── centernet.cpython-310.pyc │ │ │ ├── cornernet.cpython-310.pyc │ │ │ ├── ddod.cpython-310.pyc │ │ │ ├── deformable_detr.cpython-310.pyc │ │ │ ├── detr.cpython-310.pyc │ │ │ ├── fast_rcnn.cpython-310.pyc │ │ │ ├── faster_rcnn.cpython-310.pyc │ │ │ ├── fcos.cpython-310.pyc │ │ │ ├── fovea.cpython-310.pyc │ │ │ ├── fsaf.cpython-310.pyc │ │ │ ├── gfl.cpython-310.pyc │ │ │ ├── grid_rcnn.cpython-310.pyc │ │ │ ├── htc.cpython-310.pyc │ │ │ ├── kd_one_stage.cpython-310.pyc │ │ │ ├── lad.cpython-310.pyc │ │ │ ├── mask2former.cpython-310.pyc │ │ │ ├── mask_rcnn.cpython-310.pyc │ │ │ ├── mask_scoring_rcnn.cpython-310.pyc │ │ │ ├── maskformer.cpython-310.pyc │ │ │ ├── nasfcos.cpython-310.pyc │ │ │ ├── paa.cpython-310.pyc │ │ │ ├── panoptic_fpn.cpython-310.pyc │ │ │ ├── panoptic_two_stage_segmentor.cpython-310.pyc │ │ │ ├── point_rend.cpython-310.pyc │ │ │ ├── queryinst.cpython-310.pyc │ │ │ ├── reppoints_detector.cpython-310.pyc │ │ │ ├── retinanet.cpython-310.pyc │ │ │ ├── rpn.cpython-310.pyc │ │ │ ├── scnet.cpython-310.pyc │ │ │ ├── single_stage.cpython-310.pyc │ │ │ ├── single_stage_instance_seg.cpython-310.pyc │ │ │ ├── solo.cpython-310.pyc │ │ │ ├── solov2.cpython-310.pyc │ │ │ ├── sparse_rcnn.cpython-310.pyc │ │ │ ├── tood.cpython-310.pyc │ │ │ ├── trident_faster_rcnn.cpython-310.pyc │ │ │ ├── two_stage.cpython-310.pyc │ │ │ ├── vfnet.cpython-310.pyc │ │ │ ├── yolact.cpython-310.pyc │ │ │ ├── yolo.cpython-310.pyc │ │ │ ├── yolof.cpython-310.pyc │ │ │ └── yolox.cpython-310.pyc │ │ ├── atss.py │ │ ├── autoassign.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── centernet.py │ │ ├── cornernet.py │ │ ├── ddod.py │ │ ├── deformable_detr.py │ │ ├── detr.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── fsaf.py │ │ ├── gfl.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── kd_one_stage.py │ │ ├── lad.py │ │ ├── mask2former.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── maskformer.py │ │ ├── nasfcos.py │ │ ├── paa.py │ │ ├── panoptic_fpn.py │ │ ├── panoptic_two_stage_segmentor.py │ │ ├── point_rend.py │ │ ├── queryinst.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── scnet.py │ │ ├── single_stage.py │ │ ├── single_stage_instance_seg.py │ │ ├── solo.py │ │ ├── solov2.py │ │ ├── sparse_rcnn.py │ │ ├── tood.py │ │ ├── trident_faster_rcnn.py │ │ ├── two_stage.py │ │ ├── vfnet.py │ │ ├── yolact.py │ │ ├── yolo.py │ │ ├── yolof.py │ │ └── yolox.py │ ├── losses │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── accuracy.cpython-310.pyc │ │ │ ├── ae_loss.cpython-310.pyc │ │ │ ├── balanced_l1_loss.cpython-310.pyc │ │ │ ├── cross_entropy_loss.cpython-310.pyc │ │ │ ├── dice_loss.cpython-310.pyc │ │ │ ├── focal_loss.cpython-310.pyc │ │ │ ├── gaussian_focal_loss.cpython-310.pyc │ │ │ ├── gfocal_loss.cpython-310.pyc │ │ │ ├── ghm_loss.cpython-310.pyc │ │ │ ├── iou_loss.cpython-310.pyc │ │ │ ├── kd_loss.cpython-310.pyc │ │ │ ├── mse_loss.cpython-310.pyc │ │ │ ├── pisa_loss.cpython-310.pyc │ │ │ ├── seesaw_loss.cpython-310.pyc │ │ │ ├── smooth_l1_loss.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ └── varifocal_loss.cpython-310.pyc │ │ ├── accuracy.py │ │ ├── ae_loss.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ ├── focal_loss.py │ │ ├── gaussian_focal_loss.py │ │ ├── gfocal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── kd_loss.py │ │ ├── mse_loss.py │ │ ├── pisa_loss.py │ │ ├── seesaw_loss.py │ │ ├── smooth_l1_loss.py │ │ ├── utils.py │ │ └── varifocal_loss.py │ ├── necks │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── bfp.cpython-310.pyc │ │ │ ├── channel_mapper.cpython-310.pyc │ │ │ ├── ct_resnet_neck.cpython-310.pyc │ │ │ ├── dilated_encoder.cpython-310.pyc │ │ │ ├── dyhead.cpython-310.pyc │ │ │ ├── fpg.cpython-310.pyc │ │ │ ├── fpn.cpython-310.pyc │ │ │ ├── fpn_carafe.cpython-310.pyc │ │ │ ├── hrfpn.cpython-310.pyc │ │ │ ├── nas_fpn.cpython-310.pyc │ │ │ ├── nasfcos_fpn.cpython-310.pyc │ │ │ ├── pafpn.cpython-310.pyc │ │ │ ├── rfp.cpython-310.pyc │ │ │ ├── ssd_neck.cpython-310.pyc │ │ │ ├── yolo_neck.cpython-310.pyc │ │ │ └── yolox_pafpn.cpython-310.pyc │ │ ├── bfp.py │ │ ├── channel_mapper.py │ │ ├── ct_resnet_neck.py │ │ ├── dilated_encoder.py │ │ ├── dyhead.py │ │ ├── fpg.py │ │ ├── fpn.py │ │ ├── fpn_carafe.py │ │ ├── hrfpn.py │ │ ├── nas_fpn.py │ │ ├── nasfcos_fpn.py │ │ ├── pafpn.py │ │ ├── rfp.py │ │ ├── ssd_neck.py │ │ ├── yolo_neck.py │ │ └── yolox_pafpn.py │ ├── plugins │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── dropblock.cpython-310.pyc │ │ │ ├── msdeformattn_pixel_decoder.cpython-310.pyc │ │ │ └── pixel_decoder.cpython-310.pyc │ │ ├── dropblock.py │ │ ├── msdeformattn_pixel_decoder.py │ │ └── pixel_decoder.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── base_roi_head.cpython-310.pyc │ │ │ ├── cascade_roi_head.cpython-310.pyc │ │ │ ├── double_roi_head.cpython-310.pyc │ │ │ ├── dynamic_roi_head.cpython-310.pyc │ │ │ ├── grid_roi_head.cpython-310.pyc │ │ │ ├── htc_roi_head.cpython-310.pyc │ │ │ ├── mask_scoring_roi_head.cpython-310.pyc │ │ │ ├── pisa_roi_head.cpython-310.pyc │ │ │ ├── point_rend_roi_head.cpython-310.pyc │ │ │ ├── scnet_roi_head.cpython-310.pyc │ │ │ ├── sparse_roi_head.cpython-310.pyc │ │ │ ├── standard_roi_head.cpython-310.pyc │ │ │ ├── test_mixins.cpython-310.pyc │ │ │ └── trident_roi_head.cpython-310.pyc │ │ ├── base_roi_head.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── bbox_head.cpython-310.pyc │ │ │ │ ├── convfc_bbox_head.cpython-310.pyc │ │ │ │ ├── dii_head.cpython-310.pyc │ │ │ │ ├── double_bbox_head.cpython-310.pyc │ │ │ │ ├── sabl_head.cpython-310.pyc │ │ │ │ └── scnet_bbox_head.cpython-310.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── coarse_mask_head.cpython-310.pyc │ │ │ │ ├── dynamic_mask_head.cpython-310.pyc │ │ │ │ ├── fcn_mask_head.cpython-310.pyc │ │ │ │ ├── feature_relay_head.cpython-310.pyc │ │ │ │ ├── fused_semantic_head.cpython-310.pyc │ │ │ │ ├── global_context_head.cpython-310.pyc │ │ │ │ ├── grid_head.cpython-310.pyc │ │ │ │ ├── htc_mask_head.cpython-310.pyc │ │ │ │ ├── mask_point_head.cpython-310.pyc │ │ │ │ ├── maskiou_head.cpython-310.pyc │ │ │ │ ├── scnet_mask_head.cpython-310.pyc │ │ │ │ └── scnet_semantic_head.cpython-310.pyc │ │ │ ├── coarse_mask_head.py │ │ │ ├── dynamic_mask_head.py │ │ │ ├── fcn_mask_head.py │ │ │ ├── feature_relay_head.py │ │ │ ├── fused_semantic_head.py │ │ │ ├── global_context_head.py │ │ │ ├── grid_head.py │ │ │ ├── htc_mask_head.py │ │ │ ├── mask_point_head.py │ │ │ ├── maskiou_head.py │ │ │ ├── scnet_mask_head.py │ │ │ └── scnet_semantic_head.py │ │ ├── mask_scoring_roi_head.py │ │ ├── pisa_roi_head.py │ │ ├── point_rend_roi_head.py │ │ ├── roi_extractors │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base_roi_extractor.cpython-310.pyc │ │ │ │ ├── generic_roi_extractor.cpython-310.pyc │ │ │ │ └── single_level_roi_extractor.cpython-310.pyc │ │ │ ├── base_roi_extractor.py │ │ │ ├── generic_roi_extractor.py │ │ │ └── single_level_roi_extractor.py │ │ ├── scnet_roi_head.py │ │ ├── shared_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── res_layer.cpython-310.pyc │ │ │ └── res_layer.py │ │ ├── sparse_roi_head.py │ │ ├── standard_roi_head.py │ │ ├── test_mixins.py │ │ └── trident_roi_head.py │ ├── seg_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── base_semantic_head.cpython-310.pyc │ │ │ └── panoptic_fpn_head.cpython-310.pyc │ │ ├── base_semantic_head.py │ │ ├── panoptic_fpn_head.py │ │ └── panoptic_fusion_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── base_panoptic_fusion_head.cpython-310.pyc │ │ │ ├── heuristic_fusion_head.cpython-310.pyc │ │ │ └── maskformer_fusion_head.cpython-310.pyc │ │ │ ├── base_panoptic_fusion_head.py │ │ │ ├── heuristic_fusion_head.py │ │ │ └── maskformer_fusion_head.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── brick_wrappers.cpython-310.pyc │ │ ├── builder.cpython-310.pyc │ │ ├── ckpt_convert.cpython-310.pyc │ │ ├── conv_upsample.cpython-310.pyc │ │ ├── csp_layer.cpython-310.pyc │ │ ├── gaussian_target.cpython-310.pyc │ │ ├── inverted_residual.cpython-310.pyc │ │ ├── make_divisible.cpython-310.pyc │ │ ├── misc.cpython-310.pyc │ │ ├── normed_predictor.cpython-310.pyc │ │ ├── panoptic_gt_processing.cpython-310.pyc │ │ ├── point_sample.cpython-310.pyc │ │ ├── positional_encoding.cpython-310.pyc │ │ ├── res_layer.cpython-310.pyc │ │ ├── se_layer.cpython-310.pyc │ │ └── transformer.cpython-310.pyc │ │ ├── brick_wrappers.py │ │ ├── builder.py │ │ ├── ckpt_convert.py │ │ ├── conv_upsample.py │ │ ├── csp_layer.py │ │ ├── gaussian_target.py │ │ ├── inverted_residual.py │ │ ├── make_divisible.py │ │ ├── misc.py │ │ ├── normed_predictor.py │ │ ├── panoptic_gt_processing.py │ │ ├── point_sample.py │ │ ├── positional_encoding.py │ │ ├── res_layer.py │ │ ├── se_layer.py │ │ └── transformer.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── ascend_util.cpython-310.pyc │ │ ├── collect_env.cpython-310.pyc │ │ ├── compat_config.cpython-310.pyc │ │ ├── contextmanagers.cpython-310.pyc │ │ ├── logger.cpython-310.pyc │ │ ├── memory.cpython-310.pyc │ │ ├── misc.cpython-310.pyc │ │ ├── replace_cfg_vals.cpython-310.pyc │ │ ├── rfnext.cpython-310.pyc │ │ ├── setup_env.cpython-310.pyc │ │ ├── split_batch.cpython-310.pyc │ │ ├── util_distribution.cpython-310.pyc │ │ ├── util_mixins.cpython-310.pyc │ │ └── util_random.cpython-310.pyc │ ├── ascend_util.py │ ├── collect_env.py │ ├── compat_config.py │ ├── contextmanagers.py │ ├── logger.py │ ├── memory.py │ ├── misc.py │ ├── profiling.py │ ├── replace_cfg_vals.py │ ├── rfnext.py │ ├── setup_env.py │ ├── split_batch.py │ ├── util_distribution.py │ ├── util_mixins.py │ └── util_random.py └── version.py ├── requirements.txt ├── requirements ├── albu.txt ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── coco_test_12510.jpg ├── corruptions_sev_3.png ├── data_pipeline.png ├── loss_curve.png ├── mmdet-logo.png └── zhihu_qrcode.jpg ├── results.pkl ├── run_eval.sh ├── run_train.sh ├── setup.py ├── tests ├── data │ ├── VOCdevkit │ │ ├── VOC2007 │ │ │ ├── Annotations │ │ │ │ └── 000001.xml │ │ │ ├── ImageSets │ │ │ │ └── Main │ │ │ │ │ ├── test.txt │ │ │ │ │ └── trainval.txt │ │ │ └── JPEGImages │ │ │ │ └── 000001.jpg │ │ └── VOC2012 │ │ │ ├── Annotations │ │ │ └── 000001.xml │ │ │ ├── ImageSets │ │ │ └── Main │ │ │ │ ├── test.txt │ │ │ │ └── trainval.txt │ │ │ └── JPEGImages │ │ │ └── 000001.jpg │ ├── coco_sample.json │ ├── color.jpg │ ├── configs_mmtrack │ │ ├── faster_rcnn_r50_dc5.py │ │ ├── faster_rcnn_r50_fpn.py │ │ ├── mot_challenge.py │ │ ├── selsa_faster_rcnn_r101_dc5_1x.py │ │ └── tracktor_faster-rcnn_r50_fpn_4e.py │ ├── custom_dataset │ │ ├── images │ │ │ ├── 000001.jpg │ │ │ └── 000001.xml │ │ ├── test.txt │ │ └── trainval.txt │ └── gray.jpg ├── test_data │ ├── test_datasets │ │ ├── test_coco_dataset.py │ │ ├── test_coco_occluded.py │ │ ├── test_common.py │ │ ├── test_custom_dataset.py │ │ ├── test_dataset_wrapper.py │ │ ├── test_objects365.py │ │ ├── test_openimages_dataset.py │ │ ├── test_panoptic_dataset.py │ │ └── test_xml_dataset.py │ ├── test_pipelines │ │ ├── test_formatting.py │ │ ├── test_loading.py │ │ ├── test_sampler.py │ │ └── test_transform │ │ │ ├── __init__.py │ │ │ ├── test_img_augment.py │ │ │ ├── test_models_aug_test.py │ │ │ ├── test_rotate.py │ │ │ ├── test_shear.py │ │ │ ├── test_transform.py │ │ │ ├── test_translate.py │ │ │ └── utils.py │ └── test_utils.py ├── test_downstream │ └── test_mmtrack.py ├── test_metrics │ ├── test_box_overlap.py │ ├── test_losses.py │ ├── test_mean_ap.py │ └── test_recall.py ├── test_models │ ├── test_backbones │ │ ├── __init__.py │ │ ├── test_csp_darknet.py │ │ ├── test_detectors_resnet.py │ │ ├── test_efficientnet.py │ │ ├── test_hourglass.py │ │ ├── test_hrnet.py │ │ ├── test_mobilenet_v2.py │ │ ├── test_pvt.py │ │ ├── test_regnet.py │ │ ├── test_renext.py │ │ ├── test_res2net.py │ │ ├── test_resnest.py │ │ ├── test_resnet.py │ │ ├── test_swin.py │ │ ├── test_trident_resnet.py │ │ └── utils.py │ ├── test_dense_heads │ │ ├── test_anchor_head.py │ │ ├── test_ascend_head.py │ │ ├── test_atss_head.py │ │ ├── test_autoassign_head.py │ │ ├── test_centernet_head.py │ │ ├── test_corner_head.py │ │ ├── test_ddod_head.py │ │ ├── test_dense_heads_attr.py │ │ ├── test_detr_head.py │ │ ├── test_fcos_head.py │ │ ├── test_fsaf_head.py │ │ ├── test_ga_anchor_head.py │ │ ├── test_gfl_head.py │ │ ├── test_lad_head.py │ │ ├── test_ld_head.py │ │ ├── test_mask2former_head.py │ │ ├── test_maskformer_head.py │ │ ├── test_paa_head.py │ │ ├── test_pisa_head.py │ │ ├── test_sabl_retina_head.py │ │ ├── test_solo_head.py │ │ ├── test_tood_head.py │ │ ├── test_vfnet_head.py │ │ ├── test_yolact_head.py │ │ ├── test_yolof_head.py │ │ └── test_yolox_head.py │ ├── test_forward.py │ ├── test_loss.py │ ├── test_loss_compatibility.py │ ├── test_necks.py │ ├── test_plugins.py │ ├── test_roi_heads │ │ ├── __init__.py │ │ ├── test_bbox_head.py │ │ ├── test_mask_head.py │ │ ├── test_roi_extractor.py │ │ ├── test_sabl_bbox_head.py │ │ └── utils.py │ ├── test_seg_heads │ │ └── test_maskformer_fusion_head.py │ └── test_utils │ │ ├── test_brick_wrappers.py │ │ ├── test_conv_upsample.py │ │ ├── test_inverted_residual.py │ │ ├── test_model_misc.py │ │ ├── test_position_encoding.py │ │ ├── test_se_layer.py │ │ └── test_transformer.py ├── test_onnx │ ├── __init__.py │ ├── data │ │ ├── fsaf_head_get_bboxes.pkl │ │ ├── retina_head_get_bboxes.pkl │ │ ├── ssd_head_get_bboxes.pkl │ │ ├── yolov3_head_get_bboxes.pkl │ │ └── yolov3_neck.pkl │ ├── test_head.py │ ├── test_neck.py │ └── utils.py ├── test_runtime │ ├── async_benchmark.py │ ├── test_apis.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_compat_config.py │ ├── test_general_data.py │ ├── test_hook.py │ ├── test_layer_decay_optimizer_constructor.py │ ├── test_logger.py │ ├── test_masks.py │ ├── test_memory.py │ ├── test_misc.py │ ├── test_nms.py │ ├── test_replace_cfg_vals.py │ ├── test_setup_env.py │ ├── test_split_batch.py │ ├── test_version.py │ └── test_visualization.py ├── tools ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── coco_error_analysis.py │ ├── coco_occluded_separated_recall.py │ ├── confusion_matrix.py │ ├── eval_metric.py │ ├── get_flops.py │ ├── optimize_anchors.py │ ├── robustness_eval.py │ └── test_robustness.py ├── dataset_converters │ ├── cityscapes.py │ ├── images2coco.py │ └── pascal_voc.py ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ ├── onnx2tensorrt.py │ ├── pytorch2onnx.py │ ├── test.py │ └── test_torchserver.py ├── dist_test.sh ├── dist_train.sh ├── misc │ ├── browse_dataset.py │ ├── download_dataset.py │ ├── gen_coco_panoptic_test_info.py │ ├── get_image_metas.py │ ├── print_config.py │ └── split_coco.py ├── model_converters │ ├── detectron2pytorch.py │ ├── publish_model.py │ ├── regnet2mmdet.py │ ├── selfsup2mmdet.py │ ├── upgrade_model_version.py │ └── upgrade_ssd_version.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py └── work_dirs └── put_trained_weights.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/README.md -------------------------------------------------------------------------------- /image_classification/FLOPs_count.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/FLOPs_count.ipynb -------------------------------------------------------------------------------- /image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/distributed_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/distributed_train.sh -------------------------------------------------------------------------------- /image_classification/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/README.md -------------------------------------------------------------------------------- /image_classification/misc/demo_spanet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/demo_spanet.ipynb -------------------------------------------------------------------------------- /image_classification/misc/scoreCAM_demo/demo_score-cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/scoreCAM_demo/demo_score-cam.py -------------------------------------------------------------------------------- /image_classification/misc/scoreCAM_demo/sample_imgs/drum.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/scoreCAM_demo/sample_imgs/drum.JPEG -------------------------------------------------------------------------------- /image_classification/misc/scoreCAM_demo/sample_imgs/tabby.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/scoreCAM_demo/sample_imgs/tabby.JPEG -------------------------------------------------------------------------------- /image_classification/misc/scoreCAM_demo/spanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/misc/scoreCAM_demo/spanet.py -------------------------------------------------------------------------------- /image_classification/scripts/spanet/train_spanet_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/scripts/spanet/train_spanet_base.sh -------------------------------------------------------------------------------- /image_classification/scripts/spanet/train_spanet_baseX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/scripts/spanet/train_spanet_baseX.sh -------------------------------------------------------------------------------- /image_classification/scripts/spanet/train_spanet_medium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/scripts/spanet/train_spanet_medium.sh -------------------------------------------------------------------------------- /image_classification/scripts/spanet/train_spanet_mediumX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/scripts/spanet/train_spanet_mediumX.sh -------------------------------------------------------------------------------- /image_classification/scripts/spanet/train_spanet_small.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/scripts/spanet/train_spanet_small.sh -------------------------------------------------------------------------------- /image_classification/spanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/spanet.py -------------------------------------------------------------------------------- /image_classification/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/train.py -------------------------------------------------------------------------------- /image_classification/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/utils.py -------------------------------------------------------------------------------- /image_classification/val.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/val.sh -------------------------------------------------------------------------------- /image_classification/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/image_classification/validate.py -------------------------------------------------------------------------------- /object_detection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/LICENSE -------------------------------------------------------------------------------- /object_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/README.md -------------------------------------------------------------------------------- /object_detection/ckpt/custom_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/ckpt/custom_ckpt.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/ascend_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/ascend_ssd300.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/cascade_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/cascade_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /object_detection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /object_detection/configs/albu_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/albu_example/README.md -------------------------------------------------------------------------------- /object_detection/configs/atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/atss/README.md -------------------------------------------------------------------------------- /object_detection/configs/atss/atss_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/atss/atss_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/atss/atss_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/atss/atss_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/atss/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/autoassign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/autoassign/README.md -------------------------------------------------------------------------------- /object_detection/configs/autoassign/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/autoassign/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/carafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/carafe/README.md -------------------------------------------------------------------------------- /object_detection/configs/carafe/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/carafe/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/cascade_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cascade_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/cascade_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cascade_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/cascade_rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cascade_rpn/README.md -------------------------------------------------------------------------------- /object_detection/configs/cascade_rpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cascade_rpn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/centernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/centernet/README.md -------------------------------------------------------------------------------- /object_detection/configs/centernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/centernet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/centripetalnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/centripetalnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/centripetalnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/centripetalnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cityscapes/README.md -------------------------------------------------------------------------------- /object_detection/configs/common/lsj_100e_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/common/lsj_100e_coco_instance.py -------------------------------------------------------------------------------- /object_detection/configs/common/mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/common/mstrain_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/common/mstrain_3x_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/common/mstrain_3x_coco_instance.py -------------------------------------------------------------------------------- /object_detection/configs/common/ssj_270k_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/common/ssj_270k_coco_instance.py -------------------------------------------------------------------------------- /object_detection/configs/common/ssj_scp_270k_coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/common/ssj_scp_270k_coco_instance.py -------------------------------------------------------------------------------- /object_detection/configs/convnext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/convnext/README.md -------------------------------------------------------------------------------- /object_detection/configs/convnext/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/convnext/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/cornernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cornernet/README.md -------------------------------------------------------------------------------- /object_detection/configs/cornernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/cornernet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dcn/README.md -------------------------------------------------------------------------------- /object_detection/configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/dcnv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dcnv2/README.md -------------------------------------------------------------------------------- /object_detection/configs/dcnv2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dcnv2/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ddod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ddod/README.md -------------------------------------------------------------------------------- /object_detection/configs/ddod/ddod_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ddod/ddod_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ddod/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ddod/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/deepfashion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/deepfashion/README.md -------------------------------------------------------------------------------- /object_detection/configs/deformable_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/deformable_detr/README.md -------------------------------------------------------------------------------- /object_detection/configs/deformable_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/deformable_detr/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detectors/README.md -------------------------------------------------------------------------------- /object_detection/configs/detectors/detectors_htc_r50_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detectors/detectors_htc_r50_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/detectors/htc_r50_rfp_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detectors/htc_r50_rfp_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/detectors/htc_r50_sac_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detectors/htc_r50_sac_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/detectors/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detectors/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detr/README.md -------------------------------------------------------------------------------- /object_detection/configs/detr/detr_r50_8x2_150e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detr/detr_r50_8x2_150e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/detr/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/double_heads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/double_heads/README.md -------------------------------------------------------------------------------- /object_detection/configs/double_heads/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/double_heads/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/dyhead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dyhead/README.md -------------------------------------------------------------------------------- /object_detection/configs/dyhead/atss_r50_fpn_dyhead_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dyhead/atss_r50_fpn_dyhead_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/dyhead/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dyhead/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/dynamic_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dynamic_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/dynamic_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/dynamic_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/efficientnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/efficientnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/efficientnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/efficientnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /object_detection/configs/empirical_attention/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/empirical_attention/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/fast_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fast_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fast_rcnn/fast_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fast_rcnn/fast_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/faster_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fcos/README.md -------------------------------------------------------------------------------- /object_detection/configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/README.md -------------------------------------------------------------------------------- /object_detection/configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/fovea_r101_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/fovea_r101_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/fovea_r50_fpn_4x4_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/fovea_r50_fpn_4x4_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/foveabox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/foveabox/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/fpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fpg/README.md -------------------------------------------------------------------------------- /object_detection/configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/free_anchor/README.md -------------------------------------------------------------------------------- /object_detection/configs/free_anchor/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/free_anchor/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/fsaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fsaf/README.md -------------------------------------------------------------------------------- /object_detection/configs/fsaf/fsaf_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fsaf/fsaf_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/fsaf/fsaf_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fsaf/fsaf_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fsaf/fsaf_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gcnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/gfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gfl/README.md -------------------------------------------------------------------------------- /object_detection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gfl/gfl_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gfl/gfl_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gfl/gfl_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gfl/gfl_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ghm/README.md -------------------------------------------------------------------------------- /object_detection/configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ghm/retinanet_ghm_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ghm/retinanet_ghm_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn+ws/README.md -------------------------------------------------------------------------------- /object_detection/configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn/README.md -------------------------------------------------------------------------------- /object_detection/configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn/mask_rcnn_r50_fpn_gn-all_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn/mask_rcnn_r50_fpn_gn-all_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/gn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/grid_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/grid_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/groie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/groie/README.md -------------------------------------------------------------------------------- /object_detection/configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/groie/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /object_detection/configs/guided_anchoring/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/guided_anchoring/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/htc_hrnetv2p_w18_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/htc_hrnetv2p_w32_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/htc_hrnetv2p_w40_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/htc_hrnetv2p_w40_28e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/htc/README.md -------------------------------------------------------------------------------- /object_detection/configs/htc/htc_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/htc/htc_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/htc/htc_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/htc/htc_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/htc/htc_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/htc/htc_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/htc/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/instaboost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/instaboost/README.md -------------------------------------------------------------------------------- /object_detection/configs/instaboost/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/instaboost/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/lad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/lad/README.md -------------------------------------------------------------------------------- /object_detection/configs/lad/lad_r101_paa_r50_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/lad/lad_r101_paa_r50_fpn_coco_1x.py -------------------------------------------------------------------------------- /object_detection/configs/lad/lad_r50_paa_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/lad/lad_r50_paa_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /object_detection/configs/lad/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/lad/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ld/README.md -------------------------------------------------------------------------------- /object_detection/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ld/ld_r18_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /object_detection/configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ld/ld_r34_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /object_detection/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ld/ld_r50_gflv1_r101_fpn_coco_1x.py -------------------------------------------------------------------------------- /object_detection/configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ld/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/legacy_1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/legacy_1.x/README.md -------------------------------------------------------------------------------- /object_detection/configs/legacy_1.x/ssd300_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/legacy_1.x/ssd300_coco_v1.py -------------------------------------------------------------------------------- /object_detection/configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/libra_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/libra_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/lvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/lvis/README.md -------------------------------------------------------------------------------- /object_detection/configs/mask2former/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask2former/README.md -------------------------------------------------------------------------------- /object_detection/configs/mask2former/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask2former/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/mask_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/maskformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/maskformer/README.md -------------------------------------------------------------------------------- /object_detection/configs/maskformer/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/maskformer/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ms_rcnn/ms_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/nas_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/nas_fcos/README.md -------------------------------------------------------------------------------- /object_detection/configs/nas_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/nas_fcos/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/nas_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/nas_fpn/README.md -------------------------------------------------------------------------------- /object_detection/configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/objects365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/objects365/README.md -------------------------------------------------------------------------------- /object_detection/configs/objects365/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/objects365/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/openimages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/openimages/README.md -------------------------------------------------------------------------------- /object_detection/configs/openimages/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/openimages/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/paa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/README.md -------------------------------------------------------------------------------- /object_detection/configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r101_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r101_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r50_fpn_1.5x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r50_fpn_1.5x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/paa/paa_r50_fpn_mstrain_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pafpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pafpn/README.md -------------------------------------------------------------------------------- /object_detection/configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pafpn/faster_rcnn_r50_pafpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/panoptic_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/panoptic_fpn/README.md -------------------------------------------------------------------------------- /object_detection/configs/panoptic_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/panoptic_fpn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /object_detection/configs/pascal_voc/ssd300_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pascal_voc/ssd300_voc0712.py -------------------------------------------------------------------------------- /object_detection/configs/pascal_voc/ssd512_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pascal_voc/ssd512_voc0712.py -------------------------------------------------------------------------------- /object_detection/configs/pisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/README.md -------------------------------------------------------------------------------- /object_detection/configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/pisa_mask_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/pisa_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pisa/pisa_ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/pisa_ssd300_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pisa/pisa_ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pisa/pisa_ssd512_coco.py -------------------------------------------------------------------------------- /object_detection/configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/point_rend/README.md -------------------------------------------------------------------------------- /object_detection/configs/point_rend/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/point_rend/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/pvt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/README.md -------------------------------------------------------------------------------- /object_detection/configs/pvt/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvt-l_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvt-l_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvt-m_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvt-m_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvt-s_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvt-s_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvt-t_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvt-t_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b0_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b0_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b1_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b1_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b2_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b2_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b3_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b3_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b4_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b4_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/pvt/retinanet_pvtv2-b5_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/pvt/retinanet_pvtv2-b5_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/queryinst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/queryinst/README.md -------------------------------------------------------------------------------- /object_detection/configs/queryinst/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/queryinst/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/queryinst/queryinst_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/queryinst/queryinst_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/regnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/regnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/reppoints/README.md -------------------------------------------------------------------------------- /object_detection/configs/reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/reppoints/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /object_detection/configs/res2net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/res2net/README.md -------------------------------------------------------------------------------- /object_detection/configs/res2net/htc_r2_101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/res2net/htc_r2_101_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/resnest/README.md -------------------------------------------------------------------------------- /object_detection/configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/resnet_strikes_back/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/resnet_strikes_back/README.md -------------------------------------------------------------------------------- /object_detection/configs/resnet_strikes_back/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/resnet_strikes_back/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/retinanet/README.md -------------------------------------------------------------------------------- /object_detection/configs/retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/retinanet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/retinanet/retinanet_r18_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/retinanet/retinanet_r18_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/retinanet/retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/retinanet/retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/retinanet/retinanet_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/retinanet/retinanet_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rfnext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rfnext/README.md -------------------------------------------------------------------------------- /object_detection/configs/rfnext/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rfnext/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/README.md -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r101_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r50_caffe_c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r50_caffe_c4_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r50_caffe_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_x101_32x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_x101_32x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_x101_64x4d_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/rpn/rpn_x101_64x4d_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/sabl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/sabl/README.md -------------------------------------------------------------------------------- /object_detection/configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/sabl/sabl_retinanet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/scnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/scnet/scnet_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/scnet_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/scnet/scnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/scnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/scnet/scnet_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/scnet_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scnet/scnet_x101_64x4d_fpn_20e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scratch/README.md -------------------------------------------------------------------------------- /object_detection/configs/scratch/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/scratch/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/seesaw_loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/seesaw_loss/README.md -------------------------------------------------------------------------------- /object_detection/configs/seesaw_loss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/seesaw_loss/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/selfsup_pretrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/selfsup_pretrain/README.md -------------------------------------------------------------------------------- /object_detection/configs/simple_copy_paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/simple_copy_paste/README.md -------------------------------------------------------------------------------- /object_detection/configs/simple_copy_paste/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/simple_copy_paste/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/README.md -------------------------------------------------------------------------------- /object_detection/configs/solo/decoupled_solo_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/decoupled_solo_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solo/decoupled_solo_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/decoupled_solo_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/solo/solo_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/solo_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solo/solo_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solo/solo_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/README.md -------------------------------------------------------------------------------- /object_detection/configs/solov2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_light_r18_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_light_r18_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_light_r34_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_light_r34_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_light_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_light_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_r101_dcn_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_r101_dcn_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_r101_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_r101_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/solov2/solov2_x101_dcn_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/solov2/solov2_x101_dcn_fpn_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/sparse_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/sparse_rcnn/README.md -------------------------------------------------------------------------------- /object_detection/configs/sparse_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/sparse_rcnn/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/README.md -------------------------------------------------------------------------------- /object_detection/configs/ssd/ascend_ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/ascend_ssd300_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ssd/ssd300_fp16_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/ssd300_fp16_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /object_detection/configs/ssd/ssd512_fp16_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/ssd/ssd512_fp16_coco.py -------------------------------------------------------------------------------- /object_detection/configs/strong_baselines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/strong_baselines/README.md -------------------------------------------------------------------------------- /object_detection/configs/swin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/swin/README.md -------------------------------------------------------------------------------- /object_detection/configs/swin/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/swin/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/timm_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/timm_example/README.md -------------------------------------------------------------------------------- /object_detection/configs/tood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tood/README.md -------------------------------------------------------------------------------- /object_detection/configs/tood/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tood/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/tood/tood_r101_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tood/tood_r101_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/tood/tood_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tood/tood_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/tood/tood_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tood/tood_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/tridentnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tridentnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/tridentnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/tridentnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/vfnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/README.md -------------------------------------------------------------------------------- /object_detection/configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/vfnet/vfnet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/vfnet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/vfnet/vfnet_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/vfnet_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/vfnet/vfnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/vfnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/vfnet/vfnet_r50_fpn_mstrain_2x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/wider_face/README.md -------------------------------------------------------------------------------- /object_detection/configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /object_detection/configs/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolact/README.md -------------------------------------------------------------------------------- /object_detection/configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/yolact/yolact_r101_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolact/yolact_r101_1x8_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolact/yolact_r50_1x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolact/yolact_r50_1x8_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolact/yolact_r50_8x8_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolact/yolact_r50_8x8_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolo/README.md -------------------------------------------------------------------------------- /object_detection/configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/yolo/yolov3_d53_320_273e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolo/yolov3_d53_320_273e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolof/README.md -------------------------------------------------------------------------------- /object_detection/configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolof/yolof_r50_c5_8x8_1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolof/yolof_r50_c5_8x8_iter-1x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/README.md -------------------------------------------------------------------------------- /object_detection/configs/yolox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/metafile.yml -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_l_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_l_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_m_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_m_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_nano_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_nano_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_s_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_s_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_tiny_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_tiny_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/configs/yolox/yolox_x_8x8_300e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/configs/yolox/yolox_x_8x8_300e_coco.py -------------------------------------------------------------------------------- /object_detection/data/put_coco_dir_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/get_flops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/get_flops.sh -------------------------------------------------------------------------------- /object_detection/local_configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/local_configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /object_detection/local_configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/local_configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /object_detection/local_configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/local_configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /object_detection/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/apis/__pycache__/test.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/apis/__pycache__/test.cpython-310.pyc -------------------------------------------------------------------------------- /object_detection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /object_detection/mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/apis/test.py -------------------------------------------------------------------------------- /object_detection/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/apis/train.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/match_costs/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/match_costs/match_cost.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/data_structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/data_structures/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/data_structures/general_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/data_structures/general_data.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/data_structures/instance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/data_structures/instance_data.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/panoptic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/panoptic_utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/export/model_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/export/model_wrappers.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/export/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/export/onnx_helper.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/checkloss_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/ema.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/memory_profiler_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/memory_profiler_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/set_epoch_info_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/set_epoch_info_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/sync_norm_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/sync_random_size_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/sync_random_size_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/wandblogger_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/wandblogger_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/yolox_lrupdater_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/yolox_lrupdater_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/hook/yolox_mode_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/hook/yolox_mode_switch_hook.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/optimizers/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/optimizers/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/optimizers/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/post_processing/matrix_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/post_processing/matrix_nms.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/visualization/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/visualization/image.py -------------------------------------------------------------------------------- /object_detection/mmdet/core/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/core/visualization/palette.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/coco_occluded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/coco_occluded.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/objects365.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/formatting.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/samplers/infinite_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/samplers/infinite_sampler.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /object_detection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/efficientnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/spanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/spanet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ascend_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ascend_ssd_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/base_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/base_mask_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ddod_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ddod_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/maskformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/maskformer_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/solo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/solo_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/solov2_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/solov2_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/mask2former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/mask2former.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/panoptic_fpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/solov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/solov2.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/plugins/pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/plugins/pixel_decoder.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/roi_heads/trident_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/roi_heads/trident_roi_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/seg_heads/panoptic_fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/seg_heads/panoptic_fpn_head.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/brick_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/brick_wrappers.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/conv_upsample.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/csp_layer.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/normed_predictor.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/positional_encoding.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/models/utils/transformer.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/ascend_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/ascend_util.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/logger.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/memory.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/misc.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/rfnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/rfnext.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/util_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/util_distribution.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /object_detection/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /object_detection/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/mmdet/version.py -------------------------------------------------------------------------------- /object_detection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements.txt -------------------------------------------------------------------------------- /object_detection/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/albu.txt -------------------------------------------------------------------------------- /object_detection/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/build.txt -------------------------------------------------------------------------------- /object_detection/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/docs.txt -------------------------------------------------------------------------------- /object_detection/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.17 2 | -------------------------------------------------------------------------------- /object_detection/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | cityscapesscripts 2 | imagecorruptions 3 | scikit-learn 4 | -------------------------------------------------------------------------------- /object_detection/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/readthedocs.txt -------------------------------------------------------------------------------- /object_detection/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/runtime.txt -------------------------------------------------------------------------------- /object_detection/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/requirements/tests.txt -------------------------------------------------------------------------------- /object_detection/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /object_detection/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /object_detection/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/data_pipeline.png -------------------------------------------------------------------------------- /object_detection/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/loss_curve.png -------------------------------------------------------------------------------- /object_detection/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/mmdet-logo.png -------------------------------------------------------------------------------- /object_detection/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /object_detection/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/results.pkl -------------------------------------------------------------------------------- /object_detection/run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/run_eval.sh -------------------------------------------------------------------------------- /object_detection/run_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/run_train.sh -------------------------------------------------------------------------------- /object_detection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/setup.py -------------------------------------------------------------------------------- /object_detection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/coco_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/coco_sample.json -------------------------------------------------------------------------------- /object_detection/tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/color.jpg -------------------------------------------------------------------------------- /object_detection/tests/data/configs_mmtrack/mot_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/configs_mmtrack/mot_challenge.py -------------------------------------------------------------------------------- /object_detection/tests/data/custom_dataset/images/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/custom_dataset/images/000001.jpg -------------------------------------------------------------------------------- /object_detection/tests/data/custom_dataset/images/000001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/custom_dataset/images/000001.xml -------------------------------------------------------------------------------- /object_detection/tests/data/custom_dataset/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/custom_dataset/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /object_detection/tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/data/gray.jpg -------------------------------------------------------------------------------- /object_detection/tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /object_detection/tests/test_downstream/test_mmtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_downstream/test_mmtrack.py -------------------------------------------------------------------------------- /object_detection/tests/test_metrics/test_box_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_metrics/test_box_overlap.py -------------------------------------------------------------------------------- /object_detection/tests/test_metrics/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_metrics/test_losses.py -------------------------------------------------------------------------------- /object_detection/tests/test_metrics/test_mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_metrics/test_mean_ap.py -------------------------------------------------------------------------------- /object_detection/tests/test_metrics/test_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_metrics/test_recall.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_plugins.py -------------------------------------------------------------------------------- /object_detection/tests/test_models/test_roi_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_models/test_roi_heads/utils.py -------------------------------------------------------------------------------- /object_detection/tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /object_detection/tests/test_onnx/data/yolov3_neck.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_onnx/data/yolov3_neck.pkl -------------------------------------------------------------------------------- /object_detection/tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /object_detection/tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /object_detection/tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/async_benchmark.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/test_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/test_apis.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/test_async.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/test_config.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/test_eval_hook.py -------------------------------------------------------------------------------- /object_detection/tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_assigner.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_compat_config.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_general_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_general_data.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_hook.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_logger.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_memory.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_nms.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_replace_cfg_vals.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_setup_env.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_split_batch.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_version.py -------------------------------------------------------------------------------- /object_detection/tests/test_utils/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tests/test_utils/test_visualization.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/optimize_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/optimize_anchors.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /object_detection/tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /object_detection/tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /object_detection/tools/dataset_converters/images2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/dataset_converters/images2coco.py -------------------------------------------------------------------------------- /object_detection/tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/test.py -------------------------------------------------------------------------------- /object_detection/tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /object_detection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/dist_test.sh -------------------------------------------------------------------------------- /object_detection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/dist_train.sh -------------------------------------------------------------------------------- /object_detection/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /object_detection/tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /object_detection/tools/misc/gen_coco_panoptic_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/gen_coco_panoptic_test_info.py -------------------------------------------------------------------------------- /object_detection/tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /object_detection/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/print_config.py -------------------------------------------------------------------------------- /object_detection/tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/misc/split_coco.py -------------------------------------------------------------------------------- /object_detection/tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /object_detection/tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /object_detection/tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /object_detection/tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /object_detection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/slurm_test.sh -------------------------------------------------------------------------------- /object_detection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/slurm_train.sh -------------------------------------------------------------------------------- /object_detection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/test.py -------------------------------------------------------------------------------- /object_detection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoranLyong/SPANet-official/HEAD/object_detection/tools/train.py -------------------------------------------------------------------------------- /object_detection/work_dirs/put_trained_weights.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------