├── .dockerignore ├── .flake8 ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── conda-env.yml │ ├── docker-push.yml │ ├── lint.yml │ ├── pypi-publish.yml │ └── python-package.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── conda-lock.yml ├── conf ├── analyzer │ ├── default.yaml │ ├── detector │ │ ├── retinaface.yaml │ │ ├── retinaface_gdrive.yaml │ │ └── retinaface_hf.yaml │ ├── logger │ │ └── json_format.yaml │ ├── predictor │ │ ├── align │ │ │ ├── synergy_mobilenet_v2.yaml │ │ │ ├── synergy_mobilenet_v2_gdrive.yaml │ │ │ └── synergy_mobilenet_v2_hf.yaml │ │ ├── au │ │ │ ├── open_graph_swin_base.yaml │ │ │ ├── open_graph_swin_base_gdrive.yaml │ │ │ └── open_graph_swin_base_hf.yaml │ │ ├── deepfake │ │ │ ├── efficientnet_b7.yaml │ │ │ ├── efficientnet_b7_gdrive.yaml │ │ │ └── efficientnet_b7_hf.yaml │ │ ├── embed │ │ │ ├── r50_vggface_1m.yaml │ │ │ ├── r50_vggface_1m_gdrive.yaml │ │ │ └── r50_vggface_1m_hf.yaml │ │ ├── fer │ │ │ ├── efficientnet_b0_7.yaml │ │ │ ├── efficientnet_b0_7_gdrive.yaml │ │ │ ├── efficientnet_b0_7_hf.yaml │ │ │ ├── efficientnet_b2_8.yaml │ │ │ ├── efficientnet_b2_8_gdrive.yaml │ │ │ └── efficientnet_b2_8_hf.yaml │ │ ├── va │ │ │ ├── elim_al_alexnet.yaml │ │ │ ├── elim_al_alexnet_gdrive.yaml │ │ │ └── elim_al_alexnet_hf.yaml │ │ └── verify │ │ │ ├── adaface_ir101_webface12m.yaml │ │ │ ├── adaface_ir101_webface12m_gdrive.yaml │ │ │ ├── adaface_ir101_webface12m_hf.yaml │ │ │ ├── r100_magface_unpg.yaml │ │ │ ├── r100_magface_unpg_gdrive.yaml │ │ │ └── r100_magface_unpg_hf.yaml │ ├── reader │ │ ├── default.yaml │ │ ├── file.yaml │ │ ├── tensor.yaml │ │ └── universal.yaml │ ├── unifier │ │ ├── img_244.yaml │ │ ├── img_260.yaml │ │ └── img_380.yaml │ └── utilizer │ │ ├── align │ │ └── lmk3d_mesh_pose.yaml │ │ ├── draw_boxes │ │ └── torchvision_boxes.yaml │ │ ├── draw_landmarks │ │ └── torchvision_keypoints.yaml │ │ └── save │ │ └── image_saver.yaml ├── config.yaml ├── merged │ ├── gpu.merged.config.yaml │ └── merged.config.yaml ├── tensor.config.yaml ├── tests.config.1.yaml ├── tests.config.2.yaml ├── tests.config.3.yaml ├── tests.config.4.yaml └── tests.config.5.yaml ├── data ├── facetorch-logo-42.png ├── facetorch-logo-64.png ├── input │ ├── tensor.pt │ ├── test.jpg │ ├── test2.jpg │ ├── test3.jpg │ ├── test4.jpg │ └── test5.jpg └── output │ ├── test.png │ ├── test2.png │ ├── test3.png │ ├── test4.png │ ├── test5.png │ └── test_tensor.png ├── docker-compose.dev.yml ├── docker-compose.yml ├── docker ├── Dockerfile ├── Dockerfile.dev ├── Dockerfile.dev.gpu ├── Dockerfile.gpu ├── Dockerfile.lock └── Dockerfile.tests ├── docs ├── doc-search.html ├── facetorch │ ├── analyzer │ │ ├── core.html │ │ ├── detector │ │ │ ├── core.html │ │ │ ├── index.html │ │ │ ├── post.html │ │ │ └── pre.html │ │ ├── index.html │ │ ├── predictor │ │ │ ├── core.html │ │ │ ├── index.html │ │ │ ├── post.html │ │ │ └── pre.html │ │ ├── reader │ │ │ ├── core.html │ │ │ └── index.html │ │ ├── unifier │ │ │ ├── core.html │ │ │ └── index.html │ │ └── utilizer │ │ │ ├── align.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ └── save.html │ ├── base.html │ ├── datastruct.html │ ├── downloader.html │ ├── index.html │ ├── logger.html │ ├── transforms.html │ └── utils.html ├── index.html └── index.js ├── environment.yml ├── facetorch ├── __init__.py ├── analyzer │ ├── __init__.py │ ├── core.py │ ├── detector │ │ ├── __init__.py │ │ ├── core.py │ │ ├── post.py │ │ └── pre.py │ ├── predictor │ │ ├── __init__.py │ │ ├── core.py │ │ ├── post.py │ │ └── pre.py │ ├── reader │ │ ├── __init__.py │ │ └── core.py │ ├── unifier │ │ ├── __init__.py │ │ └── core.py │ └── utilizer │ │ ├── __init__.py │ │ ├── align.py │ │ ├── draw.py │ │ └── save.py ├── base.py ├── datastruct.py ├── downloader.py ├── logger.py ├── transforms.py └── utils.py ├── gpu.conda-lock.yml ├── gpu.environment.yml ├── notebooks └── facetorch_notebook_demo.ipynb ├── pdoc └── templates │ ├── _lunr_search.inc.mako │ └── config.mako ├── pytest.ini ├── requirements.dev.txt ├── scripts ├── example.py ├── example_tensor.py └── repeated_inference.py ├── setup.py ├── tests ├── conftest.py ├── test_align.py ├── test_analyzer.py ├── test_au.py ├── test_deepfake.py ├── test_detector.py ├── test_embed.py ├── test_fer.py ├── test_predictors.py ├── test_reader.py ├── test_response.py ├── test_save.py ├── test_transforms.py ├── test_unifier.py ├── test_utilizers.py ├── test_va.py └── test_verify.py └── version /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [tomas-gajarsky] 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/conda-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/conda-env.yml -------------------------------------------------------------------------------- /.github/workflows/docker-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/docker-push.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/README.md -------------------------------------------------------------------------------- /conda-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conda-lock.yml -------------------------------------------------------------------------------- /conf/analyzer/default.yaml: -------------------------------------------------------------------------------- 1 | device: cpu # str 2 | optimize_transforms: True # bool -------------------------------------------------------------------------------- /conf/analyzer/detector/retinaface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/detector/retinaface.yaml -------------------------------------------------------------------------------- /conf/analyzer/detector/retinaface_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/detector/retinaface_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/detector/retinaface_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/detector/retinaface_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/logger/json_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/logger/json_format.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/align/synergy_mobilenet_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/align/synergy_mobilenet_v2.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/align/synergy_mobilenet_v2_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/align/synergy_mobilenet_v2_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/align/synergy_mobilenet_v2_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/align/synergy_mobilenet_v2_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/au/open_graph_swin_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/au/open_graph_swin_base.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/au/open_graph_swin_base_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/au/open_graph_swin_base_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/au/open_graph_swin_base_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/au/open_graph_swin_base_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/deepfake/efficientnet_b7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/deepfake/efficientnet_b7.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/deepfake/efficientnet_b7_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/deepfake/efficientnet_b7_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/deepfake/efficientnet_b7_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/deepfake/efficientnet_b7_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/embed/r50_vggface_1m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/embed/r50_vggface_1m.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/embed/r50_vggface_1m_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/embed/r50_vggface_1m_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/embed/r50_vggface_1m_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/embed/r50_vggface_1m_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b0_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b0_7.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b0_7_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b0_7_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b0_7_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b0_7_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b2_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b2_8.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b2_8_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b2_8_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/fer/efficientnet_b2_8_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/fer/efficientnet_b2_8_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/va/elim_al_alexnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/va/elim_al_alexnet.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/va/elim_al_alexnet_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/va/elim_al_alexnet_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/va/elim_al_alexnet_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/va/elim_al_alexnet_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/adaface_ir101_webface12m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/adaface_ir101_webface12m.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/adaface_ir101_webface12m_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/adaface_ir101_webface12m_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/adaface_ir101_webface12m_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/adaface_ir101_webface12m_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/r100_magface_unpg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/r100_magface_unpg.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/r100_magface_unpg_gdrive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/r100_magface_unpg_gdrive.yaml -------------------------------------------------------------------------------- /conf/analyzer/predictor/verify/r100_magface_unpg_hf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/predictor/verify/r100_magface_unpg_hf.yaml -------------------------------------------------------------------------------- /conf/analyzer/reader/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/reader/default.yaml -------------------------------------------------------------------------------- /conf/analyzer/reader/file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/reader/file.yaml -------------------------------------------------------------------------------- /conf/analyzer/reader/tensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/reader/tensor.yaml -------------------------------------------------------------------------------- /conf/analyzer/reader/universal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/reader/universal.yaml -------------------------------------------------------------------------------- /conf/analyzer/unifier/img_244.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/unifier/img_244.yaml -------------------------------------------------------------------------------- /conf/analyzer/unifier/img_260.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/unifier/img_260.yaml -------------------------------------------------------------------------------- /conf/analyzer/unifier/img_380.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/unifier/img_380.yaml -------------------------------------------------------------------------------- /conf/analyzer/utilizer/align/lmk3d_mesh_pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/utilizer/align/lmk3d_mesh_pose.yaml -------------------------------------------------------------------------------- /conf/analyzer/utilizer/draw_boxes/torchvision_boxes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/utilizer/draw_boxes/torchvision_boxes.yaml -------------------------------------------------------------------------------- /conf/analyzer/utilizer/draw_landmarks/torchvision_keypoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/utilizer/draw_landmarks/torchvision_keypoints.yaml -------------------------------------------------------------------------------- /conf/analyzer/utilizer/save/image_saver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/analyzer/utilizer/save/image_saver.yaml -------------------------------------------------------------------------------- /conf/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/config.yaml -------------------------------------------------------------------------------- /conf/merged/gpu.merged.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/merged/gpu.merged.config.yaml -------------------------------------------------------------------------------- /conf/merged/merged.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/merged/merged.config.yaml -------------------------------------------------------------------------------- /conf/tensor.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tensor.config.yaml -------------------------------------------------------------------------------- /conf/tests.config.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tests.config.1.yaml -------------------------------------------------------------------------------- /conf/tests.config.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tests.config.2.yaml -------------------------------------------------------------------------------- /conf/tests.config.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tests.config.3.yaml -------------------------------------------------------------------------------- /conf/tests.config.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tests.config.4.yaml -------------------------------------------------------------------------------- /conf/tests.config.5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/conf/tests.config.5.yaml -------------------------------------------------------------------------------- /data/facetorch-logo-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/facetorch-logo-42.png -------------------------------------------------------------------------------- /data/facetorch-logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/facetorch-logo-64.png -------------------------------------------------------------------------------- /data/input/tensor.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/tensor.pt -------------------------------------------------------------------------------- /data/input/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/test.jpg -------------------------------------------------------------------------------- /data/input/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/test2.jpg -------------------------------------------------------------------------------- /data/input/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/test3.jpg -------------------------------------------------------------------------------- /data/input/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/test4.jpg -------------------------------------------------------------------------------- /data/input/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/input/test5.jpg -------------------------------------------------------------------------------- /data/output/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test.png -------------------------------------------------------------------------------- /data/output/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test2.png -------------------------------------------------------------------------------- /data/output/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test3.png -------------------------------------------------------------------------------- /data/output/test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test4.png -------------------------------------------------------------------------------- /data/output/test5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test5.png -------------------------------------------------------------------------------- /data/output/test_tensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/data/output/test_tensor.png -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile.dev -------------------------------------------------------------------------------- /docker/Dockerfile.dev.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile.dev.gpu -------------------------------------------------------------------------------- /docker/Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile.gpu -------------------------------------------------------------------------------- /docker/Dockerfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile.lock -------------------------------------------------------------------------------- /docker/Dockerfile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docker/Dockerfile.tests -------------------------------------------------------------------------------- /docs/doc-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/doc-search.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/core.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/detector/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/detector/core.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/detector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/detector/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/detector/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/detector/post.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/detector/pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/detector/pre.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/predictor/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/predictor/core.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/predictor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/predictor/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/predictor/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/predictor/post.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/predictor/pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/predictor/pre.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/reader/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/reader/core.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/reader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/reader/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/unifier/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/unifier/core.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/unifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/unifier/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/utilizer/align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/utilizer/align.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/utilizer/draw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/utilizer/draw.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/utilizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/utilizer/index.html -------------------------------------------------------------------------------- /docs/facetorch/analyzer/utilizer/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/analyzer/utilizer/save.html -------------------------------------------------------------------------------- /docs/facetorch/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/base.html -------------------------------------------------------------------------------- /docs/facetorch/datastruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/datastruct.html -------------------------------------------------------------------------------- /docs/facetorch/downloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/downloader.html -------------------------------------------------------------------------------- /docs/facetorch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/index.html -------------------------------------------------------------------------------- /docs/facetorch/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/logger.html -------------------------------------------------------------------------------- /docs/facetorch/transforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/transforms.html -------------------------------------------------------------------------------- /docs/facetorch/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/facetorch/utils.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/docs/index.js -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/environment.yml -------------------------------------------------------------------------------- /facetorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/core.py -------------------------------------------------------------------------------- /facetorch/analyzer/detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/detector/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/detector/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/detector/core.py -------------------------------------------------------------------------------- /facetorch/analyzer/detector/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/detector/post.py -------------------------------------------------------------------------------- /facetorch/analyzer/detector/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/detector/pre.py -------------------------------------------------------------------------------- /facetorch/analyzer/predictor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/predictor/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/predictor/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/predictor/core.py -------------------------------------------------------------------------------- /facetorch/analyzer/predictor/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/predictor/post.py -------------------------------------------------------------------------------- /facetorch/analyzer/predictor/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/predictor/pre.py -------------------------------------------------------------------------------- /facetorch/analyzer/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/reader/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/reader/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/reader/core.py -------------------------------------------------------------------------------- /facetorch/analyzer/unifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/unifier/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/unifier/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/unifier/core.py -------------------------------------------------------------------------------- /facetorch/analyzer/utilizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/utilizer/__init__.py -------------------------------------------------------------------------------- /facetorch/analyzer/utilizer/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/utilizer/align.py -------------------------------------------------------------------------------- /facetorch/analyzer/utilizer/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/utilizer/draw.py -------------------------------------------------------------------------------- /facetorch/analyzer/utilizer/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/analyzer/utilizer/save.py -------------------------------------------------------------------------------- /facetorch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/base.py -------------------------------------------------------------------------------- /facetorch/datastruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/datastruct.py -------------------------------------------------------------------------------- /facetorch/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/downloader.py -------------------------------------------------------------------------------- /facetorch/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/logger.py -------------------------------------------------------------------------------- /facetorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/transforms.py -------------------------------------------------------------------------------- /facetorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/facetorch/utils.py -------------------------------------------------------------------------------- /gpu.conda-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/gpu.conda-lock.yml -------------------------------------------------------------------------------- /gpu.environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/gpu.environment.yml -------------------------------------------------------------------------------- /notebooks/facetorch_notebook_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/notebooks/facetorch_notebook_demo.ipynb -------------------------------------------------------------------------------- /pdoc/templates/_lunr_search.inc.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/pdoc/templates/_lunr_search.inc.mako -------------------------------------------------------------------------------- /pdoc/templates/config.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/pdoc/templates/config.mako -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /scripts/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/scripts/example.py -------------------------------------------------------------------------------- /scripts/example_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/scripts/example_tensor.py -------------------------------------------------------------------------------- /scripts/repeated_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/scripts/repeated_inference.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_align.py -------------------------------------------------------------------------------- /tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_analyzer.py -------------------------------------------------------------------------------- /tests/test_au.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_au.py -------------------------------------------------------------------------------- /tests/test_deepfake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_deepfake.py -------------------------------------------------------------------------------- /tests/test_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_detector.py -------------------------------------------------------------------------------- /tests/test_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_embed.py -------------------------------------------------------------------------------- /tests/test_fer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_fer.py -------------------------------------------------------------------------------- /tests/test_predictors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_predictors.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_reader.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_save.py -------------------------------------------------------------------------------- /tests/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_transforms.py -------------------------------------------------------------------------------- /tests/test_unifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_unifier.py -------------------------------------------------------------------------------- /tests/test_utilizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_utilizers.py -------------------------------------------------------------------------------- /tests/test_va.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_va.py -------------------------------------------------------------------------------- /tests/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomas-gajarsky/facetorch/HEAD/tests/test_verify.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.6.0 --------------------------------------------------------------------------------