gitextract_icnp_eu4/ ├── .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 ├── boosted/ │ ├── Perform-Boosting-Experiments-LightGBM.ipynb │ ├── Perform-Boosting-Experiments-XGBoost.ipynb │ └── models/ │ └── boosted_lightface_7.txt ├── deepface/ │ ├── DeepFace.py │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── postman/ │ │ │ └── deepface-api.postman_collection.json │ │ └── src/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── dependencies/ │ │ │ ├── __init__.py │ │ │ ├── container.py │ │ │ └── variables.py │ │ └── modules/ │ │ ├── __init__.py │ │ ├── auth/ │ │ │ ├── __init__.py │ │ │ └── service.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 │ ├── database/ │ │ ├── __init__.py │ │ ├── inventory.py │ │ ├── mongo.py │ │ ├── neo4j.py │ │ ├── pgvector.py │ │ ├── pinecone.py │ │ ├── postgres.py │ │ ├── types.py │ │ └── weaviate.py │ ├── datastore.py │ ├── demography.py │ ├── detection.py │ ├── encryption.py │ ├── exceptions.py │ ├── modeling.py │ ├── normalization.py │ ├── preprocessing.py │ ├── recognition.py │ ├── representation.py │ ├── streaming.py │ └── verification.py ├── docker/ │ ├── docker-compose.yml │ ├── integration.sh │ ├── pgvector-init/ │ │ └── 01_pgvector.sql │ └── postgres-init/ │ └── 001_create_table.sql ├── entrypoint.sh ├── experiments/ │ └── distance-to-confidence.ipynb ├── mypy.ini ├── package_info.json ├── requirements-dev.txt ├── requirements.txt ├── requirements_additional.txt ├── requirements_local ├── scripts/ │ ├── dockerize.sh │ ├── push-release.sh │ └── service.sh ├── setup.py └── tests/ ├── integration/ │ ├── test_postgres_register.py │ └── test_postgres_search.py └── unit/ ├── dataset/ │ ├── face-recognition-pivot.csv │ └── master.csv ├── 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_signature.py ├── test_singleton.py ├── test_verify.py ├── test_version.py └── visual-test.py