├── .codeboarding ├── External_Integration_Layer.md ├── Facial_Analysis_Engine.md ├── Model_Management_System.md ├── Utility_Infrastructure_Layer.md └── on_boarding.md ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 01-report-bug.yaml │ ├── 02-request-feature.yaml │ ├── 03-documentation.yaml │ └── config.yml ├── pull_request_template.md └── workflows │ └── tests.yml ├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── benchmarks ├── Evaluate-Results.ipynb ├── Perform-Experiments.ipynb └── README.md ├── deepface ├── DeepFace.py ├── __init__.py ├── api │ ├── __init__.py │ ├── postman │ │ └── deepface-api.postman_collection.json │ └── src │ │ ├── __init__.py │ │ ├── api.py │ │ ├── app.py │ │ └── modules │ │ ├── __init__.py │ │ └── core │ │ ├── __init__.py │ │ ├── routes.py │ │ └── service.py ├── commons │ ├── __init__.py │ ├── constant.py │ ├── embed_utils.py │ ├── folder_utils.py │ ├── image_utils.py │ ├── logger.py │ ├── package_utils.py │ └── weight_utils.py ├── config │ ├── __init__.py │ ├── confidence.py │ ├── minmax.py │ └── threshold.py ├── models │ ├── Demography.py │ ├── Detector.py │ ├── FacialRecognition.py │ ├── __init__.py │ ├── demography │ │ ├── Age.py │ │ ├── Emotion.py │ │ ├── Gender.py │ │ ├── Race.py │ │ └── __init__.py │ ├── face_detection │ │ ├── CenterFace.py │ │ ├── Dlib.py │ │ ├── FastMtCnn.py │ │ ├── MediaPipe.py │ │ ├── MtCnn.py │ │ ├── OpenCv.py │ │ ├── RetinaFace.py │ │ ├── Ssd.py │ │ ├── Yolo.py │ │ ├── YuNet.py │ │ └── __init__.py │ ├── facial_recognition │ │ ├── ArcFace.py │ │ ├── Buffalo_L.py │ │ ├── DeepID.py │ │ ├── Dlib.py │ │ ├── Facenet.py │ │ ├── FbDeepFace.py │ │ ├── GhostFaceNet.py │ │ ├── OpenFace.py │ │ ├── SFace.py │ │ ├── VGGFace.py │ │ └── __init__.py │ └── spoofing │ │ ├── FasNet.py │ │ ├── FasNetBackbone.py │ │ └── __init__.py └── modules │ ├── __init__.py │ ├── demography.py │ ├── detection.py │ ├── encryption.py │ ├── modeling.py │ ├── normalization.py │ ├── preprocessing.py │ ├── recognition.py │ ├── representation.py │ ├── streaming.py │ └── verification.py ├── entrypoint.sh ├── experiments └── distance-to-confidence.ipynb ├── icon ├── benchmarks.jpg ├── bmc-button.png ├── celebrity-look-alike.jpg ├── deepface-and-react.jpg ├── deepface-api.jpg ├── deepface-big-data.jpg ├── deepface-dockerized-v2.jpg ├── deepface-icon-labeled.png ├── deepface-icon.png ├── deepface-realtime.jpg ├── detector-outputs-20230203.jpg ├── detector-outputs-20240302.jpg ├── detector-outputs-20240414.jpg ├── detector-portfolio-v5.jpg ├── detector-portfolio-v6.jpg ├── embedding.jpg ├── encrypt-embeddings.jpg ├── face-anti-spoofing.jpg ├── facenet-pca.png ├── github_sponsor_button.png ├── model-portfolio-20240316.jpg ├── model-portfolio-v8.jpg ├── parental-look-alike-scaled.jpg ├── patreon.png ├── retinaface-results.jpeg ├── stock-1.jpg ├── stock-2.jpg ├── stock-3.jpg ├── stock-6-v2.jpg ├── verify-credit.jpg └── verify-many-faces.jpg ├── package_info.json ├── requirements-dev.txt ├── requirements.txt ├── requirements_additional.txt ├── requirements_local ├── scripts ├── dockerize.sh ├── push-release.sh └── service.sh ├── setup.py └── tests ├── dataset ├── couple.jpg ├── face-recognition-pivot.csv ├── img1.jpg ├── img10.jpg ├── img11.jpg ├── img11_reflection.jpg ├── img12.jpg ├── img13.jpg ├── img14.jpg ├── img15.jpg ├── img16.jpg ├── img17.jpg ├── img18.jpg ├── img19.jpg ├── img2.jpg ├── img20.jpg ├── img21.jpg ├── img22.jpg ├── img23.jpg ├── img24.jpg ├── img25.jpg ├── img26.jpg ├── img27.jpg ├── img28.jpg ├── img29.jpg ├── img3.jpg ├── img30.jpg ├── img31.jpg ├── img32.jpg ├── img33.jpg ├── img34.jpg ├── img35.jpg ├── img36.jpg ├── img37.jpg ├── img38.jpg ├── img39.jpg ├── img4.jpg ├── img40.jpg ├── img41.jpg ├── img42.jpg ├── img43.jpg ├── img44.jpg ├── img45.jpg ├── img46.jpg ├── img47.jpg ├── img48.jpg ├── img49.jpg ├── img5.jpg ├── img50.jpg ├── img51.jpg ├── img53.jpg ├── img54.jpg ├── img55.jpg ├── img56.jpg ├── img57.jpg ├── img58.jpg ├── img59.jpg ├── img6.jpg ├── img61.jpg ├── img62.jpg ├── img67.jpg ├── img7.jpg ├── img8.jpg ├── img9.jpg ├── master.csv └── selfie-many-people.jpg ├── face-recognition-how.py ├── overlay.py ├── stream.py ├── test_analyze.py ├── test_api.py ├── test_commons.py ├── test_encrypt.py ├── test_enforce_detection.py ├── test_extract_faces.py ├── test_find.py ├── test_find_batched.py ├── test_landmark_sanitization.py ├── test_output_normalization.py ├── test_represent.py ├── test_singleton.py ├── test_verify.py ├── test_version.py └── visual-test.py /.codeboarding/External_Integration_Layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.codeboarding/External_Integration_Layer.md -------------------------------------------------------------------------------- /.codeboarding/Facial_Analysis_Engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.codeboarding/Facial_Analysis_Engine.md -------------------------------------------------------------------------------- /.codeboarding/Model_Management_System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.codeboarding/Model_Management_System.md -------------------------------------------------------------------------------- /.codeboarding/Utility_Infrastructure_Layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.codeboarding/Utility_Infrastructure_Layer.md -------------------------------------------------------------------------------- /.codeboarding/on_boarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.codeboarding/on_boarding.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-vendored -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-report-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/ISSUE_TEMPLATE/01-report-bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-request-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/ISSUE_TEMPLATE/02-request-feature.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/ISSUE_TEMPLATE/03-documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Evaluate-Results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/benchmarks/Evaluate-Results.ipynb -------------------------------------------------------------------------------- /benchmarks/Perform-Experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/benchmarks/Perform-Experiments.ipynb -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /deepface/DeepFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/DeepFace.py -------------------------------------------------------------------------------- /deepface/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.96" 2 | -------------------------------------------------------------------------------- /deepface/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/api/postman/deepface-api.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/api/postman/deepface-api.postman_collection.json -------------------------------------------------------------------------------- /deepface/api/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/api/src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/api/src/api.py -------------------------------------------------------------------------------- /deepface/api/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/api/src/app.py -------------------------------------------------------------------------------- /deepface/api/src/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/api/src/modules/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/api/src/modules/core/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/api/src/modules/core/routes.py -------------------------------------------------------------------------------- /deepface/api/src/modules/core/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/api/src/modules/core/service.py -------------------------------------------------------------------------------- /deepface/commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/commons/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/constant.py -------------------------------------------------------------------------------- /deepface/commons/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/embed_utils.py -------------------------------------------------------------------------------- /deepface/commons/folder_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/folder_utils.py -------------------------------------------------------------------------------- /deepface/commons/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/image_utils.py -------------------------------------------------------------------------------- /deepface/commons/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/logger.py -------------------------------------------------------------------------------- /deepface/commons/package_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/package_utils.py -------------------------------------------------------------------------------- /deepface/commons/weight_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/commons/weight_utils.py -------------------------------------------------------------------------------- /deepface/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/config/confidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/config/confidence.py -------------------------------------------------------------------------------- /deepface/config/minmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/config/minmax.py -------------------------------------------------------------------------------- /deepface/config/threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/config/threshold.py -------------------------------------------------------------------------------- /deepface/models/Demography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/Demography.py -------------------------------------------------------------------------------- /deepface/models/Detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/Detector.py -------------------------------------------------------------------------------- /deepface/models/FacialRecognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/FacialRecognition.py -------------------------------------------------------------------------------- /deepface/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/models/demography/Age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/demography/Age.py -------------------------------------------------------------------------------- /deepface/models/demography/Emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/demography/Emotion.py -------------------------------------------------------------------------------- /deepface/models/demography/Gender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/demography/Gender.py -------------------------------------------------------------------------------- /deepface/models/demography/Race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/demography/Race.py -------------------------------------------------------------------------------- /deepface/models/demography/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/models/face_detection/CenterFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/CenterFace.py -------------------------------------------------------------------------------- /deepface/models/face_detection/Dlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/Dlib.py -------------------------------------------------------------------------------- /deepface/models/face_detection/FastMtCnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/FastMtCnn.py -------------------------------------------------------------------------------- /deepface/models/face_detection/MediaPipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/MediaPipe.py -------------------------------------------------------------------------------- /deepface/models/face_detection/MtCnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/MtCnn.py -------------------------------------------------------------------------------- /deepface/models/face_detection/OpenCv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/OpenCv.py -------------------------------------------------------------------------------- /deepface/models/face_detection/RetinaFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/RetinaFace.py -------------------------------------------------------------------------------- /deepface/models/face_detection/Ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/Ssd.py -------------------------------------------------------------------------------- /deepface/models/face_detection/Yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/Yolo.py -------------------------------------------------------------------------------- /deepface/models/face_detection/YuNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/face_detection/YuNet.py -------------------------------------------------------------------------------- /deepface/models/face_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/models/facial_recognition/ArcFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/ArcFace.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/Buffalo_L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/Buffalo_L.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/DeepID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/DeepID.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/Dlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/Dlib.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/Facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/Facenet.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/FbDeepFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/FbDeepFace.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/GhostFaceNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/GhostFaceNet.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/OpenFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/OpenFace.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/SFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/SFace.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/VGGFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/facial_recognition/VGGFace.py -------------------------------------------------------------------------------- /deepface/models/facial_recognition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/models/spoofing/FasNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/spoofing/FasNet.py -------------------------------------------------------------------------------- /deepface/models/spoofing/FasNetBackbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/models/spoofing/FasNetBackbone.py -------------------------------------------------------------------------------- /deepface/models/spoofing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepface/modules/demography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/demography.py -------------------------------------------------------------------------------- /deepface/modules/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/detection.py -------------------------------------------------------------------------------- /deepface/modules/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/encryption.py -------------------------------------------------------------------------------- /deepface/modules/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/modeling.py -------------------------------------------------------------------------------- /deepface/modules/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/normalization.py -------------------------------------------------------------------------------- /deepface/modules/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/preprocessing.py -------------------------------------------------------------------------------- /deepface/modules/recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/recognition.py -------------------------------------------------------------------------------- /deepface/modules/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/representation.py -------------------------------------------------------------------------------- /deepface/modules/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/streaming.py -------------------------------------------------------------------------------- /deepface/modules/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/deepface/modules/verification.py -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /experiments/distance-to-confidence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/experiments/distance-to-confidence.ipynb -------------------------------------------------------------------------------- /icon/benchmarks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/benchmarks.jpg -------------------------------------------------------------------------------- /icon/bmc-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/bmc-button.png -------------------------------------------------------------------------------- /icon/celebrity-look-alike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/celebrity-look-alike.jpg -------------------------------------------------------------------------------- /icon/deepface-and-react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-and-react.jpg -------------------------------------------------------------------------------- /icon/deepface-api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-api.jpg -------------------------------------------------------------------------------- /icon/deepface-big-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-big-data.jpg -------------------------------------------------------------------------------- /icon/deepface-dockerized-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-dockerized-v2.jpg -------------------------------------------------------------------------------- /icon/deepface-icon-labeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-icon-labeled.png -------------------------------------------------------------------------------- /icon/deepface-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-icon.png -------------------------------------------------------------------------------- /icon/deepface-realtime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/deepface-realtime.jpg -------------------------------------------------------------------------------- /icon/detector-outputs-20230203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/detector-outputs-20230203.jpg -------------------------------------------------------------------------------- /icon/detector-outputs-20240302.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/detector-outputs-20240302.jpg -------------------------------------------------------------------------------- /icon/detector-outputs-20240414.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/detector-outputs-20240414.jpg -------------------------------------------------------------------------------- /icon/detector-portfolio-v5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/detector-portfolio-v5.jpg -------------------------------------------------------------------------------- /icon/detector-portfolio-v6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/detector-portfolio-v6.jpg -------------------------------------------------------------------------------- /icon/embedding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/embedding.jpg -------------------------------------------------------------------------------- /icon/encrypt-embeddings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/encrypt-embeddings.jpg -------------------------------------------------------------------------------- /icon/face-anti-spoofing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/face-anti-spoofing.jpg -------------------------------------------------------------------------------- /icon/facenet-pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/facenet-pca.png -------------------------------------------------------------------------------- /icon/github_sponsor_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/github_sponsor_button.png -------------------------------------------------------------------------------- /icon/model-portfolio-20240316.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/model-portfolio-20240316.jpg -------------------------------------------------------------------------------- /icon/model-portfolio-v8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/model-portfolio-v8.jpg -------------------------------------------------------------------------------- /icon/parental-look-alike-scaled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/parental-look-alike-scaled.jpg -------------------------------------------------------------------------------- /icon/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/patreon.png -------------------------------------------------------------------------------- /icon/retinaface-results.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/retinaface-results.jpeg -------------------------------------------------------------------------------- /icon/stock-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/stock-1.jpg -------------------------------------------------------------------------------- /icon/stock-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/stock-2.jpg -------------------------------------------------------------------------------- /icon/stock-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/stock-3.jpg -------------------------------------------------------------------------------- /icon/stock-6-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/stock-6-v2.jpg -------------------------------------------------------------------------------- /icon/verify-credit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/verify-credit.jpg -------------------------------------------------------------------------------- /icon/verify-many-faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/icon/verify-many-faces.jpg -------------------------------------------------------------------------------- /package_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.96" 3 | } 4 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest>=8.3.5 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_additional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/requirements_additional.txt -------------------------------------------------------------------------------- /requirements_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/requirements_local -------------------------------------------------------------------------------- /scripts/dockerize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/scripts/dockerize.sh -------------------------------------------------------------------------------- /scripts/push-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/scripts/push-release.sh -------------------------------------------------------------------------------- /scripts/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/scripts/service.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/setup.py -------------------------------------------------------------------------------- /tests/dataset/couple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/couple.jpg -------------------------------------------------------------------------------- /tests/dataset/face-recognition-pivot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/face-recognition-pivot.csv -------------------------------------------------------------------------------- /tests/dataset/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img1.jpg -------------------------------------------------------------------------------- /tests/dataset/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img10.jpg -------------------------------------------------------------------------------- /tests/dataset/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img11.jpg -------------------------------------------------------------------------------- /tests/dataset/img11_reflection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img11_reflection.jpg -------------------------------------------------------------------------------- /tests/dataset/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img12.jpg -------------------------------------------------------------------------------- /tests/dataset/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img13.jpg -------------------------------------------------------------------------------- /tests/dataset/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img14.jpg -------------------------------------------------------------------------------- /tests/dataset/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img15.jpg -------------------------------------------------------------------------------- /tests/dataset/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img16.jpg -------------------------------------------------------------------------------- /tests/dataset/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img17.jpg -------------------------------------------------------------------------------- /tests/dataset/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img18.jpg -------------------------------------------------------------------------------- /tests/dataset/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img19.jpg -------------------------------------------------------------------------------- /tests/dataset/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img2.jpg -------------------------------------------------------------------------------- /tests/dataset/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img20.jpg -------------------------------------------------------------------------------- /tests/dataset/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img21.jpg -------------------------------------------------------------------------------- /tests/dataset/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img22.jpg -------------------------------------------------------------------------------- /tests/dataset/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img23.jpg -------------------------------------------------------------------------------- /tests/dataset/img24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img24.jpg -------------------------------------------------------------------------------- /tests/dataset/img25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img25.jpg -------------------------------------------------------------------------------- /tests/dataset/img26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img26.jpg -------------------------------------------------------------------------------- /tests/dataset/img27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img27.jpg -------------------------------------------------------------------------------- /tests/dataset/img28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img28.jpg -------------------------------------------------------------------------------- /tests/dataset/img29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img29.jpg -------------------------------------------------------------------------------- /tests/dataset/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img3.jpg -------------------------------------------------------------------------------- /tests/dataset/img30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img30.jpg -------------------------------------------------------------------------------- /tests/dataset/img31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img31.jpg -------------------------------------------------------------------------------- /tests/dataset/img32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img32.jpg -------------------------------------------------------------------------------- /tests/dataset/img33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img33.jpg -------------------------------------------------------------------------------- /tests/dataset/img34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img34.jpg -------------------------------------------------------------------------------- /tests/dataset/img35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img35.jpg -------------------------------------------------------------------------------- /tests/dataset/img36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img36.jpg -------------------------------------------------------------------------------- /tests/dataset/img37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img37.jpg -------------------------------------------------------------------------------- /tests/dataset/img38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img38.jpg -------------------------------------------------------------------------------- /tests/dataset/img39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img39.jpg -------------------------------------------------------------------------------- /tests/dataset/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img4.jpg -------------------------------------------------------------------------------- /tests/dataset/img40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img40.jpg -------------------------------------------------------------------------------- /tests/dataset/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img41.jpg -------------------------------------------------------------------------------- /tests/dataset/img42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img42.jpg -------------------------------------------------------------------------------- /tests/dataset/img43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img43.jpg -------------------------------------------------------------------------------- /tests/dataset/img44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img44.jpg -------------------------------------------------------------------------------- /tests/dataset/img45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img45.jpg -------------------------------------------------------------------------------- /tests/dataset/img46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img46.jpg -------------------------------------------------------------------------------- /tests/dataset/img47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img47.jpg -------------------------------------------------------------------------------- /tests/dataset/img48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img48.jpg -------------------------------------------------------------------------------- /tests/dataset/img49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img49.jpg -------------------------------------------------------------------------------- /tests/dataset/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img5.jpg -------------------------------------------------------------------------------- /tests/dataset/img50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img50.jpg -------------------------------------------------------------------------------- /tests/dataset/img51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img51.jpg -------------------------------------------------------------------------------- /tests/dataset/img53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img53.jpg -------------------------------------------------------------------------------- /tests/dataset/img54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img54.jpg -------------------------------------------------------------------------------- /tests/dataset/img55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img55.jpg -------------------------------------------------------------------------------- /tests/dataset/img56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img56.jpg -------------------------------------------------------------------------------- /tests/dataset/img57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img57.jpg -------------------------------------------------------------------------------- /tests/dataset/img58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img58.jpg -------------------------------------------------------------------------------- /tests/dataset/img59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img59.jpg -------------------------------------------------------------------------------- /tests/dataset/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img6.jpg -------------------------------------------------------------------------------- /tests/dataset/img61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img61.jpg -------------------------------------------------------------------------------- /tests/dataset/img62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img62.jpg -------------------------------------------------------------------------------- /tests/dataset/img67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img67.jpg -------------------------------------------------------------------------------- /tests/dataset/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img7.jpg -------------------------------------------------------------------------------- /tests/dataset/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img8.jpg -------------------------------------------------------------------------------- /tests/dataset/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/img9.jpg -------------------------------------------------------------------------------- /tests/dataset/master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/master.csv -------------------------------------------------------------------------------- /tests/dataset/selfie-many-people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/dataset/selfie-many-people.jpg -------------------------------------------------------------------------------- /tests/face-recognition-how.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/face-recognition-how.py -------------------------------------------------------------------------------- /tests/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/overlay.py -------------------------------------------------------------------------------- /tests/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/stream.py -------------------------------------------------------------------------------- /tests/test_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_analyze.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_commons.py -------------------------------------------------------------------------------- /tests/test_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_encrypt.py -------------------------------------------------------------------------------- /tests/test_enforce_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_enforce_detection.py -------------------------------------------------------------------------------- /tests/test_extract_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_extract_faces.py -------------------------------------------------------------------------------- /tests/test_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_find.py -------------------------------------------------------------------------------- /tests/test_find_batched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_find_batched.py -------------------------------------------------------------------------------- /tests/test_landmark_sanitization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_landmark_sanitization.py -------------------------------------------------------------------------------- /tests/test_output_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_output_normalization.py -------------------------------------------------------------------------------- /tests/test_represent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_represent.py -------------------------------------------------------------------------------- /tests/test_singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_singleton.py -------------------------------------------------------------------------------- /tests/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_verify.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/visual-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serengil/deepface/HEAD/tests/visual-test.py --------------------------------------------------------------------------------