├── .gitignore ├── LICENSE ├── README.md ├── configs ├── Base-Panoptic-FPN.yaml ├── Base-RCNN-MobileNet-FPN.yaml ├── Base-RCNN-VoVNet-FPN.yaml ├── faster_rcnn_Mv2_FPNLite_3x.yaml ├── faster_rcnn_V_19_FPNLite_3x.yaml ├── faster_rcnn_V_19_FPN_3x.yaml ├── faster_rcnn_V_19_dw_FPNLite_3x.yaml ├── faster_rcnn_V_19_slim_FPNLite_3x.yaml ├── faster_rcnn_V_19_slim_dw_FPNLite_3x.yaml ├── faster_rcnn_V_39_FPN_3x.yaml ├── faster_rcnn_V_57_FPN_3x.yaml ├── faster_rcnn_V_99_FPN_3x.yaml ├── mask_rcnn_V_19_FPNLite_3x.yaml ├── mask_rcnn_V_19_FPN_3x.yaml ├── mask_rcnn_V_39_FPN_3x.yaml ├── mask_rcnn_V_57_FPN_3x.yaml ├── mask_rcnn_V_99_FPN_3x.yaml ├── panoptic_fpn_V_39_FPN_3x.yaml └── panoptic_fpn_V_57_FPN_3x.yaml ├── train_net.py └── vovnet ├── __init__.py ├── config.py ├── mobilenet.py └── vovnet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/README.md -------------------------------------------------------------------------------- /configs/Base-Panoptic-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/Base-Panoptic-FPN.yaml -------------------------------------------------------------------------------- /configs/Base-RCNN-MobileNet-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/Base-RCNN-MobileNet-FPN.yaml -------------------------------------------------------------------------------- /configs/Base-RCNN-VoVNet-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/Base-RCNN-VoVNet-FPN.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_Mv2_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_Mv2_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_19_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_19_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_19_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_19_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_19_dw_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_19_dw_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_19_slim_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_19_slim_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_19_slim_dw_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_19_slim_dw_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_39_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_39_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_57_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_57_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/faster_rcnn_V_99_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/faster_rcnn_V_99_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/mask_rcnn_V_19_FPNLite_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/mask_rcnn_V_19_FPNLite_3x.yaml -------------------------------------------------------------------------------- /configs/mask_rcnn_V_19_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/mask_rcnn_V_19_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/mask_rcnn_V_39_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/mask_rcnn_V_39_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/mask_rcnn_V_57_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/mask_rcnn_V_57_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/mask_rcnn_V_99_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/mask_rcnn_V_99_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/panoptic_fpn_V_39_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/panoptic_fpn_V_39_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/panoptic_fpn_V_57_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/configs/panoptic_fpn_V_57_FPN_3x.yaml -------------------------------------------------------------------------------- /train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/train_net.py -------------------------------------------------------------------------------- /vovnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/vovnet/__init__.py -------------------------------------------------------------------------------- /vovnet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/vovnet/config.py -------------------------------------------------------------------------------- /vovnet/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/vovnet/mobilenet.py -------------------------------------------------------------------------------- /vovnet/vovnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youngwanLEE/vovnet-detectron2/HEAD/vovnet/vovnet.py --------------------------------------------------------------------------------