├── README.md ├── anchors.py ├── assets ├── 1.jpg ├── 2.jpg └── 3.jpg ├── dataloader.py ├── detect.py ├── down.py ├── eval_widerface.py ├── img_tester.py ├── losses.py ├── magic_convert.py ├── mnas.py ├── mobile.py ├── mobile_testing.py ├── model.py ├── network.torch ├── out └── stage_5_68_full_model_epoch_121.pt ├── requirements.txt ├── test_argu.py ├── torchvision_model.py ├── train.py ├── utils.py └── video_detect.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/README.md -------------------------------------------------------------------------------- /anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/anchors.py -------------------------------------------------------------------------------- /assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/assets/1.jpg -------------------------------------------------------------------------------- /assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/assets/2.jpg -------------------------------------------------------------------------------- /assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/assets/3.jpg -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/dataloader.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/detect.py -------------------------------------------------------------------------------- /down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/down.py -------------------------------------------------------------------------------- /eval_widerface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/eval_widerface.py -------------------------------------------------------------------------------- /img_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/img_tester.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/losses.py -------------------------------------------------------------------------------- /magic_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/magic_convert.py -------------------------------------------------------------------------------- /mnas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/mnas.py -------------------------------------------------------------------------------- /mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/mobile.py -------------------------------------------------------------------------------- /mobile_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/mobile_testing.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/model.py -------------------------------------------------------------------------------- /network.torch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/network.torch -------------------------------------------------------------------------------- /out/stage_5_68_full_model_epoch_121.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/out/stage_5_68_full_model_epoch_121.pt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_argu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/test_argu.py -------------------------------------------------------------------------------- /torchvision_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/torchvision_model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/utils.py -------------------------------------------------------------------------------- /video_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvishElvis/68-Retinaface-Pytorch-version/HEAD/video_detect.py --------------------------------------------------------------------------------