├── .gitignore ├── FDConv_detection ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ ├── cityscapes_detection.py │ │ │ ├── cityscapes_instance.py │ │ │ ├── coco_detection.py │ │ │ ├── coco_instance.py │ │ │ ├── coco_instance_semantic.py │ │ │ ├── coco_panoptic.py │ │ │ ├── deepfashion.py │ │ │ ├── lvis_v0.5_instance.py │ │ │ ├── lvis_v1_instance.py │ │ │ ├── objects365v1_detection.py │ │ │ ├── objects365v2_detection.py │ │ │ ├── openimages_detection.py │ │ │ ├── voc0712.py │ │ │ └── wider_face.py │ │ ├── default_runtime.py │ │ ├── models │ │ │ ├── ascend_retinanet_r50_fpn.py │ │ │ ├── ascend_ssd300.py │ │ │ ├── cascade_mask_rcnn_r50_fpn.py │ │ │ ├── cascade_rcnn_r50_fpn.py │ │ │ ├── fast_rcnn_r50_fpn.py │ │ │ ├── faster_rcnn_r50_caffe_c4.py │ │ │ ├── faster_rcnn_r50_caffe_dc5.py │ │ │ ├── faster_rcnn_r50_fpn.py │ │ │ ├── mask_rcnn_r50_caffe_c4.py │ │ │ ├── mask_rcnn_r50_fpn.py │ │ │ ├── retinanet_r50_fpn.py │ │ │ ├── rpn_r50_caffe_c4.py │ │ │ ├── rpn_r50_fpn.py │ │ │ └── ssd300.py │ │ └── schedules │ │ │ ├── schedule_1x.py │ │ │ ├── schedule_20e.py │ │ │ └── schedule_2x.py │ ├── faster_rcnn │ │ ├── faster_rcnn_r50_fpn_1x_coco_FDConv.py │ │ └── metafile.yml │ └── mask_rcnn │ │ ├── mask_rcnn_r50_fpn_1x_coco_adamw_FDConv.py │ │ └── metafile.yml ├── dist_test.sh ├── dist_train.sh ├── get_flops.py ├── mmdet_custom │ ├── FDConv.py │ ├── __init__.py │ └── resnet.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py ├── LICENSE ├── README.md ├── assets └── method.png ├── requirements.txt ├── tools ├── convert2fdconv.sh └── convert_to_fdconv.py └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/.gitignore -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/cityscapes_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/cityscapes_detection.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/coco_instance_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/coco_instance_semantic.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/objects365v1_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/objects365v1_detection.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/objects365v2_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/objects365v2_detection.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/openimages_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/openimages_detection.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/ascend_retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/ascend_retinanet_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/ascend_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/ascend_ssd300.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/cascade_mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/cascade_mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/cascade_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/cascade_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/fast_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/fast_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/faster_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/faster_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/faster_rcnn_r50_caffe_dc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/faster_rcnn_r50_caffe_dc5.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/mask_rcnn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/mask_rcnn_r50_caffe_c4.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/mask_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/mask_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/rpn_r50_caffe_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/rpn_r50_caffe_c4.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /FDConv_detection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /FDConv_detection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_FDConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_FDConv.py -------------------------------------------------------------------------------- /FDConv_detection/configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /FDConv_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco_adamw_FDConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco_adamw_FDConv.py -------------------------------------------------------------------------------- /FDConv_detection/configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /FDConv_detection/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/dist_test.sh -------------------------------------------------------------------------------- /FDConv_detection/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/dist_train.sh -------------------------------------------------------------------------------- /FDConv_detection/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/get_flops.py -------------------------------------------------------------------------------- /FDConv_detection/mmdet_custom/FDConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/mmdet_custom/FDConv.py -------------------------------------------------------------------------------- /FDConv_detection/mmdet_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/mmdet_custom/__init__.py -------------------------------------------------------------------------------- /FDConv_detection/mmdet_custom/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/mmdet_custom/resnet.py -------------------------------------------------------------------------------- /FDConv_detection/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/slurm_test.sh -------------------------------------------------------------------------------- /FDConv_detection/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/slurm_train.sh -------------------------------------------------------------------------------- /FDConv_detection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/test.py -------------------------------------------------------------------------------- /FDConv_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/FDConv_detection/train.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/README.md -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/assets/method.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/convert2fdconv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/tools/convert2fdconv.sh -------------------------------------------------------------------------------- /tools/convert_to_fdconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/tools/convert_to_fdconv.py -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linwei-Chen/FDConv/HEAD/update.sh --------------------------------------------------------------------------------