├── .gitignore ├── DATASET.md ├── INSTALL.md ├── METRICS.md ├── README.md ├── SGG_ToolKit_environment.yml ├── Scripts ├── LHBB_RPCM_predcls_test.sh ├── LHBB_RPCM_predcls_train.sh ├── LHBB_RPCM_sgcls_train.sh ├── LHBB_RPCM_sgdet_train.sh ├── LOBB_Motif_predcls_train.sh ├── LOBB_Motif_sgcls_train.sh ├── LOBB_RPCM_predcls_test.sh ├── LOBB_RPCM_predcls_train.sh ├── LOBB_RPCM_sgcls_train.sh └── LOBB_RPCM_sgdet_train.sh ├── Setup.ipynb ├── configs ├── RSHBB │ ├── 12coco_detection.py │ ├── STAR_hbb_predcls_sgcls.py │ ├── STAR_hbb_sgdet.py │ └── coco_detection.py ├── RSOBB │ ├── STAR_obb_predcls_sgcls.py │ └── STAR_obb_sgdet.py └── e2e_relation_X_101_32_8_FPN_1x_trans_base.yaml ├── csrc_backup ├── ROIAlign.h ├── ROIPool.h ├── SigmoidFocalLoss.h ├── cpu │ ├── ROIAlign_cpu.cpp │ ├── nms_cpu.cpp │ └── vision.h ├── cuda │ ├── ROIAlign_cuda.cu │ ├── ROIPool_cuda.cu │ ├── SigmoidFocalLoss_cuda.cu │ ├── deform_conv_cuda.cu │ ├── deform_conv_kernel_cuda.cu │ ├── deform_pool_cuda.cu │ ├── deform_pool_kernel_cuda.cu │ ├── nms.cu │ └── vision.h ├── deform_conv.h ├── deform_pool.h ├── nms.h └── vision.cpp ├── data └── labels.json ├── datasets ├── Category_Type_Info copy.json └── Category_Type_Info.json ├── demo ├── README.md ├── box.jpg ├── demo2.mp4 ├── demo_e2e_mask_rcnn_R_50_FPN_1x.png ├── demo_e2e_mask_rcnn_X_101_32x8d_FPN_1x.png ├── distr.jpg ├── output_format.png ├── predictor.py ├── toolbox.jpg └── webcam.py ├── docker ├── Dockerfile └── docker-jupyter │ ├── Dockerfile │ └── jupyter_notebook_config.py ├── environment.yml ├── extra ├── __pycache__ │ └── utils_funcion.cpython-37.pyc └── utils_funcion.py ├── lib_mmdet └── mmdet │ ├── .mim │ ├── configs │ │ ├── _base_ │ │ │ ├── __pycache__ │ │ │ │ └── default_runtime.cpython-38.pyc │ │ │ ├── datasets │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── cityscapes_detection.cpython-38.pyc │ │ │ │ │ ├── cityscapes_instance.cpython-38.pyc │ │ │ │ │ ├── coco_detection.cpython-38.pyc │ │ │ │ │ ├── coco_instance.cpython-38.pyc │ │ │ │ │ ├── coco_instance_semantic.cpython-38.pyc │ │ │ │ │ ├── coco_panoptic.cpython-38.pyc │ │ │ │ │ ├── deepfashion.cpython-38.pyc │ │ │ │ │ ├── lvis_v0.5_instance.cpython-38.pyc │ │ │ │ │ ├── lvis_v1_instance.cpython-38.pyc │ │ │ │ │ ├── objects365v1_detection.cpython-38.pyc │ │ │ │ │ ├── objects365v2_detection.cpython-38.pyc │ │ │ │ │ ├── openimages_detection.cpython-38.pyc │ │ │ │ │ ├── voc0712.cpython-38.pyc │ │ │ │ │ └── wider_face.cpython-38.pyc │ │ │ │ ├── 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 │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ascend_retinanet_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── ascend_ssd300.cpython-38.pyc │ │ │ │ │ ├── cascade_mask_rcnn_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── cascade_rcnn_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── fast_rcnn_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── faster_rcnn_r50_caffe_c4.cpython-38.pyc │ │ │ │ │ ├── faster_rcnn_r50_caffe_dc5.cpython-38.pyc │ │ │ │ │ ├── faster_rcnn_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── mask_rcnn_r50_caffe_c4.cpython-38.pyc │ │ │ │ │ ├── mask_rcnn_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── retinanet_r50_fpn.cpython-38.pyc │ │ │ │ │ ├── rpn_r50_caffe_c4.cpython-38.pyc │ │ │ │ │ ├── rpn_r50_fpn.cpython-38.pyc │ │ │ │ │ └── ssd300.cpython-38.pyc │ │ │ │ ├── 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 │ │ │ │ ├── __pycache__ │ │ │ │ ├── schedule_1x.cpython-38.pyc │ │ │ │ ├── schedule_20e.cpython-38.pyc │ │ │ │ └── schedule_2x.cpython-38.pyc │ │ │ │ ├── schedule_1x.py │ │ │ │ ├── schedule_20e.py │ │ │ │ └── schedule_2x.py │ │ ├── albu_example │ │ │ ├── __pycache__ │ │ │ │ └── mask_rcnn_r50_fpn_albu_1x_coco.cpython-38.pyc │ │ │ └── mask_rcnn_r50_fpn_albu_1x_coco.py │ │ ├── atss │ │ │ ├── __pycache__ │ │ │ │ ├── atss_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── atss_r50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── atss_r101_fpn_1x_coco.py │ │ │ ├── atss_r50_fpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── autoassign │ │ │ ├── __pycache__ │ │ │ │ └── autoassign_r50_fpn_8x2_1x_coco.cpython-38.pyc │ │ │ ├── autoassign_r50_fpn_8x2_1x_coco.py │ │ │ └── metafile.yml │ │ ├── carafe │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_carafe_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_carafe_1x_coco.cpython-38.pyc │ │ │ ├── faster_rcnn_r50_fpn_carafe_1x_coco.py │ │ │ ├── mask_rcnn_r50_fpn_carafe_1x_coco.py │ │ │ └── metafile.yml │ │ ├── cascade_rcnn │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x8d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_64x4d_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_64x4d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r50_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_x101_32x4d_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── cascade_rcnn_x101_64x4d_fpn_20e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── crpn_fast_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── crpn_faster_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── crpn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── centernet_resnet18_140e_coco.cpython-38.pyc │ │ │ │ └── centernet_resnet18_dcnv2_140e_coco.cpython-38.pyc │ │ │ ├── centernet_resnet18_140e_coco.py │ │ │ ├── centernet_resnet18_dcnv2_140e_coco.py │ │ │ └── metafile.yml │ │ ├── centripetalnet │ │ │ ├── __pycache__ │ │ │ │ └── centripetalnet_hourglass104_mstest_16x6_210e_coco.cpython-38.pyc │ │ │ ├── centripetalnet_hourglass104_mstest_16x6_210e_coco.py │ │ │ └── metafile.yml │ │ ├── cityscapes │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_1x_cityscapes.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_1x_cityscapes.cpython-38.pyc │ │ │ ├── faster_rcnn_r50_fpn_1x_cityscapes.py │ │ │ └── mask_rcnn_r50_fpn_1x_cityscapes.py │ │ ├── common │ │ │ ├── __pycache__ │ │ │ │ ├── lsj_100e_coco_instance.cpython-38.pyc │ │ │ │ ├── mstrain-poly_3x_coco_instance.cpython-38.pyc │ │ │ │ ├── mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── mstrain_3x_coco_instance.cpython-38.pyc │ │ │ │ ├── ssj_270k_coco_instance.cpython-38.pyc │ │ │ │ └── ssj_scp_270k_coco_instance.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_convnext-s_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_convnext-t_p4_w7_fpn_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cornernet_hourglass104_mstest_10x5_210e_coco.cpython-38.pyc │ │ │ │ ├── cornernet_hourglass104_mstest_32x3_210e_coco.cpython-38.pyc │ │ │ │ └── cornernet_hourglass104_mstest_8x6_210e_coco.cpython-38.pyc │ │ │ ├── cornernet_hourglass104_mstest_10x5_210e_coco.py │ │ │ ├── cornernet_hourglass104_mstest_32x3_210e_coco.py │ │ │ ├── cornernet_hourglass104_mstest_8x6_210e_coco.py │ │ │ └── metafile.yml │ │ ├── dcn │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r101_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r50_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r101_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_dpool_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x4d_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_fp16_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_mdconv_c3-c5_group4_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_mdpool_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_fp16_mdconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_mdconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ └── ddod_r50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── ddod_r50_fpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── deepfashion │ │ │ ├── __pycache__ │ │ │ │ └── mask_rcnn_r50_fpn_15e_deepfashion.cpython-38.pyc │ │ │ └── mask_rcnn_r50_fpn_15e_deepfashion.py │ │ ├── deformable_detr │ │ │ ├── __pycache__ │ │ │ │ ├── deformable_detr_r50_16x2_50e_coco.cpython-38.pyc │ │ │ │ ├── deformable_detr_refine_r50_16x2_50e_coco.cpython-38.pyc │ │ │ │ └── deformable_detr_twostage_refine_r50_16x2_50e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_rcnn_r50_rfp_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r50_sac_1x_coco.cpython-38.pyc │ │ │ │ ├── detectors_cascade_rcnn_r50_1x_coco.cpython-38.pyc │ │ │ │ ├── detectors_htc_r101_20e_coco.cpython-38.pyc │ │ │ │ ├── detectors_htc_r50_1x_coco.cpython-38.pyc │ │ │ │ ├── htc_r50_rfp_1x_coco.cpython-38.pyc │ │ │ │ └── htc_r50_sac_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ └── detr_r50_8x2_150e_coco.cpython-38.pyc │ │ │ ├── detr_r50_8x2_150e_coco.py │ │ │ └── metafile.yml │ │ ├── double_heads │ │ │ ├── __pycache__ │ │ │ │ └── dh_faster_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── dh_faster_rcnn_r50_fpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── dyhead │ │ │ ├── __pycache__ │ │ │ │ ├── atss_r50_caffe_fpn_dyhead_1x_coco.cpython-38.pyc │ │ │ │ ├── atss_r50_fpn_dyhead_1x_coco.cpython-38.pyc │ │ │ │ └── atss_swin-l-p4-w12_fpn_dyhead_mstrain_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ └── dynamic_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── dynamic_rcnn_r50_fpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── efficientnet │ │ │ ├── __pycache__ │ │ │ │ └── retinanet_effb3_fpn_crop896_8x4_1x_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ └── retinanet_effb3_fpn_crop896_8x4_1x_coco.py │ │ ├── empirical_attention │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_attention_0010_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_attention_0010_dcn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_attention_1111_1x_coco.cpython-38.pyc │ │ │ │ └── faster_rcnn_r50_fpn_attention_1111_dcn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── fast_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── fast_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── fast_rcnn_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── fast_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── fast_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── fast_rcnn_r50_fpn_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r101_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r101_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_c4_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_c4_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_dc5_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_dc5_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_dc5_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_90k_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person-bicycle-car.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco-person.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_caffe_fpn_mstrain_90k_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_bounded_iou_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_ciou_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_giou_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_iou_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_ohem_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_soft_nms_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_tnr-pretrain_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x4d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x8d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_64x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ └── faster_rcnn_x101_64x4d_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── fcos_center-normbbox-centeronreg-giou_r50_caffe_fpn_gn-head_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_center-normbbox-centeronreg-giou_r50_caffe_fpn_gn-head_dcn_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_center_r50_caffe_fpn_gn-head_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_r101_caffe_fpn_gn-head_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_r101_caffe_fpn_gn-head_mstrain_640-800_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_r50_caffe_fpn_gn-head_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_r50_caffe_fpn_gn-head_4x4_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_r50_caffe_fpn_gn-head_fp16_1x_bs8x8_coco.cpython-38.pyc │ │ │ │ ├── fcos_r50_caffe_fpn_gn-head_mstrain_640-800_2x_coco.cpython-38.pyc │ │ │ │ └── fcos_x101_64x4d_fpn_gn-head_mstrain_640-800_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── fovea_align_r101_fpn_gn-head_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fovea_align_r101_fpn_gn-head_mstrain_640-800_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fovea_align_r50_fpn_gn-head_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fovea_align_r50_fpn_gn-head_mstrain_640-800_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fovea_r101_fpn_4x4_1x_coco.cpython-38.pyc │ │ │ │ ├── fovea_r101_fpn_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fovea_r50_fpn_4x4_1x_coco.cpython-38.pyc │ │ │ │ └── fovea_r50_fpn_4x4_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpg-chn128_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpg_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpg-chn128_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpg_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_crop640_50e_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpg-chn128_crop640_50e_coco.cpython-38.pyc │ │ │ │ └── retinanet_r50_fpg_crop640_50e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── retinanet_free_anchor_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_free_anchor_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_free_anchor_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── fsaf_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── fsaf_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── fsaf_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ ├── fsaf_r101_fpn_1x_coco.py │ │ │ ├── fsaf_r50_fpn_1x_coco.py │ │ │ ├── fsaf_x101_64x4d_fpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── gcnet │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_dconv_c3-c5_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_syncbn-backbone_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-backbone_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r16_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_x101_32x4d_fpn_syncbn-backbone_r4_gcb_c3-c5_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── gfl_r101_fpn_dconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── gfl_r101_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── gfl_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── gfl_r50_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── gfl_x101_32x4d_fpn_dconv_c4-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ └── gfl_x101_32x4d_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── retinanet_ghm_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_ghm_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_ghm_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_ghm_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r101_fpn_gn_ws-all_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_gn_ws-all_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x101_32x4d_fpn_gn_ws-all_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_x50_32x4d_fpn_gn_ws-all_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_gn_ws-all_20_23_24e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_gn_ws-all_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_gn_ws-all_20_23_24e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_gn_ws-all_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_20_23_24e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_gn_ws-all_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x50_32x4d_fpn_gn_ws-all_20_23_24e_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_x50_32x4d_fpn_gn_ws-all_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r101_fpn_gn-all_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_gn-all_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_gn-all_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_gn-all_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_gn-all_contrib_2x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_gn-all_contrib_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── grid_rcnn_r101_fpn_gn-head_2x_coco.cpython-38.pyc │ │ │ │ ├── grid_rcnn_r50_fpn_gn-head_1x_coco.cpython-38.pyc │ │ │ │ ├── grid_rcnn_r50_fpn_gn-head_2x_coco.cpython-38.pyc │ │ │ │ ├── grid_rcnn_x101_32x4d_fpn_gn-head_2x_coco.cpython-38.pyc │ │ │ │ └── grid_rcnn_x101_64x4d_fpn_gn-head_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_groie_1x_coco.cpython-38.pyc │ │ │ │ ├── grid_rcnn_r50_fpn_gn-head_groie_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_groie_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_syncbn-backbone_r4_gcb_c3-c5_groie_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── ga_fast_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_faster_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_faster_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_faster_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_faster_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_faster_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_retinanet_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_retinanet_r101_caffe_fpn_mstrain_2x.cpython-38.pyc │ │ │ │ ├── ga_retinanet_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_retinanet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_retinanet_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_retinanet_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_rpn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_rpn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_rpn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ga_rpn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── ga_rpn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_hrnetv2p_w32_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_hrnetv2p_w40_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_hrnetv2p_w32_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_hrnetv2p_w40_20e_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w18_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w18_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w32_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w32_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w40_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_hrnetv2p_w40_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w18_gn-head_4x4_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w18_gn-head_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w18_gn-head_mstrain_640-800_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w32_gn-head_4x4_1x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w32_gn-head_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w32_gn-head_mstrain_640-800_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── fcos_hrnetv2p_w40_gn-head_mstrain_640-800_4x4_2x_coco.cpython-38.pyc │ │ │ │ ├── htc_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_hrnetv2p_w32_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_hrnetv2p_w40_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_hrnetv2p_w40_28e_coco.cpython-38.pyc │ │ │ │ ├── htc_x101_64x4d_fpn_16x1_28e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_hrnetv2p_w18_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_hrnetv2p_w18_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_hrnetv2p_w32_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_hrnetv2p_w32_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_hrnetv2p_w40_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_hrnetv2p_w40_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── htc_r101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── htc_r50_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_without_semantic_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── htc_x101_32x4d_fpn_16x1_20e_coco.cpython-38.pyc │ │ │ │ ├── htc_x101_64x4d_fpn_16x1_20e_coco.cpython-38.pyc │ │ │ │ └── htc_x101_64x4d_fpn_dconv_c3-c5_mstrain_400_1400_16x1_20e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_x101_64x4d_fpn_instaboost_4x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── lad_r101_paa_r50_fpn_coco_1x.cpython-38.pyc │ │ │ │ └── lad_r50_paa_r101_fpn_coco_1x.cpython-38.pyc │ │ │ ├── lad_r101_paa_r50_fpn_coco_1x.py │ │ │ ├── lad_r50_paa_r101_fpn_coco_1x.py │ │ │ └── metafile.yml │ │ ├── ld │ │ │ ├── __pycache__ │ │ │ │ ├── ld_r101_gflv1_r101dcn_fpn_coco_2x.cpython-38.pyc │ │ │ │ ├── ld_r18_gflv1_r101_fpn_coco_1x.cpython-38.pyc │ │ │ │ ├── ld_r34_gflv1_r101_fpn_coco_1x.cpython-38.pyc │ │ │ │ └── ld_r50_gflv1_r101_fpn_coco_1x.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_1x_coco_v1.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_1x_coco_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_1x_coco_v1.cpython-38.pyc │ │ │ │ ├── retinanet_r50_caffe_fpn_1x_coco_v1.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_1x_coco_v1.cpython-38.pyc │ │ │ │ └── ssd300_coco_v1.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── libra_fast_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── libra_faster_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── libra_faster_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── libra_faster_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── libra_retinanet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r101_fpn_sample1e-3_mstrain_1x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_sample1e-3_mstrain_2x_lvis_v0.5.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_sample1e-3_mstrain_1x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_sample1e-3_mstrain_2x_lvis_v0.5.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_sample1e-3_mstrain_1x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_sample1e-3_mstrain_2x_lvis_v0.5.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_64x4d_fpn_sample1e-3_mstrain_1x_lvis_v1.cpython-38.pyc │ │ │ │ └── mask_rcnn_x101_64x4d_fpn_sample1e-3_mstrain_2x_lvis_v0.5.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask2former_r101_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_r101_lsj_8x2_50e_coco.cpython-38.pyc │ │ │ │ ├── mask2former_r50_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_r50_lsj_8x2_50e_coco.cpython-38.pyc │ │ │ │ ├── mask2former_swin-b-p4-w12-384-in21k_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_swin-b-p4-w12-384_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_swin-l-p4-w12-384-in21k_lsj_16x1_100e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_swin-s-p4-w7-224_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ ├── mask2former_swin-s-p4-w7-224_lsj_8x2_50e_coco.cpython-38.pyc │ │ │ │ ├── mask2former_swin-t-p4-w7-224_lsj_8x2_50e_coco-panoptic.cpython-38.pyc │ │ │ │ └── mask2former_swin-t-p4-w7-224_lsj_8x2_50e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_caffe_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_c4_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_poly_1x_coco_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_1x_wandb_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_poly_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x4d_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x8d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_32x8d_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_x101_64x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_x101_64x4d_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── maskformer_r50_mstrain_16x1_75e_coco.cpython-38.pyc │ │ │ │ └── maskformer_swin-l-p4-w12_mstrain_64x1_300e_coco.cpython-38.pyc │ │ │ ├── maskformer_r50_mstrain_16x1_75e_coco.py │ │ │ ├── maskformer_swin-l-p4-w12_mstrain_64x1_300e_coco.py │ │ │ └── metafile.yml │ │ ├── ms_rcnn │ │ │ ├── __pycache__ │ │ │ │ ├── ms_rcnn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_r101_caffe_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_r50_caffe_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── ms_rcnn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── ms_rcnn_x101_64x4d_fpn_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── nas_fcos_fcoshead_r50_caffe_fpn_gn-head_4x4_1x_coco.cpython-38.pyc │ │ │ │ └── nas_fcos_nashead_r50_caffe_fpn_gn-head_4x4_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── retinanet_r50_fpn_crop640_50e_coco.cpython-38.pyc │ │ │ │ └── retinanet_r50_nasfpn_crop640_50e_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ ├── retinanet_r50_fpn_crop640_50e_coco.py │ │ │ └── retinanet_r50_nasfpn_crop640_50e_coco.py │ │ ├── objects365 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_16x4_1x_obj365v1.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_16x4_1x_obj365v2.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_syncbn_1350k_obj365v1.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_1x_obj365v1.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_1x_obj365v2.cpython-38.pyc │ │ │ │ └── retinanet_r50_fpn_syncbn_1350k_obj365v1.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_32x2_1x_openimages.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_32x2_1x_openimages_challenge.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_32x2_cas_1x_openimages.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_32x2_cas_1x_openimages_challenge.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_32x2_1x_openimages.cpython-38.pyc │ │ │ │ └── ssd300_32x8_36e_openimages.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── paa_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── paa_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── paa_r101_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── paa_r50_fpn_1.5x_coco.cpython-38.pyc │ │ │ │ ├── paa_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── paa_r50_fpn_2x_coco.cpython-38.pyc │ │ │ │ └── paa_r50_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ └── faster_rcnn_r50_pafpn_1x_coco.cpython-38.pyc │ │ │ ├── faster_rcnn_r50_pafpn_1x_coco.py │ │ │ └── metafile.yml │ │ ├── panoptic_fpn │ │ │ ├── __pycache__ │ │ │ │ ├── panoptic_fpn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── panoptic_fpn_r101_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── panoptic_fpn_r2_50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── panoptic_fpn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── panoptic_fpn_r50_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_caffe_c4_mstrain_18k_voc0712.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_1x_voc0712.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_1x_voc0712_cocofmt.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_1x_voc0712.cpython-38.pyc │ │ │ │ ├── ssd300_voc0712.cpython-38.pyc │ │ │ │ └── ssd512_voc0712.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── pisa_faster_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_faster_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_mask_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_mask_rcnn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_retinanet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_retinanet_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── pisa_ssd300_coco.cpython-38.pyc │ │ │ │ └── pisa_ssd512_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── point_rend_r50_caffe_fpn_mstrain_1x_coco.cpython-38.pyc │ │ │ │ └── point_rend_r50_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ ├── point_rend_r50_caffe_fpn_mstrain_1x_coco.py │ │ │ └── point_rend_r50_caffe_fpn_mstrain_3x_coco.py │ │ ├── pvt │ │ │ ├── __pycache__ │ │ │ │ ├── retinanet_pvt-l_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvt-m_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvt-s_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvt-t_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvtv2-b0_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvtv2-b1_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvtv2-b2_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvtv2-b3_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_pvtv2-b4_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_pvtv2-b5_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── queryinst_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ ├── queryinst_r101_fpn_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ ├── queryinst_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── queryinst_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ └── queryinst_r50_fpn_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-1.6GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-3.2GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-3.2GF_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-400MF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-4GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_regnetx-800MF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-1.6GF_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-12GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-3.2GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-3.2GF_fpn_mdconv_c3-c5_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-3.2GF_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-400MF_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-4GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-4GF_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-6.4GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-800MF_fpn_mstrain-poly_3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_regnetx-8GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_regnetx-1.6GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_regnetx-3.2GF_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_regnetx-800MF_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── bbox_r50_grid_center_fpn_gn-neck+head_1x_coco.cpython-38.pyc │ │ │ │ ├── bbox_r50_grid_fpn_gn-neck+head_1x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_minmax_r50_fpn_gn-neck+head_1x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_r101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_r101_fpn_gn-neck+head_2x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_r50_fpn_gn-neck+head_1x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_r50_fpn_gn-neck+head_2x_coco.cpython-38.pyc │ │ │ │ ├── reppoints_moment_x101_fpn_dconv_c3-c5_gn-neck+head_2x_coco.cpython-38.pyc │ │ │ │ └── reppoints_partial_minmax_r50_fpn_gn-neck+head_1x_coco.cpython-38.pyc │ │ │ ├── bbox_r50_grid_center_fpn_gn-neck+head_1x_coco.py │ │ │ ├── bbox_r50_grid_fpn_gn-neck+head_1x_coco.py │ │ │ ├── metafile.yml │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r2_101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── htc_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r2_101_fpn_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.cpython-38.pyc │ │ │ │ ├── cascade_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_s101_fpn_syncbn-backbone+head_mstrain-range_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_s50_fpn_syncbn-backbone+head_mstrain-range_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_s101_fpn_syncbn-backbone+head_mstrain_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_s50_fpn_syncbn-backbone+head_mstrain_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r50_fpn_rsb-pretrain_1x_coco.cpython-38.pyc │ │ │ │ ├── faster_rcnn_r50_fpn_rsb-pretrain_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_rsb-pretrain_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_r50_fpn_rsb-pretrain_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── ascend_retinanet_r18_fpn_1x8_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r101_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r101_fpn_mstrain_640-800_3x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r18_fpn_1x8_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r18_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_caffe_fpn_mstrain_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_caffe_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_caffe_fpn_mstrain_3x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_90k_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_r50_fpn_mstrain_640-800_3x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_x101_32x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── retinanet_x101_64x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ └── retinanet_x101_64x4d_fpn_mstrain_640-800_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_multi_branch_cascade_mask_rcnn_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_multi_branch_mask_rcnn_pvtv2-b0_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_multi_branch_panoptic_fpn_r2_50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_single_branch_cascade_mask_rcnn_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_single_branch_mask_rcnn_pvtv2-b0_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_fixed_single_branch_panoptic_fpn_r2_50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_search_cascade_mask_rcnn_convnext-t_p4_w7_fpn_giou_4conv1f_fp16_ms-crop_3x_coco.cpython-38.pyc │ │ │ │ ├── rfnext_search_cascade_mask_rcnn_hrnetv2p_w18_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_search_cascade_mask_rcnn_r2_101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── rfnext_search_mask_rcnn_pvtv2-b0_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── rfnext_search_panoptic_fpn_r2_50_fpn_fp16_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ ├── rpn │ │ │ ├── __pycache__ │ │ │ │ ├── rpn_r101_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r50_caffe_c4_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r50_caffe_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_r50_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── rpn_x101_32x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── rpn_x101_32x4d_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── rpn_x101_64x4d_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── rpn_x101_64x4d_fpn_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── sabl_cascade_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_cascade_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_faster_rcnn_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_faster_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_retinanet_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_retinanet_r101_fpn_gn_1x_coco.cpython-38.pyc │ │ │ │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_480_960_coco.cpython-38.pyc │ │ │ │ ├── sabl_retinanet_r101_fpn_gn_2x_ms_640_800_coco.cpython-38.pyc │ │ │ │ ├── sabl_retinanet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── sabl_retinanet_r50_fpn_gn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── scnet_r101_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── scnet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── scnet_r50_fpn_20e_coco.cpython-38.pyc │ │ │ │ ├── scnet_x101_64x4d_fpn_20e_coco.cpython-38.pyc │ │ │ │ └── scnet_x101_64x4d_fpn_8x1_20e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── faster_rcnn_r50_fpn_gn-all_scratch_6x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_gn-all_scratch_6x_coco.cpython-38.pyc │ │ │ ├── faster_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ │ │ ├── mask_rcnn_r50_fpn_gn-all_scratch_6x_coco.py │ │ │ └── metafile.yml │ │ ├── seesaw_loss │ │ │ ├── __pycache__ │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── cascade_mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r101_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_random_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_sample1e-3_seesaw_loss_normed_mask_mstrain_2x_lvis_v1.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_mocov2-pretrain_ms-2x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_swav-pretrain_1x_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_swav-pretrain_ms-2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_32x2_270k_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_32x2_90k_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_scp_32x2_270k_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_ssj_scp_32x2_90k_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── decoupled_solo_light_r50_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── decoupled_solo_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── decoupled_solo_r50_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solo_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── solo_r50_fpn_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── solov2_light_r18_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_light_r34_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_light_r50_dcn_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_light_r50_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_r101_dcn_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_r101_fpn_3x_coco.cpython-38.pyc │ │ │ │ ├── solov2_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── solov2_r50_fpn_3x_coco.cpython-38.pyc │ │ │ │ └── solov2_x101_dcn_fpn_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── sparse_rcnn_r101_fpn_300_proposals_crop_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ ├── sparse_rcnn_r101_fpn_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ ├── sparse_rcnn_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── sparse_rcnn_r50_fpn_300_proposals_crop_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ │ └── sparse_rcnn_r50_fpn_mstrain_480-800_3x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── ascend_ssd300_coco.cpython-38.pyc │ │ │ │ ├── ssd300_coco.cpython-38.pyc │ │ │ │ ├── ssd300_fp16_coco.cpython-38.pyc │ │ │ │ ├── ssd512_coco.cpython-38.pyc │ │ │ │ ├── ssd512_fp16_coco.cpython-38.pyc │ │ │ │ └── ssdlite_mobilenetv2_scratch_600e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_caffe_fpn_syncbn-all_rpn-2conv_lsj_400e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_100e_fp16_coco.cpython-38.pyc │ │ │ │ └── mask_rcnn_r50_fpn_syncbn-all_rpn-2conv_lsj_50e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── mask_rcnn_swin-s-p4-w7_fpn_fp16_ms-crop-3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_swin-t-p4-w7_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_swin-t-p4-w7_fpn_fp16_ms-crop-3x_coco.cpython-38.pyc │ │ │ │ ├── mask_rcnn_swin-t-p4-w7_fpn_ms-crop-3x_coco.cpython-38.pyc │ │ │ │ └── retinanet_swin-t-p4-w7_fpn_1x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── retinanet_timm_efficientnet_b1_fpn_1x_coco.cpython-38.pyc │ │ │ │ └── retinanet_timm_tv_resnet50_fpn_1x_coco.cpython-38.pyc │ │ │ ├── retinanet_timm_efficientnet_b1_fpn_1x_coco.py │ │ │ └── retinanet_timm_tv_resnet50_fpn_1x_coco.py │ │ ├── tood │ │ │ ├── __pycache__ │ │ │ │ ├── tood_r101_fpn_dconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── tood_r101_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── tood_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── tood_r50_fpn_anchor_based_1x_coco.cpython-38.pyc │ │ │ │ ├── tood_r50_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── tood_x101_64x4d_fpn_dconv_c4-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ └── tood_x101_64x4d_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── tridentnet_r50_caffe_1x_coco.cpython-38.pyc │ │ │ │ ├── tridentnet_r50_caffe_mstrain_1x_coco.cpython-38.pyc │ │ │ │ └── tridentnet_r50_caffe_mstrain_3x_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ ├── tridentnet_r50_caffe_1x_coco.py │ │ │ ├── tridentnet_r50_caffe_mstrain_1x_coco.py │ │ │ └── tridentnet_r50_caffe_mstrain_3x_coco.py │ │ ├── vfnet │ │ │ ├── __pycache__ │ │ │ │ ├── vfnet_r101_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r101_fpn_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r101_fpn_mdconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r101_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r2_101_fpn_mdconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r2_101_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r50_fpn_1x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r50_fpn_mdconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_r50_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_x101_32x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_x101_32x4d_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ │ ├── vfnet_x101_64x4d_fpn_mdconv_c3-c5_mstrain_2x_coco.cpython-38.pyc │ │ │ │ └── vfnet_x101_64x4d_fpn_mstrain_2x_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ └── ssd300_wider_face.cpython-38.pyc │ │ │ └── ssd300_wider_face.py │ │ ├── yolact │ │ │ ├── __pycache__ │ │ │ │ ├── yolact_r101_1x8_coco.cpython-38.pyc │ │ │ │ ├── yolact_r50_1x8_coco.cpython-38.pyc │ │ │ │ └── yolact_r50_8x8_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ ├── yolact_r101_1x8_coco.py │ │ │ ├── yolact_r50_1x8_coco.py │ │ │ └── yolact_r50_8x8_coco.py │ │ ├── yolo │ │ │ ├── __pycache__ │ │ │ │ ├── yolov3_d53_320_273e_coco.cpython-38.pyc │ │ │ │ ├── yolov3_d53_fp16_mstrain-608_273e_coco.cpython-38.pyc │ │ │ │ ├── yolov3_d53_mstrain-416_273e_coco.cpython-38.pyc │ │ │ │ ├── yolov3_d53_mstrain-608_273e_coco.cpython-38.pyc │ │ │ │ ├── yolov3_mobilenetv2_320_300e_coco.cpython-38.pyc │ │ │ │ └── yolov3_mobilenetv2_mstrain-416_300e_coco.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── yolof_r50_c5_8x8_1x_coco.cpython-38.pyc │ │ │ │ └── yolof_r50_c5_8x8_iter-1x_coco.cpython-38.pyc │ │ │ ├── metafile.yml │ │ │ ├── yolof_r50_c5_8x8_1x_coco.py │ │ │ └── yolof_r50_c5_8x8_iter-1x_coco.py │ │ └── yolox │ │ │ ├── __pycache__ │ │ │ ├── yolox_l_8x8_300e_coco.cpython-38.pyc │ │ │ ├── yolox_m_8x8_300e_coco.cpython-38.pyc │ │ │ ├── yolox_nano_8x8_300e_coco.cpython-38.pyc │ │ │ ├── yolox_s_8x8_300e_coco.cpython-38.pyc │ │ │ ├── yolox_tiny_8x8_300e_coco.cpython-38.pyc │ │ │ └── yolox_x_8x8_300e_coco.cpython-38.pyc │ │ │ ├── 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 │ ├── model-index.yml │ └── tools │ │ ├── __pycache__ │ │ ├── test.cpython-38.pyc │ │ └── train.cpython-38.pyc │ │ ├── analysis_tools │ │ ├── __pycache__ │ │ │ ├── analyze_logs.cpython-38.pyc │ │ │ ├── analyze_results.cpython-38.pyc │ │ │ ├── benchmark.cpython-38.pyc │ │ │ ├── coco_error_analysis.cpython-38.pyc │ │ │ ├── coco_occluded_separated_recall.cpython-38.pyc │ │ │ ├── confusion_matrix.cpython-38.pyc │ │ │ ├── eval_metric.cpython-38.pyc │ │ │ ├── get_flops.cpython-38.pyc │ │ │ ├── optimize_anchors.cpython-38.pyc │ │ │ ├── robustness_eval.cpython-38.pyc │ │ │ └── test_robustness.cpython-38.pyc │ │ ├── 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 │ │ ├── __pycache__ │ │ │ ├── cityscapes.cpython-38.pyc │ │ │ ├── images2coco.cpython-38.pyc │ │ │ └── pascal_voc.cpython-38.pyc │ │ ├── cityscapes.py │ │ ├── images2coco.py │ │ └── pascal_voc.py │ │ ├── deployment │ │ ├── __pycache__ │ │ │ ├── mmdet2torchserve.cpython-38.pyc │ │ │ ├── mmdet_handler.cpython-38.pyc │ │ │ ├── onnx2tensorrt.cpython-38.pyc │ │ │ ├── pytorch2onnx.cpython-38.pyc │ │ │ ├── test.cpython-38.pyc │ │ │ └── test_torchserver.cpython-38.pyc │ │ ├── mmdet2torchserve.py │ │ ├── mmdet_handler.py │ │ ├── onnx2tensorrt.py │ │ ├── pytorch2onnx.py │ │ ├── test.py │ │ └── test_torchserver.py │ │ ├── dist_test.sh │ │ ├── dist_train.sh │ │ ├── misc │ │ ├── __pycache__ │ │ │ ├── browse_dataset.cpython-38.pyc │ │ │ ├── download_dataset.cpython-38.pyc │ │ │ ├── gen_coco_panoptic_test_info.cpython-38.pyc │ │ │ ├── get_image_metas.cpython-38.pyc │ │ │ ├── print_config.cpython-38.pyc │ │ │ └── split_coco.cpython-38.pyc │ │ ├── browse_dataset.py │ │ ├── download_dataset.py │ │ ├── gen_coco_panoptic_test_info.py │ │ ├── get_image_metas.py │ │ ├── print_config.py │ │ └── split_coco.py │ │ ├── model_converters │ │ ├── __pycache__ │ │ │ ├── detectron2pytorch.cpython-38.pyc │ │ │ ├── publish_model.cpython-38.pyc │ │ │ ├── regnet2mmdet.cpython-38.pyc │ │ │ ├── selfsup2mmdet.cpython-38.pyc │ │ │ ├── upgrade_model_version.cpython-38.pyc │ │ │ └── upgrade_ssd_version.cpython-38.pyc │ │ ├── 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 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── version.cpython-38.pyc │ ├── apis │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── inference.cpython-38.pyc │ │ ├── test.cpython-38.pyc │ │ └── train.cpython-38.pyc │ ├── inference.py │ ├── test.py │ └── train.py │ ├── core │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── anchor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── anchor_generator.cpython-38.pyc │ │ │ ├── builder.cpython-38.pyc │ │ │ ├── point_generator.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── builder.cpython-38.pyc │ │ │ ├── demodata.cpython-38.pyc │ │ │ └── transforms.cpython-38.pyc │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── approx_max_iou_assigner.cpython-38.pyc │ │ │ │ ├── ascend_assign_result.cpython-38.pyc │ │ │ │ ├── ascend_max_iou_assigner.cpython-38.pyc │ │ │ │ ├── assign_result.cpython-38.pyc │ │ │ │ ├── atss_assigner.cpython-38.pyc │ │ │ │ ├── base_assigner.cpython-38.pyc │ │ │ │ ├── center_region_assigner.cpython-38.pyc │ │ │ │ ├── grid_assigner.cpython-38.pyc │ │ │ │ ├── hungarian_assigner.cpython-38.pyc │ │ │ │ ├── mask_hungarian_assigner.cpython-38.pyc │ │ │ │ ├── max_iou_assigner.cpython-38.pyc │ │ │ │ ├── point_assigner.cpython-38.pyc │ │ │ │ ├── region_assigner.cpython-38.pyc │ │ │ │ ├── sim_ota_assigner.cpython-38.pyc │ │ │ │ ├── task_aligned_assigner.cpython-38.pyc │ │ │ │ └── uniform_assigner.cpython-38.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-38.pyc │ │ │ │ ├── base_bbox_coder.cpython-38.pyc │ │ │ │ ├── bucketing_bbox_coder.cpython-38.pyc │ │ │ │ ├── delta_xywh_bbox_coder.cpython-38.pyc │ │ │ │ ├── distance_point_bbox_coder.cpython-38.pyc │ │ │ │ ├── legacy_delta_xywh_bbox_coder.cpython-38.pyc │ │ │ │ ├── pseudo_bbox_coder.cpython-38.pyc │ │ │ │ ├── tblr_bbox_coder.cpython-38.pyc │ │ │ │ └── yolo_bbox_coder.cpython-38.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-38.pyc │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ └── iou2d_calculator.cpython-38.pyc │ │ │ ├── builder.py │ │ │ └── iou2d_calculator.py │ │ ├── match_costs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ └── match_cost.cpython-38.pyc │ │ │ ├── builder.py │ │ │ └── match_cost.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base_sampler.cpython-38.pyc │ │ │ │ ├── combined_sampler.cpython-38.pyc │ │ │ │ ├── instance_balanced_pos_sampler.cpython-38.pyc │ │ │ │ ├── iou_balanced_neg_sampler.cpython-38.pyc │ │ │ │ ├── mask_pseudo_sampler.cpython-38.pyc │ │ │ │ ├── mask_sampling_result.cpython-38.pyc │ │ │ │ ├── ohem_sampler.cpython-38.pyc │ │ │ │ ├── pseudo_sampler.cpython-38.pyc │ │ │ │ ├── random_sampler.cpython-38.pyc │ │ │ │ ├── sampling_result.cpython-38.pyc │ │ │ │ └── score_hlr_sampler.cpython-38.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-38.pyc │ │ │ ├── general_data.cpython-38.pyc │ │ │ └── instance_data.cpython-38.pyc │ │ ├── general_data.py │ │ └── instance_data.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bbox_overlaps.cpython-38.pyc │ │ │ ├── class_names.cpython-38.pyc │ │ │ ├── eval_hooks.cpython-38.pyc │ │ │ ├── mean_ap.cpython-38.pyc │ │ │ ├── panoptic_utils.cpython-38.pyc │ │ │ └── recall.cpython-38.pyc │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ ├── panoptic_utils.py │ │ └── recall.py │ ├── export │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── model_wrappers.cpython-38.pyc │ │ │ ├── onnx_helper.cpython-38.pyc │ │ │ └── pytorch2onnx.cpython-38.pyc │ │ ├── model_wrappers.py │ │ ├── onnx_helper.py │ │ └── pytorch2onnx.py │ ├── hook │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── checkloss_hook.cpython-38.pyc │ │ │ ├── ema.cpython-38.pyc │ │ │ ├── memory_profiler_hook.cpython-38.pyc │ │ │ ├── set_epoch_info_hook.cpython-38.pyc │ │ │ ├── sync_norm_hook.cpython-38.pyc │ │ │ ├── sync_random_size_hook.cpython-38.pyc │ │ │ ├── wandblogger_hook.cpython-38.pyc │ │ │ ├── yolox_lrupdater_hook.cpython-38.pyc │ │ │ └── yolox_mode_switch_hook.cpython-38.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-38.pyc │ │ │ ├── mask_target.cpython-38.pyc │ │ │ ├── structures.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── builder.cpython-38.pyc │ │ │ └── layer_decay_optimizer_constructor.cpython-38.pyc │ │ ├── builder.py │ │ └── layer_decay_optimizer_constructor.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bbox_nms.cpython-38.pyc │ │ │ ├── matrix_nms.cpython-38.pyc │ │ │ └── merge_augs.cpython-38.pyc │ │ ├── bbox_nms.py │ │ ├── matrix_nms.py │ │ └── merge_augs.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── dist_utils.cpython-38.pyc │ │ │ └── misc.cpython-38.pyc │ │ ├── dist_utils.py │ │ └── misc.py │ └── visualization │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── image.cpython-38.pyc │ │ └── palette.cpython-38.pyc │ │ ├── image.py │ │ └── palette.py │ ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── builder.cpython-38.pyc │ │ ├── cityscapes.cpython-38.pyc │ │ ├── coco.cpython-38.pyc │ │ ├── coco_occluded.cpython-38.pyc │ │ ├── coco_panoptic.cpython-38.pyc │ │ ├── custom.cpython-38.pyc │ │ ├── dataset_wrappers.cpython-38.pyc │ │ ├── deepfashion.cpython-38.pyc │ │ ├── lvis.cpython-38.pyc │ │ ├── objects365.cpython-38.pyc │ │ ├── openimages.cpython-38.pyc │ │ ├── utils.cpython-38.pyc │ │ ├── voc.cpython-38.pyc │ │ ├── wider_face.cpython-38.pyc │ │ └── xml_style.cpython-38.pyc │ ├── api_wrappers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── coco_api.cpython-38.pyc │ │ │ └── panoptic_evaluation.cpython-38.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-38.pyc │ │ │ ├── auto_augment.cpython-38.pyc │ │ │ ├── compose.cpython-38.pyc │ │ │ ├── formating.cpython-38.pyc │ │ │ ├── formatting.cpython-38.pyc │ │ │ ├── instaboost.cpython-38.pyc │ │ │ ├── loading.cpython-38.pyc │ │ │ ├── test_time_aug.cpython-38.pyc │ │ │ └── transforms.cpython-38.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-38.pyc │ │ │ ├── class_aware_sampler.cpython-38.pyc │ │ │ ├── distributed_sampler.cpython-38.pyc │ │ │ ├── group_sampler.cpython-38.pyc │ │ │ └── infinite_sampler.cpython-38.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-38.pyc │ │ └── builder.cpython-38.pyc │ ├── backbones │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── csp_darknet.cpython-38.pyc │ │ │ ├── darknet.cpython-38.pyc │ │ │ ├── detectors_resnet.cpython-38.pyc │ │ │ ├── detectors_resnext.cpython-38.pyc │ │ │ ├── efficientnet.cpython-38.pyc │ │ │ ├── hourglass.cpython-38.pyc │ │ │ ├── hrnet.cpython-38.pyc │ │ │ ├── mobilenet_v2.cpython-38.pyc │ │ │ ├── pvt.cpython-38.pyc │ │ │ ├── regnet.cpython-38.pyc │ │ │ ├── res2net.cpython-38.pyc │ │ │ ├── resnest.cpython-38.pyc │ │ │ ├── resnet.cpython-38.pyc │ │ │ ├── resnext.cpython-38.pyc │ │ │ ├── ssd_vgg.cpython-38.pyc │ │ │ ├── swin.cpython-38.pyc │ │ │ └── trident_resnet.cpython-38.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 │ │ ├── ssd_vgg.py │ │ ├── swin.py │ │ └── trident_resnet.py │ ├── builder.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── anchor_free_head.cpython-38.pyc │ │ │ ├── anchor_head.cpython-38.pyc │ │ │ ├── ascend_anchor_head.cpython-38.pyc │ │ │ ├── ascend_retina_head.cpython-38.pyc │ │ │ ├── ascend_ssd_head.cpython-38.pyc │ │ │ ├── atss_head.cpython-38.pyc │ │ │ ├── autoassign_head.cpython-38.pyc │ │ │ ├── base_dense_head.cpython-38.pyc │ │ │ ├── base_mask_head.cpython-38.pyc │ │ │ ├── cascade_rpn_head.cpython-38.pyc │ │ │ ├── centernet_head.cpython-38.pyc │ │ │ ├── centripetal_head.cpython-38.pyc │ │ │ ├── corner_head.cpython-38.pyc │ │ │ ├── ddod_head.cpython-38.pyc │ │ │ ├── deformable_detr_head.cpython-38.pyc │ │ │ ├── dense_test_mixins.cpython-38.pyc │ │ │ ├── detr_head.cpython-38.pyc │ │ │ ├── embedding_rpn_head.cpython-38.pyc │ │ │ ├── fcos_head.cpython-38.pyc │ │ │ ├── fovea_head.cpython-38.pyc │ │ │ ├── free_anchor_retina_head.cpython-38.pyc │ │ │ ├── fsaf_head.cpython-38.pyc │ │ │ ├── ga_retina_head.cpython-38.pyc │ │ │ ├── ga_rpn_head.cpython-38.pyc │ │ │ ├── gfl_head.cpython-38.pyc │ │ │ ├── guided_anchor_head.cpython-38.pyc │ │ │ ├── lad_head.cpython-38.pyc │ │ │ ├── ld_head.cpython-38.pyc │ │ │ ├── mask2former_head.cpython-38.pyc │ │ │ ├── maskformer_head.cpython-38.pyc │ │ │ ├── nasfcos_head.cpython-38.pyc │ │ │ ├── paa_head.cpython-38.pyc │ │ │ ├── pisa_retinanet_head.cpython-38.pyc │ │ │ ├── pisa_ssd_head.cpython-38.pyc │ │ │ ├── reppoints_head.cpython-38.pyc │ │ │ ├── retina_head.cpython-38.pyc │ │ │ ├── retina_sepbn_head.cpython-38.pyc │ │ │ ├── rpn_head.cpython-38.pyc │ │ │ ├── sabl_retina_head.cpython-38.pyc │ │ │ ├── solo_head.cpython-38.pyc │ │ │ ├── solov2_head.cpython-38.pyc │ │ │ ├── ssd_head.cpython-38.pyc │ │ │ ├── tood_head.cpython-38.pyc │ │ │ ├── vfnet_head.cpython-38.pyc │ │ │ ├── yolact_head.cpython-38.pyc │ │ │ ├── yolo_head.cpython-38.pyc │ │ │ ├── yolof_head.cpython-38.pyc │ │ │ └── yolox_head.cpython-38.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-38.pyc │ │ │ ├── atss.cpython-38.pyc │ │ │ ├── autoassign.cpython-38.pyc │ │ │ ├── base.cpython-38.pyc │ │ │ ├── cascade_rcnn.cpython-38.pyc │ │ │ ├── centernet.cpython-38.pyc │ │ │ ├── cornernet.cpython-38.pyc │ │ │ ├── ddod.cpython-38.pyc │ │ │ ├── deformable_detr.cpython-38.pyc │ │ │ ├── detr.cpython-38.pyc │ │ │ ├── fast_rcnn.cpython-38.pyc │ │ │ ├── faster_rcnn.cpython-38.pyc │ │ │ ├── fcos.cpython-38.pyc │ │ │ ├── fovea.cpython-38.pyc │ │ │ ├── fsaf.cpython-38.pyc │ │ │ ├── gfl.cpython-38.pyc │ │ │ ├── grid_rcnn.cpython-38.pyc │ │ │ ├── htc.cpython-38.pyc │ │ │ ├── kd_one_stage.cpython-38.pyc │ │ │ ├── lad.cpython-38.pyc │ │ │ ├── mask2former.cpython-38.pyc │ │ │ ├── mask_rcnn.cpython-38.pyc │ │ │ ├── mask_scoring_rcnn.cpython-38.pyc │ │ │ ├── maskformer.cpython-38.pyc │ │ │ ├── nasfcos.cpython-38.pyc │ │ │ ├── paa.cpython-38.pyc │ │ │ ├── panoptic_fpn.cpython-38.pyc │ │ │ ├── panoptic_two_stage_segmentor.cpython-38.pyc │ │ │ ├── point_rend.cpython-38.pyc │ │ │ ├── queryinst.cpython-38.pyc │ │ │ ├── reppoints_detector.cpython-38.pyc │ │ │ ├── retinanet.cpython-38.pyc │ │ │ ├── rpn.cpython-38.pyc │ │ │ ├── scnet.cpython-38.pyc │ │ │ ├── single_stage.cpython-38.pyc │ │ │ ├── single_stage_instance_seg.cpython-38.pyc │ │ │ ├── solo.cpython-38.pyc │ │ │ ├── solov2.cpython-38.pyc │ │ │ ├── sparse_rcnn.cpython-38.pyc │ │ │ ├── tood.cpython-38.pyc │ │ │ ├── trident_faster_rcnn.cpython-38.pyc │ │ │ ├── two_stage.cpython-38.pyc │ │ │ ├── vfnet.cpython-38.pyc │ │ │ ├── yolact.cpython-38.pyc │ │ │ ├── yolo.cpython-38.pyc │ │ │ ├── yolof.cpython-38.pyc │ │ │ └── yolox.cpython-38.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-38.pyc │ │ │ ├── accuracy.cpython-38.pyc │ │ │ ├── ae_loss.cpython-38.pyc │ │ │ ├── balanced_l1_loss.cpython-38.pyc │ │ │ ├── cross_entropy_loss.cpython-38.pyc │ │ │ ├── dice_loss.cpython-38.pyc │ │ │ ├── focal_loss.cpython-38.pyc │ │ │ ├── gaussian_focal_loss.cpython-38.pyc │ │ │ ├── gfocal_loss.cpython-38.pyc │ │ │ ├── ghm_loss.cpython-38.pyc │ │ │ ├── iou_loss.cpython-38.pyc │ │ │ ├── kd_loss.cpython-38.pyc │ │ │ ├── mse_loss.cpython-38.pyc │ │ │ ├── pisa_loss.cpython-38.pyc │ │ │ ├── seesaw_loss.cpython-38.pyc │ │ │ ├── smooth_l1_loss.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── varifocal_loss.cpython-38.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-38.pyc │ │ │ ├── bfp.cpython-38.pyc │ │ │ ├── channel_mapper.cpython-38.pyc │ │ │ ├── ct_resnet_neck.cpython-38.pyc │ │ │ ├── dilated_encoder.cpython-38.pyc │ │ │ ├── dyhead.cpython-38.pyc │ │ │ ├── fpg.cpython-38.pyc │ │ │ ├── fpn.cpython-38.pyc │ │ │ ├── fpn_carafe.cpython-38.pyc │ │ │ ├── hrfpn.cpython-38.pyc │ │ │ ├── nas_fpn.cpython-38.pyc │ │ │ ├── nasfcos_fpn.cpython-38.pyc │ │ │ ├── pafpn.cpython-38.pyc │ │ │ ├── rfp.cpython-38.pyc │ │ │ ├── ssd_neck.cpython-38.pyc │ │ │ ├── yolo_neck.cpython-38.pyc │ │ │ └── yolox_pafpn.cpython-38.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-38.pyc │ │ │ ├── dropblock.cpython-38.pyc │ │ │ ├── msdeformattn_pixel_decoder.cpython-38.pyc │ │ │ └── pixel_decoder.cpython-38.pyc │ │ ├── dropblock.py │ │ ├── msdeformattn_pixel_decoder.py │ │ └── pixel_decoder.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base_roi_head.cpython-38.pyc │ │ │ ├── cascade_roi_head.cpython-38.pyc │ │ │ ├── double_roi_head.cpython-38.pyc │ │ │ ├── dynamic_roi_head.cpython-38.pyc │ │ │ ├── grid_roi_head.cpython-38.pyc │ │ │ ├── htc_roi_head.cpython-38.pyc │ │ │ ├── mask_scoring_roi_head.cpython-38.pyc │ │ │ ├── pisa_roi_head.cpython-38.pyc │ │ │ ├── point_rend_roi_head.cpython-38.pyc │ │ │ ├── scnet_roi_head.cpython-38.pyc │ │ │ ├── sparse_roi_head.cpython-38.pyc │ │ │ ├── standard_roi_head.cpython-38.pyc │ │ │ ├── test_mixins.cpython-38.pyc │ │ │ └── trident_roi_head.cpython-38.pyc │ │ ├── base_roi_head.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bbox_head.cpython-38.pyc │ │ │ │ ├── convfc_bbox_head.cpython-38.pyc │ │ │ │ ├── dii_head.cpython-38.pyc │ │ │ │ ├── double_bbox_head.cpython-38.pyc │ │ │ │ ├── sabl_head.cpython-38.pyc │ │ │ │ └── scnet_bbox_head.cpython-38.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-38.pyc │ │ │ │ ├── coarse_mask_head.cpython-38.pyc │ │ │ │ ├── dynamic_mask_head.cpython-38.pyc │ │ │ │ ├── fcn_mask_head.cpython-38.pyc │ │ │ │ ├── feature_relay_head.cpython-38.pyc │ │ │ │ ├── fused_semantic_head.cpython-38.pyc │ │ │ │ ├── global_context_head.cpython-38.pyc │ │ │ │ ├── grid_head.cpython-38.pyc │ │ │ │ ├── htc_mask_head.cpython-38.pyc │ │ │ │ ├── mask_point_head.cpython-38.pyc │ │ │ │ ├── maskiou_head.cpython-38.pyc │ │ │ │ ├── scnet_mask_head.cpython-38.pyc │ │ │ │ └── scnet_semantic_head.cpython-38.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-38.pyc │ │ │ │ ├── base_roi_extractor.cpython-38.pyc │ │ │ │ ├── generic_roi_extractor.cpython-38.pyc │ │ │ │ └── single_level_roi_extractor.cpython-38.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-38.pyc │ │ │ │ └── res_layer.cpython-38.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-38.pyc │ │ │ ├── base_semantic_head.cpython-38.pyc │ │ │ └── panoptic_fpn_head.cpython-38.pyc │ │ ├── base_semantic_head.py │ │ ├── panoptic_fpn_head.py │ │ └── panoptic_fusion_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base_panoptic_fusion_head.cpython-38.pyc │ │ │ ├── heuristic_fusion_head.cpython-38.pyc │ │ │ └── maskformer_fusion_head.cpython-38.pyc │ │ │ ├── base_panoptic_fusion_head.py │ │ │ ├── heuristic_fusion_head.py │ │ │ └── maskformer_fusion_head.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── brick_wrappers.cpython-38.pyc │ │ ├── builder.cpython-38.pyc │ │ ├── ckpt_convert.cpython-38.pyc │ │ ├── conv_upsample.cpython-38.pyc │ │ ├── csp_layer.cpython-38.pyc │ │ ├── gaussian_target.cpython-38.pyc │ │ ├── inverted_residual.cpython-38.pyc │ │ ├── make_divisible.cpython-38.pyc │ │ ├── misc.cpython-38.pyc │ │ ├── normed_predictor.cpython-38.pyc │ │ ├── panoptic_gt_processing.cpython-38.pyc │ │ ├── point_sample.cpython-38.pyc │ │ ├── positional_encoding.cpython-38.pyc │ │ ├── res_layer.cpython-38.pyc │ │ ├── se_layer.cpython-38.pyc │ │ └── transformer.cpython-38.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-38.pyc │ │ ├── ascend_util.cpython-38.pyc │ │ ├── collect_env.cpython-38.pyc │ │ ├── compat_config.cpython-38.pyc │ │ ├── contextmanagers.cpython-38.pyc │ │ ├── logger.cpython-38.pyc │ │ ├── memory.cpython-38.pyc │ │ ├── misc.cpython-38.pyc │ │ ├── profiling.cpython-38.pyc │ │ ├── replace_cfg_vals.cpython-38.pyc │ │ ├── rfnext.cpython-38.pyc │ │ ├── setup_env.cpython-38.pyc │ │ ├── split_batch.cpython-38.pyc │ │ ├── util_distribution.cpython-38.pyc │ │ ├── util_mixins.cpython-38.pyc │ │ └── util_random.cpython-38.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 ├── maskrcnn_benchmark ├── _C.cpython-37m-x86_64-linux-gnu.so ├── _C.cpython-38-x86_64-linux-gnu.so ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── defaults.cpython-37.pyc │ │ ├── defaults.cpython-38.pyc │ │ ├── paths_catalog.cpython-37.pyc │ │ └── paths_catalog.cpython-38.pyc │ ├── defaults.py │ └── paths_catalog.py ├── csrc │ ├── ROIAlign.h │ ├── ROIPool.h │ ├── SigmoidFocalLoss.h │ ├── cpu │ │ ├── ROIAlign_cpu.cpp │ │ ├── nms_cpu.cpp │ │ └── vision.h │ ├── cuda │ │ ├── ROIAlign_cuda.cu │ │ ├── ROIPool_cuda.cu │ │ ├── SigmoidFocalLoss_cuda.cu │ │ ├── deform_conv_cuda.cu │ │ ├── deform_conv_kernel_cuda.cu │ │ ├── deform_pool_cuda.cu │ │ ├── deform_pool_kernel_cuda.cu │ │ ├── nms.cu │ │ └── vision.h │ ├── deform_conv.h │ ├── deform_pool.h │ ├── nms.h │ └── vision.cpp ├── data │ ├── README.md │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-37.pyc │ │ ├── build.cpython-38.pyc │ │ ├── collate_batch.cpython-37.pyc │ │ └── collate_batch.cpython-38.pyc │ ├── build.py │ ├── collate_batch.py │ ├── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── ABBS.cpython-38.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── coco.cpython-37.pyc │ │ │ ├── coco.cpython-38.pyc │ │ │ ├── concat_dataset.cpython-37.pyc │ │ │ ├── concat_dataset.cpython-38.pyc │ │ │ ├── lkuni.cpython-38.pyc │ │ │ ├── visual_genome.cpython-37.pyc │ │ │ ├── visual_genome.cpython-38.pyc │ │ │ ├── voc.cpython-37.pyc │ │ │ └── voc.cpython-38.pyc │ │ ├── coco.py │ │ ├── concat_dataset.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── coco │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── coco_eval.cpython-37.pyc │ │ │ │ │ └── coco_eval.cpython-38.pyc │ │ │ │ └── coco_eval.py │ │ │ ├── vg │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── sgg_eval.cpython-37.pyc │ │ │ │ │ ├── sgg_eval.cpython-38.pyc │ │ │ │ │ ├── vg_eval.cpython-37.pyc │ │ │ │ │ └── vg_eval.cpython-38.pyc │ │ │ │ ├── sgg_eval.py │ │ │ │ ├── vg_capgraphs_anno.json │ │ │ │ ├── vg_eval.py │ │ │ │ ├── vg_test_capgraph_anno.json │ │ │ │ ├── vg_test_caption_anno.json │ │ │ │ └── zeroshot_triplet.pytorch │ │ │ └── voc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── voc_eval.cpython-37.pyc │ │ │ │ └── voc_eval.cpython-38.pyc │ │ │ │ └── voc_eval.py │ │ ├── list_dataset.py │ │ ├── visual_genome.py │ │ └── voc.py │ ├── samplers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── distributed.cpython-37.pyc │ │ │ ├── distributed.cpython-38.pyc │ │ │ ├── grouped_batch_sampler.cpython-37.pyc │ │ │ ├── grouped_batch_sampler.cpython-38.pyc │ │ │ ├── iteration_based_batch_sampler.cpython-37.pyc │ │ │ └── iteration_based_batch_sampler.cpython-38.pyc │ │ ├── distributed.py │ │ ├── grouped_batch_sampler.py │ │ └── iteration_based_batch_sampler.py │ └── transforms │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-37.pyc │ │ ├── build.cpython-38.pyc │ │ ├── transforms.cpython-37.pyc │ │ └── transforms.cpython-38.pyc │ │ ├── build.py │ │ └── transforms.py ├── engine │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── bbox_aug.cpython-37.pyc │ │ ├── bbox_aug.cpython-38.pyc │ │ ├── inference.cpython-37.pyc │ │ ├── inference.cpython-38.pyc │ │ ├── trainer.cpython-37.pyc │ │ └── trainer.cpython-38.pyc │ ├── bbox_aug.py │ ├── inference.py │ └── trainer.py ├── image_retrieval │ ├── S2G-RETRIEVAL.md │ ├── __init__.py │ ├── dataloader.py │ ├── evaluation.py │ ├── model.py │ ├── modelv2.py │ └── preprocessing.py ├── layers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── batch_norm.cpython-37.pyc │ │ ├── batch_norm.cpython-38.pyc │ │ ├── entropy_loss.cpython-37.pyc │ │ ├── entropy_loss.cpython-38.pyc │ │ ├── kl_div_loss.cpython-37.pyc │ │ ├── kl_div_loss.cpython-38.pyc │ │ ├── label_smoothing_loss.cpython-37.pyc │ │ ├── label_smoothing_loss.cpython-38.pyc │ │ ├── misc.cpython-37.pyc │ │ ├── misc.cpython-38.pyc │ │ ├── nms.cpython-37.pyc │ │ ├── nms.cpython-38.pyc │ │ ├── roi_align.cpython-37.pyc │ │ ├── roi_align.cpython-38.pyc │ │ ├── roi_pool.cpython-37.pyc │ │ ├── roi_pool.cpython-38.pyc │ │ ├── sigmoid_focal_loss.cpython-37.pyc │ │ ├── sigmoid_focal_loss.cpython-38.pyc │ │ ├── smooth_l1_loss.cpython-37.pyc │ │ └── smooth_l1_loss.cpython-38.pyc │ ├── _utils.py │ ├── batch_norm.py │ ├── dcn │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── deform_conv_func.cpython-37.pyc │ │ │ ├── deform_conv_func.cpython-38.pyc │ │ │ ├── deform_conv_module.cpython-37.pyc │ │ │ ├── deform_conv_module.cpython-38.pyc │ │ │ ├── deform_pool_func.cpython-37.pyc │ │ │ ├── deform_pool_func.cpython-38.pyc │ │ │ ├── deform_pool_module.cpython-37.pyc │ │ │ └── deform_pool_module.cpython-38.pyc │ │ ├── deform_conv_func.py │ │ ├── deform_conv_module.py │ │ ├── deform_pool_func.py │ │ └── deform_pool_module.py │ ├── entropy_loss.py │ ├── kl_div_loss.py │ ├── label_smoothing_loss.py │ ├── misc.py │ ├── nms.py │ ├── roi_align.py │ ├── roi_pool.py │ ├── sigmoid_focal_loss.py │ └── smooth_l1_loss.py ├── modeling │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── balanced_positive_negative_sampler.cpython-37.pyc │ │ ├── balanced_positive_negative_sampler.cpython-38.pyc │ │ ├── box_coder.cpython-37.pyc │ │ ├── box_coder.cpython-38.pyc │ │ ├── kl_divergence.cpython-37.pyc │ │ ├── make_layers.cpython-37.pyc │ │ ├── make_layers.cpython-38.pyc │ │ ├── matcher.cpython-37.pyc │ │ ├── matcher.cpython-38.pyc │ │ ├── poolers.cpython-37.pyc │ │ ├── poolers.cpython-38.pyc │ │ ├── registry.cpython-37.pyc │ │ ├── registry.cpython-38.pyc │ │ ├── utils.cpython-37.pyc │ │ └── utils.cpython-38.pyc │ ├── backbone │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── backbone.cpython-37.pyc │ │ │ ├── backbone.cpython-38.pyc │ │ │ ├── fbnet.cpython-37.pyc │ │ │ ├── fbnet.cpython-38.pyc │ │ │ ├── fbnet_builder.cpython-37.pyc │ │ │ ├── fbnet_builder.cpython-38.pyc │ │ │ ├── fbnet_modeldef.cpython-37.pyc │ │ │ ├── fbnet_modeldef.cpython-38.pyc │ │ │ ├── fpn.cpython-37.pyc │ │ │ ├── fpn.cpython-38.pyc │ │ │ ├── resnet.cpython-37.pyc │ │ │ ├── resnet.cpython-38.pyc │ │ │ ├── vgg.cpython-37.pyc │ │ │ └── vgg.cpython-38.pyc │ │ ├── backbone.py │ │ ├── fbnet.py │ │ ├── fbnet_builder.py │ │ ├── fbnet_modeldef.py │ │ ├── fpn.py │ │ ├── resnet.py │ │ └── vgg.py │ ├── balanced_positive_negative_sampler.py │ ├── box_coder.py │ ├── detector │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── b_test.cpython-38.pyc │ │ │ ├── base_RS.cpython-38.pyc │ │ │ ├── detectors.cpython-37.pyc │ │ │ ├── detectors.cpython-38.pyc │ │ │ ├── generalized_rcnn.cpython-37.pyc │ │ │ ├── generalized_rcnn.cpython-38.pyc │ │ │ ├── img_split_bridge_tools.cpython-38.pyc │ │ │ ├── img_split_bridge_tools_hbb.cpython-38.pyc │ │ │ ├── roted.cpython-38.pyc │ │ │ ├── roted_RS.cpython-38.pyc │ │ │ ├── two_stage_RS.cpython-38.pyc │ │ │ ├── two_stage_RS_HBB.cpython-38.pyc │ │ │ ├── two_stage_RS_HBB_small.cpython-38.pyc │ │ │ ├── two_stage_RS_multi_12.cpython-38.pyc │ │ │ └── two_stage_RS_small.cpython-38.pyc │ │ ├── b_test.py │ │ ├── base_RS.py │ │ ├── detectors.py │ │ ├── generalized_rcnn.py │ │ ├── img_split_bridge_tools.py │ │ ├── img_split_bridge_tools_hbb.py │ │ ├── two_stage_RS_HBB.py │ │ └── two_stage_RS_multi_12.py │ ├── kl_divergence.py │ ├── make_layers.py │ ├── matcher.py │ ├── poolers.py │ ├── registry.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── roi_heads.cpython-37.pyc │ │ │ └── roi_heads.cpython-38.pyc │ │ ├── attribute_head │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── attribute_head.cpython-37.pyc │ │ │ │ ├── attribute_head.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── roi_attribute_feature_extractors.cpython-37.pyc │ │ │ │ ├── roi_attribute_feature_extractors.cpython-38.pyc │ │ │ │ ├── roi_attribute_predictors.cpython-37.pyc │ │ │ │ └── roi_attribute_predictors.cpython-38.pyc │ │ │ ├── attribute_head.py │ │ │ ├── loss.py │ │ │ ├── roi_attribute_feature_extractors.py │ │ │ └── roi_attribute_predictors.py │ │ ├── box_head │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── box_head.cpython-37.pyc │ │ │ │ ├── box_head.cpython-38.pyc │ │ │ │ ├── inference.cpython-37.pyc │ │ │ │ ├── inference.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── roi_box_feature_extractors.cpython-37.pyc │ │ │ │ ├── roi_box_feature_extractors.cpython-38.pyc │ │ │ │ ├── roi_box_predictors.cpython-37.pyc │ │ │ │ ├── roi_box_predictors.cpython-38.pyc │ │ │ │ ├── sampling.cpython-37.pyc │ │ │ │ └── sampling.cpython-38.pyc │ │ │ ├── box_head.py │ │ │ ├── inference.py │ │ │ ├── loss.py │ │ │ ├── roi_box_feature_extractors.py │ │ │ ├── roi_box_predictors.py │ │ │ └── sampling.py │ │ ├── keypoint_head │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── inference.cpython-37.pyc │ │ │ │ ├── inference.cpython-38.pyc │ │ │ │ ├── keypoint_head.cpython-37.pyc │ │ │ │ ├── keypoint_head.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── roi_keypoint_feature_extractors.cpython-37.pyc │ │ │ │ ├── roi_keypoint_feature_extractors.cpython-38.pyc │ │ │ │ ├── roi_keypoint_predictors.cpython-37.pyc │ │ │ │ └── roi_keypoint_predictors.cpython-38.pyc │ │ │ ├── inference.py │ │ │ ├── keypoint_head.py │ │ │ ├── loss.py │ │ │ ├── roi_keypoint_feature_extractors.py │ │ │ └── roi_keypoint_predictors.py │ │ ├── mask_head │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── inference.cpython-37.pyc │ │ │ │ ├── inference.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── mask_head.cpython-37.pyc │ │ │ │ ├── mask_head.cpython-38.pyc │ │ │ │ ├── roi_mask_feature_extractors.cpython-37.pyc │ │ │ │ ├── roi_mask_feature_extractors.cpython-38.pyc │ │ │ │ ├── roi_mask_predictors.cpython-37.pyc │ │ │ │ └── roi_mask_predictors.cpython-38.pyc │ │ │ ├── inference.py │ │ │ ├── loss.py │ │ │ ├── mask_head.py │ │ │ ├── roi_mask_feature_extractors.py │ │ │ └── roi_mask_predictors.py │ │ ├── model_transformer.py │ │ ├── relation_head │ │ │ ├── Autoencodermodel.py │ │ │ ├── PPG.py │ │ │ ├── PPG_HBB.py │ │ │ ├── SF_list.json │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── ABBS.cpython-38.pyc │ │ │ │ ├── Autoencodermodel.cpython-38.pyc │ │ │ │ ├── CF_filter.cpython-38.pyc │ │ │ │ ├── CF_filter_HBB.cpython-38.pyc │ │ │ │ ├── GL_BIAS.cpython-38.pyc │ │ │ │ ├── GL_BIAS_OBJ.cpython-38.pyc │ │ │ │ ├── GL_BIAS_OBJ_all.cpython-38.pyc │ │ │ │ ├── GL_BIAS_OBJ_neibor.cpython-38.pyc │ │ │ │ ├── GL_BIAS_new.cpython-38.pyc │ │ │ │ ├── JCL_1024.cpython-38.pyc │ │ │ │ ├── PPG.cpython-38.pyc │ │ │ │ ├── PPG_HBB.cpython-38.pyc │ │ │ │ ├── Tras_YS.cpython-38.pyc │ │ │ │ ├── VAE.cpython-38.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── agcn.cpython-38.pyc │ │ │ │ ├── classifier.cpython-38.pyc │ │ │ │ ├── embe.cpython-37.pyc │ │ │ │ ├── embe.cpython-38.pyc │ │ │ │ ├── embe_1016.cpython-38.pyc │ │ │ │ ├── embe_1017.cpython-38.pyc │ │ │ │ ├── embe_1018.cpython-38.pyc │ │ │ │ ├── embe_1019.cpython-38.pyc │ │ │ │ ├── embe_1027.cpython-38.pyc │ │ │ │ ├── embe_1027_51.cpython-38.pyc │ │ │ │ ├── embe_all_1031.cpython-38.pyc │ │ │ │ ├── fast_GTN1.cpython-38.pyc │ │ │ │ ├── gcn.cpython-38.pyc │ │ │ │ ├── gen.cpython-37.pyc │ │ │ │ ├── gen.cpython-38.pyc │ │ │ │ ├── gen_1017.cpython-38.pyc │ │ │ │ ├── gen_1017_1026.cpython-38.pyc │ │ │ │ ├── get_confu_pro.cpython-37.pyc │ │ │ │ ├── get_confu_pro.cpython-38.pyc │ │ │ │ ├── inference.cpython-37.pyc │ │ │ │ ├── inference.cpython-38.pyc │ │ │ │ ├── inference_mo.cpython-37.pyc │ │ │ │ ├── inference_mo.cpython-38.pyc │ │ │ │ ├── inits.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── model_HetSGG.cpython-38.pyc │ │ │ │ ├── model_HetSGGplus.cpython-38.pyc │ │ │ │ ├── model_Hybrid_Attention.cpython-38.pyc │ │ │ │ ├── model_bgnn.cpython-38.pyc │ │ │ │ ├── model_cross_transformer.cpython-37.pyc │ │ │ │ ├── model_cross_transformer.cpython-38.pyc │ │ │ │ ├── model_dual_transformer.cpython-37.pyc │ │ │ │ ├── model_dual_transformer.cpython-38.pyc │ │ │ │ ├── model_gpsnet.cpython-38.pyc │ │ │ │ ├── model_motifs.cpython-37.pyc │ │ │ │ ├── model_motifs.cpython-38.pyc │ │ │ │ ├── model_motifs_with_attribute.cpython-37.pyc │ │ │ │ ├── model_motifs_with_attribute.cpython-38.pyc │ │ │ │ ├── model_msg_passing.cpython-37.pyc │ │ │ │ ├── model_msg_passing.cpython-38.pyc │ │ │ │ ├── model_prototype.cpython-38.pyc │ │ │ │ ├── model_runet.cpython-38.pyc │ │ │ │ ├── model_transformer.cpython-37.pyc │ │ │ │ ├── model_transformer.cpython-38.pyc │ │ │ │ ├── model_transformer_SHA.cpython-37.pyc │ │ │ │ ├── model_transformer_SHA.cpython-38.pyc │ │ │ │ ├── model_vctree.cpython-37.pyc │ │ │ │ ├── model_vctree.cpython-38.pyc │ │ │ │ ├── model_vtranse.cpython-37.pyc │ │ │ │ ├── model_vtranse.cpython-38.pyc │ │ │ │ ├── relation_head.cpython-37.pyc │ │ │ │ ├── relation_head.cpython-38.pyc │ │ │ │ ├── roi_relation_feature_extractors.cpython-37.pyc │ │ │ │ ├── roi_relation_feature_extractors.cpython-38.pyc │ │ │ │ ├── roi_relation_predictors.cpython-37.pyc │ │ │ │ ├── roi_relation_predictors.cpython-38.pyc │ │ │ │ ├── sampling.cpython-37.pyc │ │ │ │ ├── sampling.cpython-38.pyc │ │ │ │ ├── sema_filter.cpython-38.pyc │ │ │ │ ├── utils_co_attention.cpython-37.pyc │ │ │ │ ├── utils_co_attention.cpython-38.pyc │ │ │ │ ├── utils_motifs.cpython-37.pyc │ │ │ │ ├── utils_motifs.cpython-38.pyc │ │ │ │ ├── utils_prototype.cpython-38.pyc │ │ │ │ ├── utils_relation.cpython-37.pyc │ │ │ │ ├── utils_relation.cpython-38.pyc │ │ │ │ ├── utils_treelstm.cpython-37.pyc │ │ │ │ ├── utils_treelstm.cpython-38.pyc │ │ │ │ ├── utils_vctree.cpython-37.pyc │ │ │ │ └── utils_vctree.cpython-38.pyc │ │ │ ├── agcn.py │ │ │ ├── best_model_HBB.pth │ │ │ ├── best_model_OBB.pth │ │ │ ├── classifier.py │ │ │ ├── feature_aug.py │ │ │ ├── gcn.py │ │ │ ├── inference.py │ │ │ ├── inits.py │ │ │ ├── loss.py │ │ │ ├── model_Cross_Attention.py │ │ │ ├── model_HetSGG.py │ │ │ ├── model_HetSGGplus.py │ │ │ ├── model_Hybrid_Attention.py │ │ │ ├── model_bgnn.py │ │ │ ├── model_cross_transformer.py │ │ │ ├── model_dual_transformer.py │ │ │ ├── model_gpsnet.py │ │ │ ├── model_motifs.py │ │ │ ├── model_motifs_with_attribute.py │ │ │ ├── model_msg_passing.py │ │ │ ├── model_prototype.py │ │ │ ├── model_runet.py │ │ │ ├── model_transformer.py │ │ │ ├── model_transformer_SHA.py │ │ │ ├── model_vctree.py │ │ │ ├── model_vtranse.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bias_module.cpython-37.pyc │ │ │ │ │ ├── bias_module.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── bias_module.py │ │ │ │ └── utils.py │ │ │ ├── rel_proposal_network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ │ └── models.cpython-38.pyc │ │ │ │ ├── loss.py │ │ │ │ └── models.py │ │ │ ├── relation_head.py │ │ │ ├── roi_relation_feature_extractors.py │ │ │ ├── roi_relation_predictors.py │ │ │ ├── sampling.py │ │ │ ├── sema_filter.py │ │ │ ├── utils_co_attention.py │ │ │ ├── utils_motifs.py │ │ │ ├── utils_motifs_SHA.py │ │ │ ├── utils_prototype.py │ │ │ ├── utils_relation.py │ │ │ ├── utils_treelstm.py │ │ │ └── utils_vctree.py │ │ ├── roi_heads.py │ │ └── rs_box_head │ │ │ ├── __pycache__ │ │ │ └── rs_box_head.cpython-38.pyc │ │ │ └── rs_box_head.py │ ├── rpn │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── anchor_generator.cpython-37.pyc │ │ │ ├── anchor_generator.cpython-38.pyc │ │ │ ├── inference.cpython-37.pyc │ │ │ ├── inference.cpython-38.pyc │ │ │ ├── loss.cpython-37.pyc │ │ │ ├── loss.cpython-38.pyc │ │ │ ├── rpn.cpython-37.pyc │ │ │ ├── rpn.cpython-38.pyc │ │ │ ├── utils.cpython-37.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── anchor_generator.py │ │ ├── inference.py │ │ ├── loss.py │ │ ├── retinanet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── inference.cpython-37.pyc │ │ │ │ ├── inference.cpython-38.pyc │ │ │ │ ├── loss.cpython-37.pyc │ │ │ │ ├── loss.cpython-38.pyc │ │ │ │ ├── retinanet.cpython-37.pyc │ │ │ │ └── retinanet.cpython-38.pyc │ │ │ ├── inference.py │ │ │ ├── loss.py │ │ │ └── retinanet.py │ │ ├── rpn.py │ │ └── utils.py │ └── utils.py ├── solver │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-37.pyc │ │ ├── build.cpython-38.pyc │ │ ├── lr_scheduler.cpython-37.pyc │ │ └── lr_scheduler.cpython-38.pyc │ ├── build.py │ └── lr_scheduler.py ├── structures │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── bounding_box.cpython-37.pyc │ │ ├── bounding_box.cpython-38.pyc │ │ ├── boxlist_ops.cpython-37.pyc │ │ ├── boxlist_ops.cpython-38.pyc │ │ ├── image_list.cpython-37.pyc │ │ ├── image_list.cpython-38.pyc │ │ ├── keypoint.cpython-37.pyc │ │ ├── keypoint.cpython-38.pyc │ │ ├── segmentation_mask.cpython-37.pyc │ │ └── segmentation_mask.cpython-38.pyc │ ├── bounding_box.py │ ├── boxlist_ops.py │ ├── image_list.py │ ├── keypoint.py │ └── segmentation_mask.py └── utils │ ├── README.md │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── c2_model_loading.cpython-37.pyc │ ├── c2_model_loading.cpython-38.pyc │ ├── checkpoint.cpython-37.pyc │ ├── checkpoint.cpython-38.pyc │ ├── collect_env.cpython-37.pyc │ ├── collect_env.cpython-38.pyc │ ├── comm.cpython-37.pyc │ ├── comm.cpython-38.pyc │ ├── cv2_util.cpython-37.pyc │ ├── cv2_util.cpython-38.pyc │ ├── env.cpython-37.pyc │ ├── env.cpython-38.pyc │ ├── global_buffer.cpython-38.pyc │ ├── imports.cpython-37.pyc │ ├── imports.cpython-38.pyc │ ├── logger.cpython-37.pyc │ ├── logger.cpython-38.pyc │ ├── metric_logger.cpython-37.pyc │ ├── metric_logger.cpython-38.pyc │ ├── miscellaneous.cpython-37.pyc │ ├── miscellaneous.cpython-38.pyc │ ├── model_serialization.cpython-37.pyc │ ├── model_serialization.cpython-38.pyc │ ├── model_zoo.cpython-37.pyc │ ├── model_zoo.cpython-38.pyc │ ├── registry.cpython-37.pyc │ ├── registry.cpython-38.pyc │ ├── timer.cpython-37.pyc │ └── timer.cpython-38.pyc │ ├── c2_model_loading.py │ ├── checkpoint.py │ ├── collect_env.py │ ├── comm.py │ ├── cv2_util.py │ ├── env.py │ ├── global_buffer.py │ ├── imports.py │ ├── logger.py │ ├── metric_logger.py │ ├── miscellaneous.py │ ├── model_serialization.py │ ├── model_zoo.py │ ├── registry.py │ └── timer.py ├── mmdetection_RS ├── .circleci │ └── config.yml ├── .dev_scripts │ ├── batch_test_list.py │ ├── batch_train_list.txt │ ├── benchmark_filter.py │ ├── benchmark_inference_fps.py │ ├── benchmark_test_image.py │ ├── check_links.py │ ├── convert_test_benchmark_script.py │ ├── convert_train_benchmark_script.py │ ├── gather_models.py │ ├── gather_test_benchmark_metric.py │ ├── gather_train_benchmark_metric.py │ ├── linter.sh │ ├── test_benchmark.sh │ ├── test_init_backbone.py │ └── train_benchmark.sh ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE │ │ ├── 1-bug-report.yml │ │ ├── 2-feature-request.yml │ │ ├── 3-new-model.yml │ │ ├── 4-documentation.yml │ │ ├── 5-reimplementation.yml │ │ └── config.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── build.yml │ │ ├── build_pat.yml │ │ ├── deploy.yml │ │ ├── lint.yml │ │ ├── stale.yml │ │ └── test_mim.yml ├── .gitignore ├── .owners.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── DATAshujuchuli │ ├── DOTA2COCO.py │ └── dota_utils.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh-CN.md ├── docker │ ├── Dockerfile │ └── serve │ │ ├── Dockerfile │ │ ├── config.properties │ │ └── entrypoint.sh ├── docs │ ├── en │ │ ├── 1_exist_data_model.md │ │ ├── 2_new_data_model.md │ │ ├── 3_exist_data_new_model.md │ │ ├── Makefile │ │ ├── _static │ │ │ ├── css │ │ │ │ └── readthedocs.css │ │ │ └── image │ │ │ │ └── mmdet-logo.png │ │ ├── api.rst │ │ ├── changelog.md │ │ ├── compatibility.md │ │ ├── conf.py │ │ ├── conventions.md │ │ ├── device │ │ │ └── npu.md │ │ ├── faq.md │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── make.bat │ │ ├── model_zoo.md │ │ ├── projects.md │ │ ├── robustness_benchmarking.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ ├── tutorials │ │ │ ├── config.md │ │ │ ├── customize_dataset.md │ │ │ ├── customize_losses.md │ │ │ ├── customize_models.md │ │ │ ├── customize_runtime.md │ │ │ ├── data_pipeline.md │ │ │ ├── finetune.md │ │ │ ├── how_to.md │ │ │ ├── index.rst │ │ │ ├── init_cfg.md │ │ │ ├── onnx2tensorrt.md │ │ │ ├── pytorch2onnx.md │ │ │ ├── test_results_submission.md │ │ │ └── useful_hooks.md │ │ └── useful_tools.md │ └── zh_cn │ │ ├── 1_exist_data_model.md │ │ ├── 2_new_data_model.md │ │ ├── 3_exist_data_new_model.md │ │ ├── Makefile │ │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ └── mmdet-logo.png │ │ ├── api.rst │ │ ├── article.md │ │ ├── compatibility.md │ │ ├── conf.py │ │ ├── conventions.md │ │ ├── faq.md │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── make.bat │ │ ├── model_zoo.md │ │ ├── projects.md │ │ ├── robustness_benchmarking.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ ├── tutorials │ │ ├── config.md │ │ ├── customize_dataset.md │ │ ├── customize_losses.md │ │ ├── customize_models.md │ │ ├── customize_runtime.md │ │ ├── data_pipeline.md │ │ ├── finetune.md │ │ ├── how_to.md │ │ ├── index.rst │ │ ├── init_cfg.md │ │ ├── onnx2tensorrt.md │ │ └── pytorch2onnx.md │ │ └── useful_tools.md ├── mmdet │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── inference.py │ │ ├── test.py │ │ └── train.py │ ├── core │ │ ├── __init__.py │ │ ├── anchor │ │ │ ├── __init__.py │ │ │ ├── anchor_generator.py │ │ │ ├── builder.py │ │ │ ├── point_generator.py │ │ │ └── utils.py │ │ ├── bbox │ │ │ ├── __init__.py │ │ │ ├── assigners │ │ │ │ ├── __init__.py │ │ │ │ ├── approx_max_iou_assigner.py │ │ │ │ ├── assign_result.py │ │ │ │ ├── atss_assigner.py │ │ │ │ ├── base_assigner.py │ │ │ │ ├── center_region_assigner.py │ │ │ │ ├── grid_assigner.py │ │ │ │ ├── hungarian_assigner.py │ │ │ │ ├── mask_hungarian_assigner.py │ │ │ │ ├── max_iou_assigner.py │ │ │ │ ├── point_assigner.py │ │ │ │ ├── region_assigner.py │ │ │ │ ├── sim_ota_assigner.py │ │ │ │ ├── task_aligned_assigner.py │ │ │ │ └── uniform_assigner.py │ │ │ ├── builder.py │ │ │ ├── coder │ │ │ │ ├── __init__.py │ │ │ │ ├── base_bbox_coder.py │ │ │ │ ├── bucketing_bbox_coder.py │ │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ │ ├── distance_point_bbox_coder.py │ │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ │ ├── pseudo_bbox_coder.py │ │ │ │ ├── tblr_bbox_coder.py │ │ │ │ └── yolo_bbox_coder.py │ │ │ ├── demodata.py │ │ │ ├── iou_calculators │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ └── iou2d_calculator.py │ │ │ ├── match_costs │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ └── match_cost.py │ │ │ ├── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── base_sampler.py │ │ │ │ ├── combined_sampler.py │ │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ │ ├── 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-yuanshi.py │ │ │ └── transforms.py │ │ ├── data_structures │ │ │ ├── __init__.py │ │ │ ├── general_data.py │ │ │ └── instance_data.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── bbox_overlaps.py │ │ │ ├── class_names.py │ │ │ ├── eval_hooks.py │ │ │ ├── mean_ap.py │ │ │ ├── panoptic_utils.py │ │ │ └── recall.py │ │ ├── export │ │ │ ├── __init__.py │ │ │ ├── model_wrappers.py │ │ │ ├── onnx_helper.py │ │ │ └── pytorch2onnx.py │ │ ├── hook │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ │ ├── mask_target.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── optimizers │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── layer_decay_optimizer_constructor.py │ │ ├── post_processing │ │ │ ├── __init__.py │ │ │ ├── bbox_nms.py │ │ │ ├── matrix_nms.py │ │ │ └── merge_augs.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── dist_utils.py │ │ │ └── misc.py │ │ └── visualization │ │ │ ├── __init__.py │ │ │ ├── image.py │ │ │ └── palette.py │ ├── datasets │ │ ├── __init__.py │ │ ├── api_wrappers │ │ │ ├── __init__.py │ │ │ ├── coco_api.py │ │ │ └── panoptic_evaluation.py │ │ ├── builder.py │ │ ├── cityscapes.py │ │ ├── coco.py │ │ ├── coco_panoptic.py │ │ ├── custom.py │ │ ├── custom_RS.py │ │ ├── dataset_wrappers.py │ │ ├── deepfashion.py │ │ ├── lvis.py │ │ ├── openimages.py │ │ ├── pipelines │ │ │ ├── __init__.py │ │ │ ├── auto_augment.py │ │ │ ├── compose.py │ │ │ ├── formating.py │ │ │ ├── formatting.py │ │ │ ├── instaboost.py │ │ │ ├── loading.py │ │ │ ├── test_time_aug.py │ │ │ └── transforms.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ │ ├── ssd_vgg.py │ │ │ ├── swin.py │ │ │ └── trident_resnet.py │ │ ├── builder.py │ │ ├── dense_heads │ │ │ ├── __init__.py │ │ │ ├── anchor_free_head.py │ │ │ ├── anchor_head.py │ │ │ ├── atss_head.py │ │ │ ├── autoassign_head.py │ │ │ ├── base_dense_head.py │ │ │ ├── base_mask_head.py │ │ │ ├── cascade_rpn_head.py │ │ │ ├── centernet_head.py │ │ │ ├── centripetal_head.py │ │ │ ├── corner_head.py │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── img_split_bridge_tools_hbb.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 copy.py │ │ │ ├── two_stage copy_0212.py │ │ │ ├── two_stage.py │ │ │ ├── two_stage111.py │ │ │ ├── vfnet.py │ │ │ ├── yolact.py │ │ │ ├── yolo.py │ │ │ ├── yolof.py │ │ │ └── yolox.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── accuracy.py │ │ │ ├── ae_loss.py │ │ │ ├── balanced_l1_loss.py │ │ │ ├── cross_entropy_loss.py │ │ │ ├── dice_loss.py │ │ │ ├── focal_loss.py │ │ │ ├── gaussian_focal_loss.py │ │ │ ├── gfocal_loss.py │ │ │ ├── ghm_loss.py │ │ │ ├── iou_loss.py │ │ │ ├── kd_loss.py │ │ │ ├── mse_loss.py │ │ │ ├── pisa_loss.py │ │ │ ├── seesaw_loss.py │ │ │ ├── smooth_l1_loss.py │ │ │ ├── utils.py │ │ │ └── varifocal_loss.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── bfp.py │ │ │ ├── channel_mapper.py │ │ │ ├── ct_resnet_neck.py │ │ │ ├── dilated_encoder.py │ │ │ ├── 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 │ │ │ ├── dropblock.py │ │ │ ├── msdeformattn_pixel_decoder.py │ │ │ └── pixel_decoder.py │ │ ├── roi_heads │ │ │ ├── __init__.py │ │ │ ├── base_roi_head.py │ │ │ ├── bbox_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── bbox_head.py │ │ │ │ ├── convfc_bbox_head.py │ │ │ │ ├── dii_head.py │ │ │ │ ├── double_bbox_head.py │ │ │ │ ├── sabl_head.py │ │ │ │ └── scnet_bbox_head.py │ │ │ ├── cascade_roi_head.py │ │ │ ├── double_roi_head.py │ │ │ ├── dynamic_roi_head.py │ │ │ ├── grid_roi_head.py │ │ │ ├── htc_roi_head.py │ │ │ ├── mask_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── coarse_mask_head.py │ │ │ │ ├── dynamic_mask_head.py │ │ │ │ ├── fcn_mask_head.py │ │ │ │ ├── feature_relay_head.py │ │ │ │ ├── fused_semantic_head.py │ │ │ │ ├── global_context_head.py │ │ │ │ ├── grid_head.py │ │ │ │ ├── htc_mask_head.py │ │ │ │ ├── mask_point_head.py │ │ │ │ ├── maskiou_head.py │ │ │ │ ├── scnet_mask_head.py │ │ │ │ └── scnet_semantic_head.py │ │ │ ├── mask_scoring_roi_head.py │ │ │ ├── pisa_roi_head.py │ │ │ ├── point_rend_roi_head.py │ │ │ ├── roi_extractors │ │ │ │ ├── __init__.py │ │ │ │ ├── base_roi_extractor.py │ │ │ │ ├── generic_roi_extractor.py │ │ │ │ └── single_level_roi_extractor.py │ │ │ ├── scnet_roi_head.py │ │ │ ├── shared_heads │ │ │ │ ├── __init__.py │ │ │ │ └── res_layer.py │ │ │ ├── sparse_roi_head.py │ │ │ ├── standard_roi_head.py │ │ │ ├── test_mixins.py │ │ │ └── trident_roi_head.py │ │ ├── seg_heads │ │ │ ├── __init__.py │ │ │ ├── base_semantic_head.py │ │ │ ├── panoptic_fpn_head.py │ │ │ └── panoptic_fusion_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── base_panoptic_fusion_head.py │ │ │ │ ├── heuristic_fusion_head.py │ │ │ │ └── maskformer_fusion_head.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── brick_wrappers.py │ │ │ ├── builder.py │ │ │ ├── ckpt_convert.py │ │ │ ├── conv_upsample.py │ │ │ ├── csp_layer.py │ │ │ ├── gaussian_target.py │ │ │ ├── inverted_residual.py │ │ │ ├── make_divisible.py │ │ │ ├── misc.py │ │ │ ├── normed_predictor.py │ │ │ ├── panoptic_gt_processing.py │ │ │ ├── point_sample.py │ │ │ ├── positional_encoding.py │ │ │ ├── res_layer.py │ │ │ ├── se_layer.py │ │ │ └── transformer.py │ ├── utils │ │ ├── __init__.py │ │ ├── collect_env.py │ │ ├── compat_config.py │ │ ├── contextmanagers.py │ │ ├── logger.py │ │ ├── memory.py │ │ ├── misc.py │ │ ├── profiling.py │ │ ├── replace_cfg_vals.py │ │ ├── setup_env.py │ │ ├── split_batch.py │ │ ├── util_distribution.py │ │ ├── util_mixins.py │ │ └── util_random.py │ └── version.py ├── model-index.yml ├── pytest.ini ├── 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 ├── setup.cfg ├── setup.py ├── tests │ ├── test_data │ │ ├── test_datasets │ │ │ ├── test_coco_dataset.py │ │ │ ├── test_common.py │ │ │ ├── test_custom_dataset.py │ │ │ ├── test_dataset_wrapper.py │ │ │ ├── test_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_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 │ │ ├── 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 │ ├── 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 ├── mmrote_RS ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh-CN.md ├── docker │ ├── Dockerfile │ └── serve │ │ ├── Dockerfile │ │ ├── config.properties │ │ └── entrypoint.sh ├── docs │ ├── en │ │ ├── Makefile │ │ ├── _static │ │ │ ├── css │ │ │ │ └── readthedocs.css │ │ │ └── image │ │ │ │ ├── mmrotate-logo.png │ │ │ │ ├── qq_group_qrcode.jpg │ │ │ │ └── zhihu_qrcode.jpg │ │ ├── api.rst │ │ ├── changelog.md │ │ ├── conf.py │ │ ├── faq.md │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── install.md │ │ ├── intro.md │ │ ├── make.bat │ │ ├── model_zoo.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ ├── tutorials │ │ │ ├── customize_config.md │ │ │ ├── customize_dataset.md │ │ │ ├── customize_models.md │ │ │ ├── customize_runtime.md │ │ │ └── index.rst │ │ └── useful_tools.md │ └── zh_cn │ │ ├── Makefile │ │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ ├── mmrotate-logo.png │ │ │ ├── qq_group_qrcode.jpg │ │ │ └── zhihu_qrcode.jpg │ │ ├── api.rst │ │ ├── changelog.md │ │ ├── conf.py │ │ ├── faq.md │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── install.md │ │ ├── intro.md │ │ ├── make.bat │ │ ├── model_zoo.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ ├── tutorials │ │ ├── customize_config.md │ │ ├── customize_dataset.md │ │ ├── customize_models.md │ │ ├── customize_runtime.md │ │ └── index.rst │ │ └── useful_tools.md ├── mmrotate │ ├── .mim │ │ ├── demo │ │ │ ├── 000.jpg │ │ │ ├── MMRotate_Tutorial.ipynb │ │ │ ├── demo.jpg │ │ │ ├── demo_txt.py │ │ │ ├── dota_demo.jpg │ │ │ ├── huge_demo111.py │ │ │ ├── huge_demo_txt.py │ │ │ ├── huge_image_demo.py │ │ │ ├── image_demo.py │ │ │ └── result.jpg │ │ ├── model-index.yml │ │ └── tools │ │ │ ├── analysis_tools │ │ │ ├── analyze_logs.py │ │ │ ├── benchmark.py │ │ │ ├── confusion_matrix.py │ │ │ └── get_flops.py │ │ │ ├── data │ │ │ ├── README.md │ │ │ ├── dota │ │ │ │ ├── README.md │ │ │ │ └── split │ │ │ │ │ ├── img_split.py │ │ │ │ │ └── split_configs │ │ │ │ │ ├── ms_test.json │ │ │ │ │ ├── ms_train.json │ │ │ │ │ ├── ms_trainval.json │ │ │ │ │ ├── ms_val.json │ │ │ │ │ ├── ss_test.json │ │ │ │ │ ├── ss_train.json │ │ │ │ │ ├── ss_trainval.json │ │ │ │ │ └── ss_val.json │ │ │ ├── hrsc │ │ │ │ └── README.md │ │ │ ├── hrsid │ │ │ │ └── README.md │ │ │ └── ssdd │ │ │ │ └── README.md │ │ │ ├── deployment │ │ │ ├── mmrotate2torchserve.py │ │ │ └── mmrotate_handler.py │ │ │ ├── dist_test.sh │ │ │ ├── dist_train.sh │ │ │ ├── misc │ │ │ ├── browse_dataset.py │ │ │ └── print_config.py │ │ │ ├── model_converters │ │ │ └── publish_model.py │ │ │ ├── slurm_test.sh │ │ │ ├── slurm_train.sh │ │ │ ├── test.py │ │ │ └── train.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── version.cpython-37.pyc │ │ └── version.cpython-38.pyc │ ├── apis │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── inference.cpython-38.pyc │ │ │ └── train.cpython-38.pyc │ │ ├── inference.py │ │ └── train.py │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __init__.cpython-38.pyc │ │ ├── anchor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── anchor_generator.cpython-37.pyc │ │ │ │ ├── anchor_generator.cpython-38.pyc │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── anchor_generator.py │ │ │ ├── builder.py │ │ │ └── utils.py │ │ ├── bbox │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ ├── transforms.cpython-37.pyc │ │ │ │ └── transforms.cpython-38.pyc │ │ │ ├── assigners │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── atss_kld_assigner.cpython-37.pyc │ │ │ │ │ ├── atss_kld_assigner.cpython-38.pyc │ │ │ │ │ ├── atss_obb_assigner.cpython-37.pyc │ │ │ │ │ ├── atss_obb_assigner.cpython-38.pyc │ │ │ │ │ ├── convex_assigner.cpython-37.pyc │ │ │ │ │ ├── convex_assigner.cpython-38.pyc │ │ │ │ │ ├── max_convex_iou_assigner.cpython-37.pyc │ │ │ │ │ ├── max_convex_iou_assigner.cpython-38.pyc │ │ │ │ │ ├── sas_assigner.cpython-37.pyc │ │ │ │ │ └── sas_assigner.cpython-38.pyc │ │ │ │ ├── atss_kld_assigner.py │ │ │ │ ├── atss_obb_assigner.py │ │ │ │ ├── convex_assigner.py │ │ │ │ ├── max_convex_iou_assigner.py │ │ │ │ └── sas_assigner.py │ │ │ ├── builder.py │ │ │ ├── coder │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── angle_coder.cpython-37.pyc │ │ │ │ │ ├── angle_coder.cpython-38.pyc │ │ │ │ │ ├── delta_midpointoffset_rbbox_coder.cpython-37.pyc │ │ │ │ │ ├── delta_midpointoffset_rbbox_coder.cpython-38.pyc │ │ │ │ │ ├── delta_xywha_hbbox_coder.cpython-37.pyc │ │ │ │ │ ├── delta_xywha_hbbox_coder.cpython-38.pyc │ │ │ │ │ ├── delta_xywha_rbbox_coder.cpython-37.pyc │ │ │ │ │ ├── delta_xywha_rbbox_coder.cpython-38.pyc │ │ │ │ │ ├── distance_angle_point_coder.cpython-37.pyc │ │ │ │ │ ├── distance_angle_point_coder.cpython-38.pyc │ │ │ │ │ ├── gliding_vertex_coder.cpython-37.pyc │ │ │ │ │ └── gliding_vertex_coder.cpython-38.pyc │ │ │ │ ├── angle_coder.py │ │ │ │ ├── delta_midpointoffset_rbbox_coder.py │ │ │ │ ├── delta_xywha_hbbox_coder.py │ │ │ │ ├── delta_xywha_rbbox_coder.py │ │ │ │ ├── distance_angle_point_coder.py │ │ │ │ └── gliding_vertex_coder.py │ │ │ ├── iou_calculators │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ │ ├── rotate_iou2d_calculator.cpython-37.pyc │ │ │ │ │ └── rotate_iou2d_calculator.cpython-38.pyc │ │ │ │ ├── builder.py │ │ │ │ └── rotate_iou2d_calculator.py │ │ │ ├── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── rotate_random_sampler.cpython-37.pyc │ │ │ │ │ └── rotate_random_sampler.cpython-38.pyc │ │ │ │ └── rotate_random_sampler.py │ │ │ ├── transforms.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── gmm.cpython-37.pyc │ │ │ │ └── gmm.cpython-38.pyc │ │ │ │ └── gmm.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── eval_map.cpython-37.pyc │ │ │ │ └── eval_map.cpython-38.pyc │ │ │ └── eval_map.py │ │ ├── patch │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── merge_results.cpython-37.pyc │ │ │ │ ├── merge_results.cpython-38.pyc │ │ │ │ ├── split.cpython-37.pyc │ │ │ │ └── split.cpython-38.pyc │ │ │ ├── merge_results.py │ │ │ └── split.py │ │ ├── post_processing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bbox_nms_rotated.cpython-37.pyc │ │ │ │ └── bbox_nms_rotated.cpython-38.pyc │ │ │ ├── bbox_nms_rotated.py │ │ │ └── bbox_nms_rotated_copy_0206.py │ │ └── visualization │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── image.cpython-37.pyc │ │ │ ├── image.cpython-38.pyc │ │ │ ├── palette.cpython-37.pyc │ │ │ └── palette.cpython-38.pyc │ │ │ ├── image.py │ │ │ └── palette.py │ ├── datasets │ │ ├── Compose_test.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── Compose_test.cpython-38.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── builder.cpython-37.pyc │ │ │ ├── builder.cpython-38.pyc │ │ │ ├── custom_test.cpython-38.pyc │ │ │ ├── custom_test_4_load.cpython-38.pyc │ │ │ ├── dota.cpython-37.pyc │ │ │ ├── dota.cpython-38.pyc │ │ │ ├── hrsc.cpython-37.pyc │ │ │ ├── hrsc.cpython-38.pyc │ │ │ ├── sar.cpython-37.pyc │ │ │ └── sar.cpython-38.pyc │ │ ├── builder.py │ │ ├── custom_test.py │ │ ├── custom_test_4_load.py │ │ ├── dota.py │ │ ├── hrsc.py │ │ ├── pipelines │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── loading.cpython-37.pyc │ │ │ │ ├── loading.cpython-38.pyc │ │ │ │ ├── transforms.cpython-37.pyc │ │ │ │ └── transforms.cpython-38.pyc │ │ │ ├── loading.py │ │ │ └── transforms.py │ │ └── sar.py │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── builder.cpython-37.pyc │ │ │ └── builder.cpython-38.pyc │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── re_resnet.cpython-37.pyc │ │ │ │ └── re_resnet.cpython-38.pyc │ │ │ └── re_resnet.py │ │ ├── builder.py │ │ ├── dense_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── csl_rotated_fcos_head.cpython-37.pyc │ │ │ │ ├── csl_rotated_fcos_head.cpython-38.pyc │ │ │ │ ├── csl_rotated_retina_head.cpython-37.pyc │ │ │ │ ├── csl_rotated_retina_head.cpython-38.pyc │ │ │ │ ├── kfiou_odm_refine_head.cpython-37.pyc │ │ │ │ ├── kfiou_odm_refine_head.cpython-38.pyc │ │ │ │ ├── kfiou_rotate_retina_head.cpython-37.pyc │ │ │ │ ├── kfiou_rotate_retina_head.cpython-38.pyc │ │ │ │ ├── kfiou_rotate_retina_refine_head.cpython-37.pyc │ │ │ │ ├── kfiou_rotate_retina_refine_head.cpython-38.pyc │ │ │ │ ├── odm_refine_head.cpython-37.pyc │ │ │ │ ├── odm_refine_head.cpython-38.pyc │ │ │ │ ├── oriented_reppoints_head.cpython-37.pyc │ │ │ │ ├── oriented_reppoints_head.cpython-38.pyc │ │ │ │ ├── oriented_rpn_head.cpython-37.pyc │ │ │ │ ├── oriented_rpn_head.cpython-38.pyc │ │ │ │ ├── rotated_anchor_free_head.cpython-37.pyc │ │ │ │ ├── rotated_anchor_free_head.cpython-38.pyc │ │ │ │ ├── rotated_anchor_head.cpython-37.pyc │ │ │ │ ├── rotated_anchor_head.cpython-38.pyc │ │ │ │ ├── rotated_atss_head.cpython-37.pyc │ │ │ │ ├── rotated_atss_head.cpython-38.pyc │ │ │ │ ├── rotated_fcos_head.cpython-37.pyc │ │ │ │ ├── rotated_fcos_head.cpython-38.pyc │ │ │ │ ├── rotated_reppoints_head.cpython-37.pyc │ │ │ │ ├── rotated_reppoints_head.cpython-38.pyc │ │ │ │ ├── rotated_retina_head.cpython-37.pyc │ │ │ │ ├── rotated_retina_head.cpython-38.pyc │ │ │ │ ├── rotated_retina_refine_head.cpython-37.pyc │ │ │ │ ├── rotated_retina_refine_head.cpython-38.pyc │ │ │ │ ├── rotated_rpn_head.cpython-37.pyc │ │ │ │ ├── rotated_rpn_head.cpython-38.pyc │ │ │ │ ├── sam_reppoints_head.cpython-37.pyc │ │ │ │ ├── sam_reppoints_head.cpython-38.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── csl_rotated_fcos_head.py │ │ │ ├── csl_rotated_retina_head.py │ │ │ ├── kfiou_odm_refine_head.py │ │ │ ├── kfiou_rotate_retina_head.py │ │ │ ├── kfiou_rotate_retina_refine_head.py │ │ │ ├── odm_refine_head.py │ │ │ ├── oriented_reppoints_head.py │ │ │ ├── oriented_rpn_head.py │ │ │ ├── rotated_anchor_free_head.py │ │ │ ├── rotated_anchor_head.py │ │ │ ├── rotated_atss_head.py │ │ │ ├── rotated_fcos_head.py │ │ │ ├── rotated_reppoints_head.py │ │ │ ├── rotated_retina_head.py │ │ │ ├── rotated_retina_refine_head.py │ │ │ ├── rotated_rpn_head.py │ │ │ ├── sam_reppoints_head.py │ │ │ └── utils.py │ │ ├── detectors │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── gliding_vertex.cpython-37.pyc │ │ │ │ ├── gliding_vertex.cpython-38.pyc │ │ │ │ ├── img_split_bridge_tools.cpython-38.pyc │ │ │ │ ├── oriented_rcnn.cpython-37.pyc │ │ │ │ ├── oriented_rcnn.cpython-38.pyc │ │ │ │ ├── r3det.cpython-37.pyc │ │ │ │ ├── r3det.cpython-38.pyc │ │ │ │ ├── redet.cpython-37.pyc │ │ │ │ ├── redet.cpython-38.pyc │ │ │ │ ├── roi_transformer.cpython-37.pyc │ │ │ │ ├── roi_transformer.cpython-38.pyc │ │ │ │ ├── rotate_faster_rcnn.cpython-37.pyc │ │ │ │ ├── rotate_faster_rcnn.cpython-38.pyc │ │ │ │ ├── rotated_fcos.cpython-37.pyc │ │ │ │ ├── rotated_fcos.cpython-38.pyc │ │ │ │ ├── rotated_reppoints.cpython-37.pyc │ │ │ │ ├── rotated_reppoints.cpython-38.pyc │ │ │ │ ├── rotated_retinanet.cpython-37.pyc │ │ │ │ ├── rotated_retinanet.cpython-38.pyc │ │ │ │ ├── s2anet.cpython-37.pyc │ │ │ │ ├── s2anet.cpython-38.pyc │ │ │ │ ├── single_stage.cpython-37.pyc │ │ │ │ ├── single_stage.cpython-38.pyc │ │ │ │ ├── two_stage.cpython-37.pyc │ │ │ │ ├── two_stage.cpython-38.pyc │ │ │ │ ├── two_stage_small.cpython-38.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── gliding_vertex.py │ │ │ ├── img_split_bridge_tools.py │ │ │ ├── oriented_rcnn.py │ │ │ ├── r3det.py │ │ │ ├── redet.py │ │ │ ├── roi_transformer.py │ │ │ ├── rotate_faster_rcnn.py │ │ │ ├── rotated_fcos.py │ │ │ ├── rotated_reppoints.py │ │ │ ├── rotated_retinanet.py │ │ │ ├── s2anet.py │ │ │ ├── single_stage.py │ │ │ ├── two_stage.py │ │ │ ├── two_stage111.py │ │ │ ├── two_stage_multi.py │ │ │ ├── two_stage_small.py │ │ │ └── utils.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── convex_giou_loss.cpython-37.pyc │ │ │ │ ├── convex_giou_loss.cpython-38.pyc │ │ │ │ ├── gaussian_dist_loss.cpython-37.pyc │ │ │ │ ├── gaussian_dist_loss.cpython-38.pyc │ │ │ │ ├── gaussian_dist_loss_v1.cpython-37.pyc │ │ │ │ ├── gaussian_dist_loss_v1.cpython-38.pyc │ │ │ │ ├── kf_iou_loss.cpython-37.pyc │ │ │ │ ├── kf_iou_loss.cpython-38.pyc │ │ │ │ ├── kld_reppoints_loss.cpython-37.pyc │ │ │ │ ├── kld_reppoints_loss.cpython-38.pyc │ │ │ │ ├── rotated_iou_loss.cpython-37.pyc │ │ │ │ ├── rotated_iou_loss.cpython-38.pyc │ │ │ │ ├── smooth_focal_loss.cpython-37.pyc │ │ │ │ ├── smooth_focal_loss.cpython-38.pyc │ │ │ │ ├── spatial_border_loss.cpython-37.pyc │ │ │ │ └── spatial_border_loss.cpython-38.pyc │ │ │ ├── convex_giou_loss.py │ │ │ ├── gaussian_dist_loss.py │ │ │ ├── gaussian_dist_loss_v1.py │ │ │ ├── kf_iou_loss.py │ │ │ ├── kld_reppoints_loss.py │ │ │ ├── rotated_iou_loss.py │ │ │ ├── smooth_focal_loss.py │ │ │ └── spatial_border_loss.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── re_fpn.cpython-37.pyc │ │ │ │ └── re_fpn.cpython-38.pyc │ │ │ └── re_fpn.py │ │ ├── roi_heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── gv_ratio_roi_head.cpython-37.pyc │ │ │ │ ├── gv_ratio_roi_head.cpython-38.pyc │ │ │ │ ├── oriented_standard_roi_head.cpython-37.pyc │ │ │ │ ├── oriented_standard_roi_head.cpython-38.pyc │ │ │ │ ├── roi_trans_roi_head.cpython-37.pyc │ │ │ │ ├── roi_trans_roi_head.cpython-38.pyc │ │ │ │ ├── rotate_standard_roi_head.cpython-37.pyc │ │ │ │ └── rotate_standard_roi_head.cpython-38.pyc │ │ │ ├── bbox_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── convfc_rbbox_head.cpython-37.pyc │ │ │ │ │ ├── convfc_rbbox_head.cpython-38.pyc │ │ │ │ │ ├── gv_bbox_head.cpython-37.pyc │ │ │ │ │ ├── gv_bbox_head.cpython-38.pyc │ │ │ │ │ ├── rotated_bbox_head.cpython-37.pyc │ │ │ │ │ └── rotated_bbox_head.cpython-38.pyc │ │ │ │ ├── convfc_rbbox_head.py │ │ │ │ ├── gv_bbox_head.py │ │ │ │ └── rotated_bbox_head.py │ │ │ ├── gv_ratio_roi_head.py │ │ │ ├── oriented_standard_roi_head.py │ │ │ ├── roi_extractors │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── rotate_single_level_roi_extractor.cpython-37.pyc │ │ │ │ │ └── rotate_single_level_roi_extractor.cpython-38.pyc │ │ │ │ └── rotate_single_level_roi_extractor.py │ │ │ ├── roi_trans_roi_head.py │ │ │ └── rotate_standard_roi_head.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── enn.cpython-37.pyc │ │ │ ├── enn.cpython-38.pyc │ │ │ ├── orconv.cpython-37.pyc │ │ │ ├── orconv.cpython-38.pyc │ │ │ ├── ripool.cpython-37.pyc │ │ │ └── ripool.cpython-38.pyc │ │ │ ├── enn.py │ │ │ ├── orconv.py │ │ │ └── ripool.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── collect_env.cpython-38.pyc │ │ │ ├── compat_config.cpython-38.pyc │ │ │ ├── logger.cpython-38.pyc │ │ │ ├── misc.cpython-38.pyc │ │ │ └── setup_env.cpython-38.pyc │ │ ├── collect_env.py │ │ ├── compat_config.py │ │ ├── logger.py │ │ ├── misc.py │ │ └── setup_env.py │ └── version.py ├── model-index.yml ├── requirements.txt ├── requirements │ ├── build.txt │ ├── docs.txt │ ├── mminstall.txt │ ├── optional.txt │ ├── readthedocs.txt │ ├── runtime.txt │ └── tests.txt ├── resources │ ├── mmrotate-logo.png │ ├── qq_group_qrcode.jpg │ └── zhihu_qrcode.jpg ├── result.jpg ├── setup.cfg ├── setup.py ├── tools │ ├── analysis_tools │ │ ├── analyze_logs.py │ │ ├── benchmark.py │ │ ├── confusion_matrix.py │ │ └── get_flops.py │ ├── data │ │ ├── README.md │ │ ├── dota │ │ │ ├── README.md │ │ │ └── split │ │ │ │ ├── img_split.py │ │ │ │ └── split_configs │ │ │ │ ├── ms_test.json │ │ │ │ ├── ms_train.json │ │ │ │ ├── ms_trainval.json │ │ │ │ ├── ms_val.json │ │ │ │ ├── ss_test.json │ │ │ │ ├── ss_train.json │ │ │ │ ├── ss_trainval.json │ │ │ │ └── ss_val.json │ │ ├── hrsc │ │ │ └── README.md │ │ ├── hrsid │ │ │ └── README.md │ │ └── ssdd │ │ │ └── README.md │ ├── deployment │ │ ├── mmrotate2torchserve.py │ │ └── mmrotate_handler.py │ ├── dist_test.sh │ ├── dist_train.sh │ ├── misc │ │ ├── browse_dataset.py │ │ └── print_config.py │ ├── model_converters │ │ └── publish_model.py │ ├── slurm_test.sh │ ├── slurm_train.sh │ ├── test.py │ └── train.py └── txt.py ├── requirements ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── setup.py └── tools ├── __pycache__ ├── DDPM.cpython-38.pyc ├── SBP.cpython-38.pyc ├── VAE.cpython-38.pyc ├── VAE_sx.cpython-38.pyc ├── judge.cpython-38.pyc ├── unet_1D_copy.cpython-38.pyc ├── utils.cpython-37.pyc ├── utils.cpython-38.pyc ├── wgan2.cpython-37.pyc ├── wgan2.cpython-38.pyc └── wgan2_GP.cpython-38.pyc ├── detector_pretest_net.py ├── detector_pretrain_net.py ├── generate_aug_feature.py ├── image_retrieval_main.py ├── relation_train_net.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .codegpt -------------------------------------------------------------------------------- /DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/DATASET.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/INSTALL.md -------------------------------------------------------------------------------- /METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/METRICS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/README.md -------------------------------------------------------------------------------- /SGG_ToolKit_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/SGG_ToolKit_environment.yml -------------------------------------------------------------------------------- /Scripts/LHBB_RPCM_predcls_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LHBB_RPCM_predcls_test.sh -------------------------------------------------------------------------------- /Scripts/LHBB_RPCM_predcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LHBB_RPCM_predcls_train.sh -------------------------------------------------------------------------------- /Scripts/LHBB_RPCM_sgcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LHBB_RPCM_sgcls_train.sh -------------------------------------------------------------------------------- /Scripts/LHBB_RPCM_sgdet_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LHBB_RPCM_sgdet_train.sh -------------------------------------------------------------------------------- /Scripts/LOBB_Motif_predcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_Motif_predcls_train.sh -------------------------------------------------------------------------------- /Scripts/LOBB_Motif_sgcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_Motif_sgcls_train.sh -------------------------------------------------------------------------------- /Scripts/LOBB_RPCM_predcls_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_RPCM_predcls_test.sh -------------------------------------------------------------------------------- /Scripts/LOBB_RPCM_predcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_RPCM_predcls_train.sh -------------------------------------------------------------------------------- /Scripts/LOBB_RPCM_sgcls_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_RPCM_sgcls_train.sh -------------------------------------------------------------------------------- /Scripts/LOBB_RPCM_sgdet_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Scripts/LOBB_RPCM_sgdet_train.sh -------------------------------------------------------------------------------- /Setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/Setup.ipynb -------------------------------------------------------------------------------- /configs/RSHBB/12coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSHBB/12coco_detection.py -------------------------------------------------------------------------------- /configs/RSHBB/STAR_hbb_predcls_sgcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSHBB/STAR_hbb_predcls_sgcls.py -------------------------------------------------------------------------------- /configs/RSHBB/STAR_hbb_sgdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSHBB/STAR_hbb_sgdet.py -------------------------------------------------------------------------------- /configs/RSHBB/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSHBB/coco_detection.py -------------------------------------------------------------------------------- /configs/RSOBB/STAR_obb_predcls_sgcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSOBB/STAR_obb_predcls_sgcls.py -------------------------------------------------------------------------------- /configs/RSOBB/STAR_obb_sgdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/configs/RSOBB/STAR_obb_sgdet.py -------------------------------------------------------------------------------- /csrc_backup/ROIAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/ROIAlign.h -------------------------------------------------------------------------------- /csrc_backup/ROIPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/ROIPool.h -------------------------------------------------------------------------------- /csrc_backup/SigmoidFocalLoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/SigmoidFocalLoss.h -------------------------------------------------------------------------------- /csrc_backup/cpu/ROIAlign_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cpu/ROIAlign_cpu.cpp -------------------------------------------------------------------------------- /csrc_backup/cpu/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cpu/nms_cpu.cpp -------------------------------------------------------------------------------- /csrc_backup/cpu/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cpu/vision.h -------------------------------------------------------------------------------- /csrc_backup/cuda/ROIAlign_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/ROIAlign_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/ROIPool_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/ROIPool_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/SigmoidFocalLoss_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/SigmoidFocalLoss_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/deform_conv_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/deform_conv_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/deform_conv_kernel_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/deform_conv_kernel_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/deform_pool_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/deform_pool_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/deform_pool_kernel_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/deform_pool_kernel_cuda.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/nms.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/nms.cu -------------------------------------------------------------------------------- /csrc_backup/cuda/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/cuda/vision.h -------------------------------------------------------------------------------- /csrc_backup/deform_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/deform_conv.h -------------------------------------------------------------------------------- /csrc_backup/deform_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/deform_pool.h -------------------------------------------------------------------------------- /csrc_backup/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/nms.h -------------------------------------------------------------------------------- /csrc_backup/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/csrc_backup/vision.cpp -------------------------------------------------------------------------------- /data/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/data/labels.json -------------------------------------------------------------------------------- /datasets/Category_Type_Info copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/datasets/Category_Type_Info copy.json -------------------------------------------------------------------------------- /datasets/Category_Type_Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/datasets/Category_Type_Info.json -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/box.jpg -------------------------------------------------------------------------------- /demo/demo2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/demo2.mp4 -------------------------------------------------------------------------------- /demo/demo_e2e_mask_rcnn_R_50_FPN_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/demo_e2e_mask_rcnn_R_50_FPN_1x.png -------------------------------------------------------------------------------- /demo/demo_e2e_mask_rcnn_X_101_32x8d_FPN_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/demo_e2e_mask_rcnn_X_101_32x8d_FPN_1x.png -------------------------------------------------------------------------------- /demo/distr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/distr.jpg -------------------------------------------------------------------------------- /demo/output_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/output_format.png -------------------------------------------------------------------------------- /demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/predictor.py -------------------------------------------------------------------------------- /demo/toolbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/toolbox.jpg -------------------------------------------------------------------------------- /demo/webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/demo/webcam.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/docker/docker-jupyter/Dockerfile -------------------------------------------------------------------------------- /docker/docker-jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/docker/docker-jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/environment.yml -------------------------------------------------------------------------------- /extra/__pycache__/utils_funcion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/extra/__pycache__/utils_funcion.cpython-37.pyc -------------------------------------------------------------------------------- /extra/utils_funcion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/extra/utils_funcion.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/atss/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/carafe/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/carafe/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/dcnv2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/dcnv2/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ddod/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ddod/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/detr/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/dyhead/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/dyhead/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/gn/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/groie/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/htc/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/lad/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/lad/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ld/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/paa/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/pvt/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/pvt/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/rfnext/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/rfnext/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/scratch/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/scratch/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/solo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/solo/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/solov2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/solov2/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/swin/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/swin/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/tood/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/tood/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/configs/yolox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/configs/yolox/metafile.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/model-index.yml -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/deployment/test.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/dist_test.sh -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/dist_train.sh -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/misc/print_config.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/misc/split_coco.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/slurm_test.sh -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/slurm_train.sh -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/test.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/.mim/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/.mim/tools/train.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/apis/inference.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/apis/test.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/apis/train.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/data_structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/data_structures/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/panoptic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/panoptic_utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/export/model_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/export/model_wrappers.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/export/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/export/onnx_helper.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/checkloss_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/ema.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/memory_profiler_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/memory_profiler_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/set_epoch_info_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/set_epoch_info_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/sync_norm_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/wandblogger_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/wandblogger_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/hook/yolox_lrupdater_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/hook/yolox_lrupdater_hook.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/optimizers/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/optimizers/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/optimizers/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/visualization/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/visualization/image.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/core/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/core/visualization/palette.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/coco_occluded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/coco_occluded.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/objects365.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/formatting.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/efficientnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/ddod_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/ddod_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/solo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/solo_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/solov2_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/solov2_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/mask2former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/mask2former.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/solov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/solov2.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/plugins/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/plugins/dropblock.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/brick_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/brick_wrappers.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/conv_upsample.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/csp_layer.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/models/utils/transformer.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/ascend_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/ascend_util.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/logger.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/memory.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/misc.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/rfnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/rfnext.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/util_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/util_distribution.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /lib_mmdet/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/lib_mmdet/mmdet/version.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/config/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/config/defaults.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/config/paths_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/config/paths_catalog.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/ROIAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/ROIAlign.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/ROIPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/ROIPool.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/SigmoidFocalLoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/SigmoidFocalLoss.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cpu/ROIAlign_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cpu/ROIAlign_cpu.cpp -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cpu/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cpu/nms_cpu.cpp -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cpu/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cpu/vision.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cuda/ROIAlign_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cuda/ROIAlign_cuda.cu -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cuda/ROIPool_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cuda/ROIPool_cuda.cu -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cuda/nms.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cuda/nms.cu -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/cuda/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/cuda/vision.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/deform_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/deform_conv.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/deform_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/deform_pool.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/nms.h -------------------------------------------------------------------------------- /maskrcnn_benchmark/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/csrc/vision.cpp -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/README.md -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/build.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/collate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/collate_batch.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/datasets/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/datasets/coco.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/datasets/voc.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/samplers/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/transforms/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/data/transforms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/data/transforms/build.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/engine/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/engine/bbox_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/engine/bbox_aug.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/engine/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/engine/inference.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/engine/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/engine/trainer.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/image_retrieval/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/image_retrieval/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/image_retrieval/model.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/image_retrieval/modelv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/image_retrieval/modelv2.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/_utils.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/batch_norm.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/dcn/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/entropy_loss.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/kl_div_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/kl_div_loss.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/misc.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/nms.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/roi_align.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/roi_pool.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/layers/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/layers/smooth_l1_loss.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/backbone/fbnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/backbone/fbnet.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/backbone/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/backbone/vgg.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/box_coder.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/detector/b_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/detector/b_test.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/kl_divergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/kl_divergence.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/make_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/make_layers.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/matcher.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/poolers.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/registry.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/attribute_head/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/box_head/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/keypoint_head/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/mask_head/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/relation_head/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/roi_heads/relation_head/rel_proposal_network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/rpn/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/rpn/inference.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/rpn/loss.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/retinanet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/rpn/rpn.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/rpn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/rpn/utils.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/modeling/utils.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/solver/__init__.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/solver/build.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/solver/lr_scheduler.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/structures/bounding_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/structures/bounding_box.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/structures/boxlist_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/structures/boxlist_ops.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/structures/image_list.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/structures/keypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/structures/keypoint.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/README.md -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/c2_model_loading.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/checkpoint.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/collect_env.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/comm.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/cv2_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/cv2_util.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/env.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/global_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/global_buffer.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/imports.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/logger.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/metric_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/metric_logger.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/miscellaneous.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/model_zoo.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/registry.py -------------------------------------------------------------------------------- /maskrcnn_benchmark/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/maskrcnn_benchmark/utils/timer.py -------------------------------------------------------------------------------- /mmdetection_RS/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.circleci/config.yml -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/check_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/check_links.py -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /mmdetection_RS/.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /mmdetection_RS/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmdetection_RS/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/build.yml -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/build_pat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/build_pat.yml -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/lint.yml -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/stale.yml -------------------------------------------------------------------------------- /mmdetection_RS/.github/workflows/test_mim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.github/workflows/test_mim.yml -------------------------------------------------------------------------------- /mmdetection_RS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.gitignore -------------------------------------------------------------------------------- /mmdetection_RS/.owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.owners.yml -------------------------------------------------------------------------------- /mmdetection_RS/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection_RS/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/.readthedocs.yml -------------------------------------------------------------------------------- /mmdetection_RS/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/CITATION.cff -------------------------------------------------------------------------------- /mmdetection_RS/DATAshujuchuli/DOTA2COCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/DATAshujuchuli/DOTA2COCO.py -------------------------------------------------------------------------------- /mmdetection_RS/DATAshujuchuli/dota_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/DATAshujuchuli/dota_utils.py -------------------------------------------------------------------------------- /mmdetection_RS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/LICENSE -------------------------------------------------------------------------------- /mmdetection_RS/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/MANIFEST.in -------------------------------------------------------------------------------- /mmdetection_RS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/README.md -------------------------------------------------------------------------------- /mmdetection_RS/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/README_zh-CN.md -------------------------------------------------------------------------------- /mmdetection_RS/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection_RS/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmdetection_RS/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docker/serve/config.properties -------------------------------------------------------------------------------- /mmdetection_RS/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/1_exist_data_model.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/Makefile -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/api.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/changelog.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/compatibility.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/conf.py -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/conventions.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/device/npu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/device/npu.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/faq.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/get_started.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/index.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/make.bat -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/model_zoo.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/projects.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/stat.py -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/switch_language.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/tutorials/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/tutorials/finetune.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/tutorials/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/tutorials/how_to.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/tutorials/index.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/tutorials/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/tutorials/init_cfg.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/en/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/en/useful_tools.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/2_new_data_model.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/article.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/compatibility.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/conventions.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/faq.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/projects.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/stat.py -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/tutorials/config.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- 1 | # 教程 5: 自定义训练配置 2 | -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/tutorials/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/tutorials/how_to.md -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/docs/zh_cn/tutorials/index.rst -------------------------------------------------------------------------------- /mmdetection_RS/docs/zh_cn/useful_tools.md: -------------------------------------------------------------------------------- 1 | ## 日志分析 2 | -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/apis/test.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/hook/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/hook/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/hook/ema.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/custom_RS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/custom_RS.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/builder.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/csp_layer.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/models/utils/se_layer.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/memory.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/misc.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdetection_RS/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/mmdet/version.py -------------------------------------------------------------------------------- /mmdetection_RS/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/model-index.yml -------------------------------------------------------------------------------- /mmdetection_RS/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/pytest.ini -------------------------------------------------------------------------------- /mmdetection_RS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/albu.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/build.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/docs.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.17 2 | -------------------------------------------------------------------------------- /mmdetection_RS/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | cityscapesscripts 2 | imagecorruptions 3 | sklearn 4 | -------------------------------------------------------------------------------- /mmdetection_RS/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/runtime.txt -------------------------------------------------------------------------------- /mmdetection_RS/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/requirements/tests.txt -------------------------------------------------------------------------------- /mmdetection_RS/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /mmdetection_RS/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /mmdetection_RS/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/data_pipeline.png -------------------------------------------------------------------------------- /mmdetection_RS/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/loss_curve.png -------------------------------------------------------------------------------- /mmdetection_RS/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection_RS/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection_RS/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/setup.cfg -------------------------------------------------------------------------------- /mmdetection_RS/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/setup.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_runtime/test_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_runtime/test_apis.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_hook.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_logger.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_memory.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /mmdetection_RS/tests/test_utils/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tests/test_utils/test_nms.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/deployment/test.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/dist_test.sh -------------------------------------------------------------------------------- /mmdetection_RS/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/dist_train.sh -------------------------------------------------------------------------------- /mmdetection_RS/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/misc/print_config.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/misc/split_coco.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmdetection_RS/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmdetection_RS/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/test.py -------------------------------------------------------------------------------- /mmdetection_RS/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmdetection_RS/tools/train.py -------------------------------------------------------------------------------- /mmrote_RS/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/CITATION.cff -------------------------------------------------------------------------------- /mmrote_RS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/LICENSE -------------------------------------------------------------------------------- /mmrote_RS/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/MANIFEST.in -------------------------------------------------------------------------------- /mmrote_RS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/README.md -------------------------------------------------------------------------------- /mmrote_RS/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/README_zh-CN.md -------------------------------------------------------------------------------- /mmrote_RS/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docker/Dockerfile -------------------------------------------------------------------------------- /mmrote_RS/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmrote_RS/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docker/serve/config.properties -------------------------------------------------------------------------------- /mmrote_RS/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmrote_RS/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/Makefile -------------------------------------------------------------------------------- /mmrote_RS/docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /mmrote_RS/docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/api.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/en/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/changelog.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/conf.py -------------------------------------------------------------------------------- /mmrote_RS/docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/faq.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/get_started.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/index.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/en/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/install.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/intro.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/make.bat -------------------------------------------------------------------------------- /mmrote_RS/docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/model_zoo.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/stat.py -------------------------------------------------------------------------------- /mmrote_RS/docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/switch_language.md -------------------------------------------------------------------------------- /mmrote_RS/docs/en/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/tutorials/index.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/en/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/en/useful_tools.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/changelog.md: -------------------------------------------------------------------------------- 1 | ## Changelog 2 | -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/faq.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/install.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/intro.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/stat.py -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/tutorials/index.rst -------------------------------------------------------------------------------- /mmrote_RS/docs/zh_cn/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/docs/zh_cn/useful_tools.md -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/000.jpg -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/demo.jpg -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/demo_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/demo_txt.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/dota_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/dota_demo.jpg -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/huge_demo111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/huge_demo111.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/huge_demo_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/huge_demo_txt.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/image_demo.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/demo/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/demo/result.jpg -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/model-index.yml -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/data/README.md -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/dist_test.sh -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/dist_train.sh -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/test.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/.mim/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/.mim/tools/train.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/apis/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/apis/inference.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/apis/train.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/anchor/builder.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/anchor/utils.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/builder.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/utils/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/bbox/utils/gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/bbox/utils/gmm.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/evaluation/eval_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/evaluation/eval_map.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/patch/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/patch/merge_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/patch/merge_results.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/patch/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/patch/split.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/core/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/core/visualization/image.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/Compose_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/Compose_test.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/builder.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/custom_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/custom_test.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/dota.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/hrsc.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/datasets/sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/datasets/sar.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/builder.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/dense_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/dense_heads/utils.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/detectors/base.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/detectors/r3det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/detectors/r3det.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/detectors/redet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/detectors/redet.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/detectors/s2anet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/detectors/s2anet.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/detectors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/detectors/utils.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/losses/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/necks/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/necks/re_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/necks/re_fpn.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/utils/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/utils/enn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/utils/enn.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/utils/orconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/utils/orconv.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/models/utils/ripool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/models/utils/ripool.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/__init__.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/collect_env.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/compat_config.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/logger.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/misc.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/utils/setup_env.py -------------------------------------------------------------------------------- /mmrote_RS/mmrotate/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/mmrotate/version.py -------------------------------------------------------------------------------- /mmrote_RS/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/model-index.yml -------------------------------------------------------------------------------- /mmrote_RS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements.txt -------------------------------------------------------------------------------- /mmrote_RS/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements/build.txt -------------------------------------------------------------------------------- /mmrote_RS/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements/docs.txt -------------------------------------------------------------------------------- /mmrote_RS/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.5.0 2 | -------------------------------------------------------------------------------- /mmrote_RS/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | imagecorruptions 2 | scipy 3 | sklearn 4 | -------------------------------------------------------------------------------- /mmrote_RS/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmrote_RS/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements/runtime.txt -------------------------------------------------------------------------------- /mmrote_RS/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/requirements/tests.txt -------------------------------------------------------------------------------- /mmrote_RS/resources/mmrotate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/resources/mmrotate-logo.png -------------------------------------------------------------------------------- /mmrote_RS/resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /mmrote_RS/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /mmrote_RS/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/result.jpg -------------------------------------------------------------------------------- /mmrote_RS/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/setup.cfg -------------------------------------------------------------------------------- /mmrote_RS/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/setup.py -------------------------------------------------------------------------------- /mmrote_RS/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /mmrote_RS/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /mmrote_RS/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /mmrote_RS/tools/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/README.md -------------------------------------------------------------------------------- /mmrote_RS/tools/data/dota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/dota/README.md -------------------------------------------------------------------------------- /mmrote_RS/tools/data/dota/split/img_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/dota/split/img_split.py -------------------------------------------------------------------------------- /mmrote_RS/tools/data/hrsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/hrsc/README.md -------------------------------------------------------------------------------- /mmrote_RS/tools/data/hrsid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/hrsid/README.md -------------------------------------------------------------------------------- /mmrote_RS/tools/data/ssdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/data/ssdd/README.md -------------------------------------------------------------------------------- /mmrote_RS/tools/deployment/mmrotate_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/deployment/mmrotate_handler.py -------------------------------------------------------------------------------- /mmrote_RS/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/dist_test.sh -------------------------------------------------------------------------------- /mmrote_RS/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/dist_train.sh -------------------------------------------------------------------------------- /mmrote_RS/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /mmrote_RS/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/misc/print_config.py -------------------------------------------------------------------------------- /mmrote_RS/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmrote_RS/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmrote_RS/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/test.py -------------------------------------------------------------------------------- /mmrote_RS/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/tools/train.py -------------------------------------------------------------------------------- /mmrote_RS/txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/mmrote_RS/txt.py -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.5.0 2 | -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | imagecorruptions 2 | scipy 3 | sklearn 4 | -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/setup.py -------------------------------------------------------------------------------- /tools/__pycache__/DDPM.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/DDPM.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/SBP.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/SBP.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/VAE.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/VAE.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/VAE_sx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/VAE_sx.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/judge.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/judge.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/unet_1D_copy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/unet_1D_copy.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/wgan2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/wgan2.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/wgan2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/wgan2.cpython-38.pyc -------------------------------------------------------------------------------- /tools/__pycache__/wgan2_GP.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/__pycache__/wgan2_GP.cpython-38.pyc -------------------------------------------------------------------------------- /tools/detector_pretest_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/detector_pretest_net.py -------------------------------------------------------------------------------- /tools/detector_pretrain_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/detector_pretrain_net.py -------------------------------------------------------------------------------- /tools/generate_aug_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/generate_aug_feature.py -------------------------------------------------------------------------------- /tools/image_retrieval_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/image_retrieval_main.py -------------------------------------------------------------------------------- /tools/relation_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/relation_train_net.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhuzi24/SGG-ToolKit/HEAD/tools/utils.py --------------------------------------------------------------------------------