Commit ·
a7fe2d8
1
Parent(s): 5e9c748
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Explore the Expression: Facial Expression Generation using Auxiliary Classifier Generative Adversarial Network
|
| 2 |
+
|
| 3 |
+

|
| 4 |
+
|
| 5 |
+
This is the implementation of the FExGAN proposed in the following article:
|
| 6 |
+
|
| 7 |
+
[Explore the Expression: Facial Expression Generation using Auxiliary Classifier Generative Adversarial Network](https://www.arxiv.com)
|
| 8 |
+
|
| 9 |
+
FExGAN takes input an image and a vector of desired affect (e.g. angry,disgust,sad,surprise,joy,neutral and fear) and converts the input image to the desired emotion while keeping the identity of the original image.
|
| 10 |
+
|
| 11 |
+

|
| 12 |
+
|
| 13 |
+
# Requirements
|
| 14 |
+
|
| 15 |
+
In order to run this you need following:
|
| 16 |
+
|
| 17 |
+
* Python >= 3.7
|
| 18 |
+
* Tensorflow >= 2.6
|
| 19 |
+
* CUDA enabled GPU (e.g. GTX1070/GTX1080)
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
# Usage
|
| 23 |
+
|
| 24 |
+
You can either run this on google colab or run it on your local system
|
| 25 |
+
|
| 26 |
+
* Install the pre-requisites
|
| 27 |
+
* Download the models (if any link fails in the notebook due to google drive restriction, try downloading them manually)
|
| 28 |
+
* Execute the rest of the notebook
|
| 29 |
+
|
| 30 |
+
# Citation
|
| 31 |
+
|
| 32 |
+
If you use any part of this code or use ideas mentioned in the paper, please cite the following article.
|
| 33 |
+
|
| 34 |
+
```
|
| 35 |
+
@article{Siddiqui_FExGAN_2022,
|
| 36 |
+
author = {{Siddiqui}, J. Rafid},
|
| 37 |
+
title = {{Explore the Expression: Facial Expression Generation using Auxiliary Classifier Generative Adversarial Network}},
|
| 38 |
+
journal = {ArXiv e-prints},
|
| 39 |
+
archivePrefix = "arXiv",
|
| 40 |
+
keywords = {Deep Learning, GAN, Facial Expressions},
|
| 41 |
+
year = {2022}
|
| 42 |
+
url = {http://arxiv.org/abs/2201.09061},
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
```
|