├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── experiments ├── cfg_retinanet_ghm-c-only_r50_fpn_1x.py ├── cfg_retinanet_ghm_r50_fpn_1x.py ├── cfg_retinanet_origin_r50_fpn_1x.py ├── test.sh └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/README.md -------------------------------------------------------------------------------- /experiments/cfg_retinanet_ghm-c-only_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/experiments/cfg_retinanet_ghm-c-only_r50_fpn_1x.py -------------------------------------------------------------------------------- /experiments/cfg_retinanet_ghm_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/experiments/cfg_retinanet_ghm_r50_fpn_1x.py -------------------------------------------------------------------------------- /experiments/cfg_retinanet_origin_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/experiments/cfg_retinanet_origin_r50_fpn_1x.py -------------------------------------------------------------------------------- /experiments/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoxy169/GHM_Detection/HEAD/experiments/test.sh -------------------------------------------------------------------------------- /experiments/train.sh: -------------------------------------------------------------------------------- 1 | ../mmdetection/tools/dist_train.sh cfg_retinanet_ghm_r50_fpn_1x.py 8 2 | --------------------------------------------------------------------------------