├── .gitattributes ├── LICENSE ├── README.md ├── condinst_detector.py ├── condinst_head.py ├── configs ├── condinst_r50_1x.py ├── condinst_r50_3x.py ├── crowdhuman.py ├── r101_1x.py ├── r101_3x_ms.py ├── r50_1x.py ├── r50_3x_ms.py ├── swin_1x.py └── swin_3x.py ├── crowdhuman ├── __init__.py ├── crowdhuman.py └── crowdhuman_metric.py ├── dist_test.sh ├── dist_train.sh ├── head_hook.py ├── init.py ├── o2f_head.py ├── sfl.py ├── test.py └── train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/README.md -------------------------------------------------------------------------------- /condinst_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/condinst_detector.py -------------------------------------------------------------------------------- /condinst_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/condinst_head.py -------------------------------------------------------------------------------- /configs/condinst_r50_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/condinst_r50_1x.py -------------------------------------------------------------------------------- /configs/condinst_r50_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/condinst_r50_3x.py -------------------------------------------------------------------------------- /configs/crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/crowdhuman.py -------------------------------------------------------------------------------- /configs/r101_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/r101_1x.py -------------------------------------------------------------------------------- /configs/r101_3x_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/r101_3x_ms.py -------------------------------------------------------------------------------- /configs/r50_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/r50_1x.py -------------------------------------------------------------------------------- /configs/r50_3x_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/r50_3x_ms.py -------------------------------------------------------------------------------- /configs/swin_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/swin_1x.py -------------------------------------------------------------------------------- /configs/swin_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/configs/swin_3x.py -------------------------------------------------------------------------------- /crowdhuman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crowdhuman/crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/crowdhuman/crowdhuman.py -------------------------------------------------------------------------------- /crowdhuman/crowdhuman_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/crowdhuman/crowdhuman_metric.py -------------------------------------------------------------------------------- /dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/dist_test.sh -------------------------------------------------------------------------------- /dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/dist_train.sh -------------------------------------------------------------------------------- /head_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/head_hook.py -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/init.py -------------------------------------------------------------------------------- /o2f_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/o2f_head.py -------------------------------------------------------------------------------- /sfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/sfl.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongwolf/o2f/HEAD/train.py --------------------------------------------------------------------------------