Face analysis PyTorch framework.
Project description
facetorch
Hugging Face Space demo app ๐ค
User Guide, Documentation, ChatGPT facetorch guide
Facetorch is a Python library that can detect faces and analyze facial features using deep neural networks. The goal is to gather open sourced face analysis models from the community, optimize them for performance using TorchScript and combine them to create a face analysis tool that one can:
- configure using Hydra (OmegaConf)
- reproduce with conda-lock and Docker
- accelerate on CPU and GPU with TorchScript
- extend by uploading a model file to Google Drive and adding a config yaml file to the repository
Please, use the library responsibly with caution and follow the ethics guidelines for Trustworthy AI from European Commission. The models are not perfect and may be biased.
Install
pip install facetorch
conda install -c conda-forge facetorch
Usage
Prerequisites
Docker Compose provides an easy way of building a working facetorch environment with a single command.
Run docker example
- CPU:
docker compose run facetorch python ./scripts/example.py
- GPU:
docker compose run facetorch-gpu python ./scripts/example.py analyzer.device=cuda
Check data/output for resulting images with bounding boxes and facial 3D landmarks.
(Apple Mac M1) Use Rosetta 2 emulator in Docker Desktop to run the CPU version.
Configure
The project is configured by files located in conf with the main file: conf/config.yaml. One can easily add or remove modules from the configuration.
Components
FaceAnalyzer is the main class of facetorch as it is the orchestrator responsible for initializing and running the following components:
- Reader - reads the image and returns an ImageData object containing the image tensor.
- Detector - wrapper around a neural network that detects faces.
- Unifier - processor that unifies sizes of all faces and normalizes them between 0 and 1.
- Predictor dict - set of wrappers around neural networks trained to analyze facial features.
- Utilizer dict - set of wrappers around any functionality that requires the output of neural networks e.g. drawing bounding boxes or facial landmarks.
Structure
analyzer
โโโ reader
โโโ detector
โโโ unifier
โโโ predictor
โโโ embed
โโโ verify
โโโ fer
โโโ au
โโโ va
โโโ deepfake
โโโ align
โโโ utilizer
โโโ align
โโโ draw
โโโ save
Models
Detector
| model | source | params | license | version |
| ------------- | --------- | --------- | ----------- | ------- |
| RetinaFace | biubug6 | 27.3M | MIT license | 1 |
- biubug6
Predictor
Facial Representation Learning (embed)
| model | source | params | license | version |
| ----------------- | ---------- | ------- | ----------- | ------- |
| ResNet-50 VGG 1M | 1adrianb | 28.4M | MIT license | 1 |
- 1adrianb
- code: unsupervised-face-representation
- paper: Bulat et al. - Pre-training strategies and datasets for facial representation learning
- Note:
include_tensors
needs to be True in order to include the model prediction in Prediction.logits
Face Verification (verify)
| model | source | params | license | version |
| ---------------- | ----------- | -------- | ------------------ | ------- |
| MagFace+UNPG | Jung-Jun-Uk | 65.2M | Apache License 2.0 | 1 |
| AdaFaceR100W12M | mk-minchul | - | MIT License | 2 |
- Jung-Jun-Uk
- code: UNPG
- paper: Jung et al. - Unified Negative Pair Generation toward Well-discriminative Feature Space for Face Recognition
- (FAR=0.01)
- Note:
include_tensors
needs to be True in order to include the model prediction in Prediction.logits
- mk-minchul
- code: AdaFace
- paper: Kim et al. - AdaFace: Quality Adaptive Margin for Face Recognition
- <
- <
- < badges represent models trained on smaller WebFace 4M dataset
- Note:
include_tensors
needs to be True in order to include the model prediction in Prediction.logits
Facial Expression Recognition (fer)
| model | source | params | license | version |
| ----------------- | -------------- | -------- | ------------------ | ------- |
| EfficientNet B0 7 | HSE-asavchenko | 4M | Apache License 2.0 | 1 |
| EfficientNet B2 8 | HSE-asavchenko | 7.7M | Apache License 2.0 | 2 |
- HSE-asavchenko
Facial Action Unit Detection (au)
| model | source | params | license | version |
| ------------------- | --------- | ------- | ------------------ | ------- |
| OpenGraph Swin Base | CVI-SZU | 94M | MIT License | 1 |
- CVI-SZU
- code: ME-GraphAU
- paper: Luo et al. - Learning Multi-dimensional Edge Feature-based AU Relation Graph for Facial Action Unit Recognition
- ! Does not work with CUDA > 12.0
Facial Valence Arousal (va)
| model | source | params | license | version |
| ----------------- | ---------- | ------- | ----------- | ------- |
| ELIM AL AlexNet | kdhht2334 | 2.3M | MIT license | 1 |
- kdhht2334
Deepfake Detection (deepfake)
| model | source | params | license | version |
| -------------------- | ---------------- | -------- | ----------- | ------- |
| EfficientNet B7 | selimsef | 66.4M | MIT license | 1 |
- selimsef
Face Alignment (align)
| model | source | params | license | version |
| ----------------- | ---------------- | -------- | ----------- | ------- |
| MobileNet v2 | choyingw | 4.1M | MIT license | 1 |
- choyingw
- code: SynergyNet
- challenge: Wu et al. - Synergy between 3DMM and 3D Landmarks for Accurate 3D Facial Geometry
- Note:
include_tensors
needs to be True in order to include the model prediction in Prediction.logits
Model download
Models are downloaded during runtime automatically to the models directory. You can also download the models manually from a public Google Drive folder.
Execution time
Image test.jpg (4 faces) is analyzed (including drawing boxes and landmarks, but not saving) in about 486ms and test3.jpg (25 faces) in about 1845ms (batch_size=8) on NVIDIA Tesla T4 GPU once the default configuration (conf/config.yaml) of models is initialized and pre heated to the initial image size 1080x1080 by the first run. One can monitor the execution times in logs using the DEBUG level.
Detailed test.jpg execution times:
analyzer
โโโ reader: 27 ms
โโโ detector: 193 ms
โโโ unifier: 1 ms
โโโ predictor
โโโ embed: 8 ms
โโโ verify: 58 ms
โโโ fer: 28 ms
โโโ au: 57 ms
โโโ va: 1 ms
โโโ deepfake: 117 ms
โโโ align: 5 ms
โโโ utilizer
โโโ align: 8 ms
โโโ draw_boxes: 22 ms
โโโ draw_landmarks: 7 ms
โโโ save: 298 ms
Development
Run the Docker container:
- CPU:
docker compose -f docker-compose.dev.yml run facetorch-dev
- GPU:
docker compose -f docker-compose.dev.yml run facetorch-dev-gpu
Add predictor
Prerequisites
- file of the TorchScript model
- ID of the Google Drive model file
- facetorch fork
Facetorch works with models that were exported from PyTorch to TorchScript. You can apply torch.jit.trace function to compile a PyTorch model as a TorchScript module. Please verify that the output of the traced model equals the output of the original model.
The first models are hosted on my public Google Drive folder. You can either send the new model for upload to me, host the model on your Google Drive or host it somewhere else and add your own downloader object to the codebase.
Configuration
Create yaml file
- Create new folder with a short name of the task in predictor configuration directory
/conf/analyzer/predictor/
following the FER example in/conf/analyzer/predictor/fer/
- Copy the yaml file
/conf/analyzer/predictor/fer/efficientnet_b2_8.yaml
to the new folder/conf/analyzer/predictor/<predictor_name>/
- Change the yaml file name to the model you want to use:
/conf/analyzer/predictor/<predictor_name>/<model_name>.yaml
Edit yaml file
- Change the Google Drive file ID to the ID of the model.
- Select the preprocessor (or implement a new one based on BasePredPreProcessor) and specify it's parameters e.g. image size and normalization in the yaml file to match the requirements of the new model.
- Select the postprocessor (or implement a new one based on BasePredPostProcessor) and specify it's parameters e.g. labels in the yaml file to match the requirements of the new model.
- (Optional) Add BaseUtilizer derivative that uses output of your model to perform some additional actions.
Configure tests
- Add a new predictor to the main config.yaml and all tests.config.n.yaml files. Alternatively, create a new config file e.g.
tests.config.n.yaml and add it to the
/tests/conftest.py
file. - Write a test for the new predictor in
/tests/test_<predictor_name>.py
Test and submit
- Run linting:
black facetorch
- Add the new predictor to the README model table.
- Update CHANGELOG and version
- Submit a pull request to the repository
Update environment
CPU:
- Add packages with corresponding versions to
environment.yml
file - Lock the environment:
conda lock -p linux-64 -f environment.yml --lockfile conda-lock.yml
- (Alternative Docker) Lock the environment:
docker compose -f docker-compose.dev.yml run facetorch-lock
- Install the locked environment:
conda-lock install --name env conda-lock.yml
GPU:
- Add packages with corresponding versions to
gpu.environment.yml
file - Lock the environment:
conda lock -p linux-64 -f gpu.environment.yml --lockfile gpu.conda-lock.yml
- (Alternative Docker) Lock the environment:
docker compose -f docker-compose.dev.yml run facetorch-lock-gpu
- Install the locked environment:
conda-lock install --name env gpu.conda-lock.yml
Run tests + coverage
- Run tests and generate coverage:
pytest tests --verbose --cov-report html:coverage --cov facetorch
Generate documentation
- Generate documentation from docstrings using pdoc3:
pdoc --html facetorch --output-dir docs --force --template-dir pdoc/templates/
Profiling
- Run profiling of the example script:
python -m cProfile -o profiling/example.prof scripts/example.py
- Open profiling file in the browser:
snakeviz profiling/example.prof
Acknowledgements
I want to thank the open source code community and the researchers who have published the models. This project would not be possible without their work.
Logo was generated using DeepAI Text To Image API
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file facetorch-0.4.2.tar.gz
.
File metadata
- Download URL: facetorch-0.4.2.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb91fe3864202f90cc20a5f4c2ea58bf0ed68cf2338ec660bcabda8f10f3af53 |
|
MD5 | 8e3da89ca20b8a1739de8d68af3b2307 |
|
BLAKE2b-256 | b7012e409aff9a8be86c8aeb91a00e7b85a3e24fe4f5508ed4bd5d0a3231a438 |
File details
Details for the file facetorch-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: facetorch-0.4.2-py3-none-any.whl
- Upload date:
- Size: 38.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f059a08875a13289ed36603363602ebaca463eeab96540d06cc9826c7b68cd29 |
|
MD5 | 02ce2fd7393a195f2add285380f8d9ee |
|
BLAKE2b-256 | 80c6b2eb9cf28237be861c0f9977bebf280142d7b9c2975a32d8a65f9085fe1b |