Metadata-Version: 2.1
Name: faceai-bgimpact
Version: 0.2.4
Summary: FaceAI-BGImpact implements various generative methods and studies the impact of altering the background on the generated images and the training of the models.
Author: Thomas Kientz
Requires-Python: >=3.9,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: imageio (==2.19.3)
Requires-Dist: imageio-ffmpeg (==0.4.7)
Requires-Dist: install (>=1.3.5,<2.0.0)
Requires-Dist: ipykernel (>=6.26.0,<7.0.0)
Requires-Dist: kaggle (>=1.5.16,<2.0.0)
Requires-Dist: kaleido (==0.2.1)
Requires-Dist: matplotlib (>=3.8.1,<4.0.0)
Requires-Dist: numpy (>=1.26.2,<2.0.0)
Requires-Dist: opencv-python-headless (>=4.8.1.78,<5.0.0.0)
Requires-Dist: pillow (>=10.1.0,<11.0.0)
Requires-Dist: pip (>=23.3.1,<24.0.0)
Requires-Dist: plotly (>=5.18.0,<6.0.0)
Requires-Dist: provae (>=0.1.0,<0.2.0)
Requires-Dist: pytest (>=7.4.3,<8.0.0)
Requires-Dist: pytorch-gan-metrics (>=0.5.3,<0.6.0)
Requires-Dist: rembg (>=2.0.52,<3.0.0)
Requires-Dist: scikit-learn (==1.3.2)
Requires-Dist: torch (>=2.0.0,!=2.0.1,!=2.1.0)
Requires-Dist: torchaudio (>=2.1.0,<3.0.0)
Requires-Dist: torchvision (>=0.16.0,<0.17.0)
Description-Content-Type: text/markdown

# FaceAI - Background Impact

![387467294_852111396644872_6368954973460925603_n](https://github.com/thomktz/FaceAI-BGImpact/assets/60552083/d2a015eb-eabe-4a9c-ad6e-7ed35051241f)

Code for the paper:
<p align="center">
   <b>"Behind the Face: Unveiling the Effects of Background Subtraction on VAE and GAN Model Efficacy"</b>
  <br/> 
   This study focuses on removing the background from datasets of faces<br> 
   to gauge the effect on the training and performance of facial generative models. <br>
   We are also interested on the effect on the interpretability of the latent spaces of the models. 
</p>

(Paper available [here](https://github.com/thomktz/FaceAI-BGImpact/blob/main/report/report.pdf)).



<p align="center">
  <img src="https://img.shields.io/github/license/thomktz/FaceAI-BGImpact?style=flat-square" alt="Licence MIT" />
  <img src="https://img.shields.io/pypi/v/faceai-bgimpact?style=flat-square" alt="Pypi" />
  <img src="https://img.shields.io/github/repo-size/thomktz/FaceAI-BGImpact?style=flat-square" alt="Size" />
  <img src="https://img.shields.io/github/commit-activity/m/thomktz/FaceAI-BGImpact?style=flat-square" alt="Commits" />
  <a href="https://www.python.org/downloads/release/python-3100/" 
  target="_blank"><img src="https://img.shields.io/badge/python-3.10-blue.svg" alt="Python Version" /></a>
</p>

---

The repository contains:

- The `faceai-bgimpact`package:
  - Data processing scripts to create the FFHQ-Blur and FFHQ-Grey datasets
  - A unified Deep Learning framework for training and evaluating Generative AI models
  - Models enabling latent space exploration with PCA
  - A set of scripts to train, evaluate and generate images and videos from the models
- A set of pre-trained models(\*)
- A web application to take control of the pre-trained models(\*)

(\*) = not included in the Pypi package.

---

# The package

The package was published to PyPi, and can be installed using

```
pip install faceai-bgimpact
```

To install locally, clone the repository and run `poetry install` from the root folder instead.

## 🌄 Datasets

#### **Download script**

We uploaded the created datasets to Kaggle. To download them, please set up your Kaggle API token, then run:

```
faceai-bgimpact download-all-ffhq
```

#### **Generate**

You can also choose to generate the Grey and Blur datasets yourself. To do so, first download the raw dataset using:

```
faceai-bgimpact download-all-ffhq --raw
```

Then, you can generate the masks using:

```
faceai-bgimpact create-masks
```

And finally, generate the grey and blur datasets using:

```
faceai-bgimpact create-blur-and-grey
```

#### **Kaggle**

The datasets are available on Kaggle at the following links:

- [FFHQ-Blur](https://www.kaggle.com/datasets/thomaskientz/ffhq-blur) (Where the background is blurred)
- [FFHQ-Grey](https://www.kaggle.com/datasets/thomaskientz/ffhq-grey) (Where the background is greyed-out)

## 🧠 Models

The package allows you to train and evaluate the following models:

- **Variational Auto-encoder**
- **DCGAN**
- **StyleGAN**

using these example commands:

- `faceai-bgimpact train --model VAE --dataset ffhq_raw`

  - (Train a VAE on the raw FFHQ dataset from scratch)

- `faceai-bgimpact train --model StyleGAN --dataset ffhq_grey --checkpoint-epoch 80`
  - (Resume training a StyleGAN on the greyed-out FFHQ dataset from epoch 80)

#### **Notes on implementation**

We implemented the models from scratch, using PyTorch. Here is a list of the main inspirations we used, if any:

- **StyleGAN**:
  - There is no official PyTorch implementation of StyleGAN 1. Most of the code was implemented by hand from reading the StyleGAN paper and the ProGAN paper, although, some building blocks were taken from other repositories, below.
  - [hukkelas/progan-pytorch](https://github.com/hukkelas/progan-pytorch): Inspiration for the progressive-growing structure, no actual code was used.
  - [aladdinpersson/Machine-Learning-Collection](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/558557c7989f0b10fee6e8d8f953d7269ae43d4f/ML/Pytorch/GANs/StyleGAN): We used this repository for the most granular building blocks, like the weight-scaled Conv2d layer, the pixelwise normalization layer, and the minibatch standard deviation layer.
  - [NVlabs/stylegan2](https://github.com/NVlabs/stylegan2): Official StyleGAN2 implementation. StyleGAN2 has a very different architecture from StyleGAN1, but we used the R1 loss function from this repository. StyleGAN normally uses WGAN-GP regularization, but we had convergence issues. Using R1 regularization instead of WGAN-GP solved the issue.
- **VAE**:
  - The VAE was implemented from scratch, using the VAE paper as a reference.
- **PCA**:
  - The latent space exploration using PCA was all implemented from scratch.

We also introduced a unified framework for the models. In practice we have an `AbstractModel` class, which is inherited by the `VAE`, `DCGAN` and `StyleGAN` classes. It enforces a common structure for the models, allowing the scripts to be nearly model-agnostic.

We also put in place rigorous code standards, using pre-commit hooks (**_black_**, **_flake8_**, **_prettier_**) to enforce code formatting, and linting, as well as automated tests using **_PyTest_**, and a code review process using pull requests. We used **__** for package management.

> To run the pre-commit hooks, you should install the hooks using `pre-commit install`, and then `pre-commit run` (or `pre-commit run --all-files` to run on all files).

> To run the tests, you should install PyTest using `pip install pytest`, and then run `pytest -v` (or `poetry run pytest -v` if you are using ).

## 📝 Scripts

The package also includes a set of scripts to train, evaluate and generate images and videos from the models.

#### **Training**

The `train` script is an entry point to train a model. It includes these command-line arguments:

- `--model`: Required. Specifies the type of model to train with options "DCGAN", "StyleGAN", "VAE".
- `--dataset`: Required. Selects the dataset to use with options "ffhq_raw", "ffhq_blur", "ffhq_grey".
- `--latent-dim`: Optional. Defines the dimension of the latent space for generative models.
- `--config-path`: Optional. Path to a custom JSON configuration file for model training.
- `--lr`: Optional. Learning rate for DCGAN model training.
- `--dlr`: Optional. Discriminator learning rate for StyleGAN training.
- `--glr`: Optional. Generator learning rate for StyleGAN training.
- `--mlr`: Optional. W-Mapping learning rate for StyleGAN training.
- `--loss`: Optional. Specifies the loss function to use with defaults to "r1"; choices are "wgan", "wgan-gp", "r1".
- `--batch-size`: Optional. Defines the batch size during training.
- `--num-epochs`: Optional. Sets the number of epochs for training the model.
- `--save-interval`: Optional. Epoch interval to wait before saving models and generated images.
- `--image-interval`: Optional. Iteration interval to wait before saving generated images.
- `--list`: Optional. Lists all available checkpoints if set.
- `--checkpoint-path`: Optional. Path to a specific checkpoint file to resume training, takes precedence over `--checkpoint-epoch`.

#### **Training video**

The `create-video` script is an entry point to create a video from images saved throughout the training process. It includes these command-line arguments:

- `--model`: Required. Specifies the type of model to train with options "DCGAN", "StyleGAN", "VAE".
- `--dataset`: Required. Selects the dataset to use with options "ffhq_raw", "ffhq_blur", "ffhq_grey".
- `frame-rate`: Optional. Defines the frame rate of the video.
- `skip-frames`: Optional. Defines the number of images to skip between each frame of the video.

Example usage:

`faceai-bgimpact create-video --model StyleGAN --dataset ffhq_grey`

=> [Output video](https://youtu.be/xDtf5vw9yT8)
On the left, the generated image for the current resolution and alpha, on the right, a real image at the same resolution and alpha.

---

# The web application

We developped a web application from scratch to control the latent space of StyleGAN using Vue.JS and Flask-RESTx (Python). 
It is too resource-intensive to be hosted on a free server, so the best course of action is to host it locally.

**⚠️ Warning ⚠️:** Since it contains Torch, the environment is quite heavy. At least 5GB of free space required.

The web-application is dockerized, so please install Docker first. Then, refer to this video to install and run the application:

[![Watch the video](https://img.youtube.com/vi/BU1d8SxDASY/sd1.jpg)](https://www.youtube.com/watch?v=BU1d8SxDASY)

But the general steps are:
```
git clone https://github.com/thomktz/FaceAI-BGImpact.git
```
```
cd FaceAI-BGImpact/webapp
```
```
docker compose up --build
```
Then, in a browser, go to [http://localhost:8082](http://localhost:8082)  

When you're done, don't forget to remove the docker image and container, as they are 5GB in total.

---

## Folder structure

The package is structured as following :

```
FaceAI-BGImpact
├── faceai_bgimpact
│   ├── configs                         # Configuration files for models
│   │   ├── default_dcgan_config.py
│   │   └── default_stylegan_config.py
│   │   └── default_vae_config.py
│   ├── data_processing                 # Scripts and notebooks for data preprocessing
│   │   ├── paths.py                    # Data paths
│   │   ├── download_raw_ffhq.py        # Functions to download raw FFHQ dataset
│   │   ├── create_masks.py             # Functions to create masks for FFHQ dataset
│   │   ├── create_blur_and_grey.py     # Functions to create blurred and greyed-out FFHQ datasets
│   │   └── download_all_ffhq.py        # Functions to download all FFHQ datasets
│   ├── models
│   │   ├── dcgan_                      # DCGAN model implementation
│   │   │   ├── dcgan.py
│   │   │   ├── discriminator.py
│   │   │   └── generator.py
│   │   ├── stylegan_                   # StyleGAN model implementation
│   │   │   ├── discriminator.py
│   │   │   ├── generator.py
│   │   │   ├── loss.py                 # Loss functions for StyleGAN
│   │   │   └── stylegan.py
|   |   ├── vae_                        # VAE model implementation
|   |   |   ├── decoder.py
│   │   │   ├── encoder.py
│   │   │   └── vae.py
│   │   ├── abstract_model.py           # Abstract model class for common functionalities
│   │   ├── data_loader.py              # Data loading utilities
│   │   └── utils.py
│   ├── scripts
│   │   ├── train.py                    # Script to train models
│   │   ├── create_video.py             # Script to create videos from generated images
│   │   ├── generate_images.py
│   │   └── graph_fids.py
│   ├── main.py                         # Entry point for the package
│   └── Nirmala.ttf                     # Font file used in the project
├── tests/                              # Pytests
├── webapp/                             # Web application folder
├── report/                             # LaTeX report
├── README.md
└── pyproject.toml                      # Poetry package management configuration file
```

