├── EResFD-main ├── LICENSE ├── NOTICE ├── build │ ├── lib.linux-x86_64-cpython-311 │ │ └── bbox.cpython-311-x86_64-linux-gnu.so │ └── temp.linux-x86_64-cpython-311 │ │ └── eval_tools │ │ └── box_overlaps.o ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── config.cpython-310.pyc │ │ ├── config.cpython-311.pyc │ │ ├── config.cpython-39.pyc │ │ ├── egohand.cpython-310.pyc │ │ ├── egohand.cpython-311.pyc │ │ ├── egohand.cpython-39.pyc │ │ ├── factory.cpython-310.pyc │ │ ├── factory.cpython-311.pyc │ │ ├── factory.cpython-39.pyc │ │ ├── vochead.cpython-310.pyc │ │ ├── vochead.cpython-311.pyc │ │ ├── vochead.cpython-39.pyc │ │ ├── widerface.cpython-310.pyc │ │ ├── widerface.cpython-311.pyc │ │ └── widerface.cpython-39.pyc │ ├── config.py │ ├── factory.py │ └── widerface.py ├── demo.py ├── eval_tools │ ├── __pycache__ │ │ └── evaluation.cpython-311.pyc │ ├── bbox_setup.py │ ├── box_overlaps.c │ ├── box_overlaps.pyx │ ├── evaluation.py │ ├── wider_face_test_file_list.mat │ ├── wider_face_val_file_list.mat │ └── wider_ground_truth │ │ ├── wider_easy_val.mat │ │ ├── wider_face_val.mat │ │ ├── wider_hard_val.mat │ │ └── wider_medium_val.mat ├── evaluate_all_models.py ├── fpgm.py ├── layers │ ├── __pycache__ │ │ └── bbox_utils.cpython-311.pyc │ ├── bbox_utils.py │ ├── functions │ │ ├── __pycache__ │ │ │ ├── detection.cpython-311.pyc │ │ │ └── prior_box.cpython-311.pyc │ │ ├── detection.py │ │ └── prior_box.py │ └── modules │ │ ├── __pycache__ │ │ └── multibox_loss.cpython-311.pyc │ │ ├── l2norm.py │ │ └── multibox_loss.py ├── misc │ ├── __pycache__ │ │ └── misc.cpython-311.pyc │ └── misc.py ├── models │ ├── __pycache__ │ │ ├── eresfd.cpython-311.pyc │ │ ├── eresfd_16.cpython-311.pyc │ │ └── sepfpn.cpython-311.pyc │ ├── eresfd.py │ ├── eresfd_16.py │ └── sepfpn.py ├── norm.py ├── prepare_wider_data.py ├── stop.py ├── test_wider.py ├── train.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── augmentations.cpython-311.pyc │ └── augmentations.py ├── weights │ └── ERES.pth ├── wider_pr_info_ETF_easy_val.mat ├── wider_pr_info_ETF_hard_val.mat ├── wider_pr_info_ETF_medium_val.mat └── wider_test.py ├── EXTD_Pytorch-master ├── EXTD_64.py ├── LICENSE ├── NOTICE ├── bbox_setup.py ├── data │ ├── config.py │ ├── face_train.txt │ ├── face_val.txt │ ├── factory.py │ └── widerface.py ├── demo.py ├── eval_tools │ ├── box_overlaps.c │ ├── box_overlaps.pyx │ ├── evaluation.py │ ├── ground_truth │ │ ├── wider_easy_val.mat │ │ ├── wider_face_val.mat │ │ ├── wider_hard_val.mat │ │ └── wider_medium_val.mat │ ├── wider_face_test.mat │ └── wider_face_val.mat ├── evaluate_all_models.py ├── fpgm.py ├── layers │ ├── bbox_utils.py │ ├── functions │ │ ├── detection.py │ │ └── prior_box.py │ └── modules │ │ ├── l2norm.py │ │ └── multibox_loss.py ├── logger.py ├── mobileFacenet_64_PReLU.py ├── norm.py ├── prepare_hand_dataset.py ├── prepare_wider_data.py ├── setup.py ├── stop.py ├── tools │ ├── anchor_matching_test.py │ ├── detect.py │ └── wider_test.py ├── train.py ├── weights │ └── sfd_face.pth ├── wider_pr_info_ETF_easy_val.mat ├── wider_pr_info_ETF_hard_val.mat ├── wider_pr_info_ETF_medium_val.mat └── wider_test.py ├── Pruned_Models ├── ERESFD │ ├── FPGM │ │ ├── ERES10_FPGM.pth │ │ ├── ERES20_FPGM.pth │ │ ├── ERES30_FPGM.pth │ │ ├── ERES40_FPGM.pth │ │ └── ERES50_FPGM.pth │ └── L1 │ │ ├── ERES10_L1.pth │ │ ├── ERES20_L1.pth │ │ ├── ERES30_L1.pth │ │ ├── ERES40_L1.pth │ │ └── ERES50_L1.pth └── EXTD │ ├── FPGM │ ├── EXTD10_FPGM.pth │ ├── EXTD20_FPGM.pth │ ├── EXTD30_FPGM.pth │ ├── EXTD40_FPGM.pth │ └── EXTD50_FPGM.pth │ └── L1 │ ├── EXTD10_L1.pth │ ├── EXTD20_L1.pth │ ├── EXTD30_L1.pth │ ├── EXTD40_L1.pth │ └── EXTD50_L1.pth ├── README.md ├── requirements.txt └── torchscript ├── EResFD.java ├── build.gradle.kts └── convert_to_torchscript.py /EResFD-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/LICENSE -------------------------------------------------------------------------------- /EResFD-main/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/NOTICE -------------------------------------------------------------------------------- /EResFD-main/build/lib.linux-x86_64-cpython-311/bbox.cpython-311-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/build/lib.linux-x86_64-cpython-311/bbox.cpython-311-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /EResFD-main/build/temp.linux-x86_64-cpython-311/eval_tools/box_overlaps.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/build/temp.linux-x86_64-cpython-311/eval_tools/box_overlaps.o -------------------------------------------------------------------------------- /EResFD-main/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/egohand.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/egohand.cpython-310.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/egohand.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/egohand.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/egohand.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/egohand.cpython-39.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/factory.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/factory.cpython-310.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/factory.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/factory.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/factory.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/factory.cpython-39.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/vochead.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/vochead.cpython-310.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/vochead.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/vochead.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/vochead.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/vochead.cpython-39.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/widerface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/widerface.cpython-310.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/widerface.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/widerface.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/data/__pycache__/widerface.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/__pycache__/widerface.cpython-39.pyc -------------------------------------------------------------------------------- /EResFD-main/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/config.py -------------------------------------------------------------------------------- /EResFD-main/data/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/factory.py -------------------------------------------------------------------------------- /EResFD-main/data/widerface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/data/widerface.py -------------------------------------------------------------------------------- /EResFD-main/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/demo.py -------------------------------------------------------------------------------- /EResFD-main/eval_tools/__pycache__/evaluation.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/__pycache__/evaluation.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/eval_tools/bbox_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/bbox_setup.py -------------------------------------------------------------------------------- /EResFD-main/eval_tools/box_overlaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/box_overlaps.c -------------------------------------------------------------------------------- /EResFD-main/eval_tools/box_overlaps.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/box_overlaps.pyx -------------------------------------------------------------------------------- /EResFD-main/eval_tools/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/evaluation.py -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_face_test_file_list.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_face_test_file_list.mat -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_face_val_file_list.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_face_val_file_list.mat -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_ground_truth/wider_easy_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_ground_truth/wider_easy_val.mat -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_ground_truth/wider_face_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_ground_truth/wider_face_val.mat -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_ground_truth/wider_hard_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_ground_truth/wider_hard_val.mat -------------------------------------------------------------------------------- /EResFD-main/eval_tools/wider_ground_truth/wider_medium_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/eval_tools/wider_ground_truth/wider_medium_val.mat -------------------------------------------------------------------------------- /EResFD-main/evaluate_all_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/evaluate_all_models.py -------------------------------------------------------------------------------- /EResFD-main/fpgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/fpgm.py -------------------------------------------------------------------------------- /EResFD-main/layers/__pycache__/bbox_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/__pycache__/bbox_utils.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/layers/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/bbox_utils.py -------------------------------------------------------------------------------- /EResFD-main/layers/functions/__pycache__/detection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/functions/__pycache__/detection.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/layers/functions/__pycache__/prior_box.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/functions/__pycache__/prior_box.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/functions/detection.py -------------------------------------------------------------------------------- /EResFD-main/layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/functions/prior_box.py -------------------------------------------------------------------------------- /EResFD-main/layers/modules/__pycache__/multibox_loss.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/modules/__pycache__/multibox_loss.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/modules/l2norm.py -------------------------------------------------------------------------------- /EResFD-main/layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /EResFD-main/misc/__pycache__/misc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/misc/__pycache__/misc.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/misc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/misc/misc.py -------------------------------------------------------------------------------- /EResFD-main/models/__pycache__/eresfd.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/__pycache__/eresfd.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/models/__pycache__/eresfd_16.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/__pycache__/eresfd_16.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/models/__pycache__/sepfpn.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/__pycache__/sepfpn.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/models/eresfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/eresfd.py -------------------------------------------------------------------------------- /EResFD-main/models/eresfd_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/eresfd_16.py -------------------------------------------------------------------------------- /EResFD-main/models/sepfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/models/sepfpn.py -------------------------------------------------------------------------------- /EResFD-main/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/norm.py -------------------------------------------------------------------------------- /EResFD-main/prepare_wider_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/prepare_wider_data.py -------------------------------------------------------------------------------- /EResFD-main/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/stop.py -------------------------------------------------------------------------------- /EResFD-main/test_wider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/test_wider.py -------------------------------------------------------------------------------- /EResFD-main/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/train.py -------------------------------------------------------------------------------- /EResFD-main/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /EResFD-main/utils/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/utils/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/utils/__pycache__/augmentations.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/utils/__pycache__/augmentations.cpython-311.pyc -------------------------------------------------------------------------------- /EResFD-main/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/utils/augmentations.py -------------------------------------------------------------------------------- /EResFD-main/weights/ERES.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/weights/ERES.pth -------------------------------------------------------------------------------- /EResFD-main/wider_pr_info_ETF_easy_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/wider_pr_info_ETF_easy_val.mat -------------------------------------------------------------------------------- /EResFD-main/wider_pr_info_ETF_hard_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/wider_pr_info_ETF_hard_val.mat -------------------------------------------------------------------------------- /EResFD-main/wider_pr_info_ETF_medium_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/wider_pr_info_ETF_medium_val.mat -------------------------------------------------------------------------------- /EResFD-main/wider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EResFD-main/wider_test.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/EXTD_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/EXTD_64.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/LICENSE -------------------------------------------------------------------------------- /EXTD_Pytorch-master/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/NOTICE -------------------------------------------------------------------------------- /EXTD_Pytorch-master/bbox_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/bbox_setup.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/data/config.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/data/face_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/data/face_train.txt -------------------------------------------------------------------------------- /EXTD_Pytorch-master/data/face_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/data/face_val.txt -------------------------------------------------------------------------------- /EXTD_Pytorch-master/data/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/data/factory.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/data/widerface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/data/widerface.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/demo.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/box_overlaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/box_overlaps.c -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/box_overlaps.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/box_overlaps.pyx -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/evaluation.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/ground_truth/wider_easy_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/ground_truth/wider_easy_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/ground_truth/wider_face_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/ground_truth/wider_face_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/ground_truth/wider_hard_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/ground_truth/wider_hard_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/ground_truth/wider_medium_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/ground_truth/wider_medium_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/wider_face_test.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/wider_face_test.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/eval_tools/wider_face_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/eval_tools/wider_face_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/evaluate_all_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/evaluate_all_models.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/fpgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/fpgm.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/layers/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/layers/bbox_utils.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/layers/functions/detection.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/layers/functions/prior_box.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/layers/modules/l2norm.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/logger.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/mobileFacenet_64_PReLU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/mobileFacenet_64_PReLU.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/norm.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/prepare_hand_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/prepare_hand_dataset.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/prepare_wider_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/prepare_wider_data.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/setup.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/stop.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/tools/anchor_matching_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/tools/anchor_matching_test.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/tools/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/tools/detect.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/tools/wider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/tools/wider_test.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/train.py -------------------------------------------------------------------------------- /EXTD_Pytorch-master/weights/sfd_face.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/weights/sfd_face.pth -------------------------------------------------------------------------------- /EXTD_Pytorch-master/wider_pr_info_ETF_easy_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/wider_pr_info_ETF_easy_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/wider_pr_info_ETF_hard_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/wider_pr_info_ETF_hard_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/wider_pr_info_ETF_medium_val.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/wider_pr_info_ETF_medium_val.mat -------------------------------------------------------------------------------- /EXTD_Pytorch-master/wider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/EXTD_Pytorch-master/wider_test.py -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/FPGM/ERES10_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/FPGM/ERES10_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/FPGM/ERES20_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/FPGM/ERES20_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/FPGM/ERES30_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/FPGM/ERES30_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/FPGM/ERES40_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/FPGM/ERES40_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/FPGM/ERES50_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/FPGM/ERES50_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/L1/ERES10_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/L1/ERES10_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/L1/ERES20_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/L1/ERES20_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/L1/ERES30_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/L1/ERES30_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/L1/ERES40_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/L1/ERES40_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/ERESFD/L1/ERES50_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/ERESFD/L1/ERES50_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/FPGM/EXTD10_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/FPGM/EXTD10_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/FPGM/EXTD20_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/FPGM/EXTD20_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/FPGM/EXTD30_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/FPGM/EXTD30_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/FPGM/EXTD40_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/FPGM/EXTD40_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/FPGM/EXTD50_FPGM.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/FPGM/EXTD50_FPGM.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/L1/EXTD10_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/L1/EXTD10_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/L1/EXTD20_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/L1/EXTD20_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/L1/EXTD30_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/L1/EXTD30_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/L1/EXTD40_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/L1/EXTD40_L1.pth -------------------------------------------------------------------------------- /Pruned_Models/EXTD/L1/EXTD50_L1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/Pruned_Models/EXTD/L1/EXTD50_L1.pth -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/requirements.txt -------------------------------------------------------------------------------- /torchscript/EResFD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/torchscript/EResFD.java -------------------------------------------------------------------------------- /torchscript/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/torchscript/build.gradle.kts -------------------------------------------------------------------------------- /torchscript/convert_to_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDT-ITI/Lightweight-Face-Detector-Pruning/HEAD/torchscript/convert_to_torchscript.py --------------------------------------------------------------------------------