├── .gitignore ├── LICENSE ├── README.md ├── docs └── images │ └── PR.webp ├── face_detector.py ├── generate_anchor.py └── weights ├── 16-0000.params ├── 16-symbol.json ├── 16and32-0000.params ├── 16and32-symbol.json ├── 8and16-0000.params └── 8and16-symbol.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/PR.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/docs/images/PR.webp -------------------------------------------------------------------------------- /face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/face_detector.py -------------------------------------------------------------------------------- /generate_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/generate_anchor.py -------------------------------------------------------------------------------- /weights/16-0000.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/16-0000.params -------------------------------------------------------------------------------- /weights/16-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/16-symbol.json -------------------------------------------------------------------------------- /weights/16and32-0000.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/16and32-0000.params -------------------------------------------------------------------------------- /weights/16and32-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/16and32-symbol.json -------------------------------------------------------------------------------- /weights/8and16-0000.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/8and16-0000.params -------------------------------------------------------------------------------- /weights/8and16-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1996scarlet/faster-mobile-retinaface/HEAD/weights/8and16-symbol.json --------------------------------------------------------------------------------