├── .gitignore ├── README.md ├── camera.py ├── checkpoint ├── snapshot │ └── checkpoint.pth.tar └── tensorboard │ └── .gitkeep ├── data ├── Mirror98.txt └── SetPreparation.py ├── dataset └── datasets.py ├── models └── pfld.py ├── mtcnn ├── detector.py ├── onet.npy ├── pnet.npy └── rnet.npy ├── output ├── .gitkeep ├── pfld-sim.bin └── pfld-sim.param ├── pfld ├── loss.py └── utils.py ├── pytorch2onnx.py ├── requirements.txt ├── results └── example.png ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/camera.py -------------------------------------------------------------------------------- /checkpoint/snapshot/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/checkpoint/snapshot/checkpoint.pth.tar -------------------------------------------------------------------------------- /checkpoint/tensorboard/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/Mirror98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/data/Mirror98.txt -------------------------------------------------------------------------------- /data/SetPreparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/data/SetPreparation.py -------------------------------------------------------------------------------- /dataset/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/dataset/datasets.py -------------------------------------------------------------------------------- /models/pfld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/models/pfld.py -------------------------------------------------------------------------------- /mtcnn/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/mtcnn/detector.py -------------------------------------------------------------------------------- /mtcnn/onet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/mtcnn/onet.npy -------------------------------------------------------------------------------- /mtcnn/pnet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/mtcnn/pnet.npy -------------------------------------------------------------------------------- /mtcnn/rnet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/mtcnn/rnet.npy -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/pfld-sim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/output/pfld-sim.bin -------------------------------------------------------------------------------- /output/pfld-sim.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/output/pfld-sim.param -------------------------------------------------------------------------------- /pfld/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/pfld/loss.py -------------------------------------------------------------------------------- /pfld/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/pfld/utils.py -------------------------------------------------------------------------------- /pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/pytorch2onnx.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/results/example.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarisZhao/PFLD-pytorch/HEAD/train.py --------------------------------------------------------------------------------