Spaces:
Build error
A newer version of the Gradio SDK is available: 6.14.0
title: ArtisticFaces
emoji: 🎨
colorFrom: indigo
colorTo: red
sdk: gradio
sdk_version: 4.23.0
app_file: run.py
pinned: false
ArtisticFaces
Overview
This repo contains code for a machine learning based platform for transfering historical art styles like impressionism and realism into a user's uploaded/captured images in real-time using two different appraaches:
- Utilizing layers in VGG - 16 to capture style loss and information for style transference
- Training and fine-tuning a Cyclical Generative Adversarial Network (CycleGAN) on ImageNet and Wikiart dataset
Project Structure
- src: contains run.py file to launch gradio interface and interact with our application
- scripts: contains CycleGAN and VGG-16 related code and dependencies
- notebooks: contains .ipnyb notebooks for debugging and demo purposes
- training: training script for CycleGAN
- data: contains compressed files to image data used to train
Getting Started
To get a local copy up and running, please follow these simple steps.
Prerequisites
Here is what you need to run ArtisiticFaces.
- Python3
- pip
- Miniconda* (optional to use GPU on Windows machine)
Setup Repository
- git clone this repo
git clone https://github.com/nmorgan8/ArtisticFaces.git
- cd into directory
cd ArtisticFaces
Setup Python Modules
- Install project requirements and set module dependencies
pip install -r requirements.txt
- Install tensorflow_examples
git clone https://github.com/tensorflow/examples.git
- Set module dependencies
python3 setup.py install
Extract Model Checkpoints
- Untar PROD.tar.gz to retrieve trained models
tar -xvzf checkpoints/PROD.tar.gz -C checkpoints/
- Unzip PROD.zip to retrieve trained models
unzip checkpoints/PROD.zip
- Use softwares (7zip, Archive Utilities, etc.) to extract PROD directory containing the trained models
ArtisticFaces/checkpoints/
Launch Gradio
Navigate to ArtisticFaces home directory
Run src/run.py file to start gradio server
python3 src/run.py
Optional Environment Setup
Optional instuctions to setup GPU if on Windows Machine (tensorflow does not allow MAC GPU use) and create a python virtual environment
Windows GPU Setup
Use the following instructions to setup Windows Machine to run Tensorflow on local GPU
Install and update Nvidia GPU Drivers
Install Miniconda
Create conda environment
conda create --name tf python=3.10
* Activate conda evironment
```
conda activate tf
```
* Deactivate conda environment
```
conda deactivate
```
Create python virtual environment
Use the following instructions to create a python virutal environment to ensure no dependency issues with python modules.
If using virtual environment, must create env BEFORE installing python modules
Navigate to ArtisticFaces directory
Create Virtual Environment
python3 -m venv <name_of_virtual_env>
Common Errors
ValueError: Trying to load a model of incompatible/unknown type.
- Delete cached model files to allow it to re-download
rm -r <file_name>
Navigate to ArtisticFaces home directory
Re-launch gradio server
Team Members
- Nick Morgan
- Claudia Gusti
Technologies
- CycleGANs, VGG-Net
- Tensorflow, Keras, matplotlib, Gradio
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference