https://github.com/junshutang/eggan
[ICME 2020, Oral] Fine-Grained Expression Manipulation via Structured Latent Space
https://github.com/junshutang/eggan
Last synced: 20 days ago
JSON representation
[ICME 2020, Oral] Fine-Grained Expression Manipulation via Structured Latent Space
- Host: GitHub
- URL: https://github.com/junshutang/eggan
- Owner: junshutang
- Created: 2020-11-15T07:33:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-16T02:03:29.000Z (over 4 years ago)
- Last Synced: 2025-03-26T21:45:54.829Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EGGAN: Fine-Grained Expression Manipulation via Structured Latent Space
This repository implements the training and testing of EGGAN for "[Fine-Grained Expression Manipulation via Structured Latent Space](https://ieeexplore.ieee.org/document/9102852)". It offers the original implementation of the paper in PyTorch.## Dependencies
```
pip install -r requirement.txt
```
## Dataset
The data of DISFA dataset can be download from [here](https://drive.google.com/drive/folders/1hapEvSWdHrKwbM8_3vt1kNEVvpd5bS_J?usp=sharing). Please unzip the data.zip under the "data/DISFA" folder, in which the path file of DISFA contains each frame of videos.## Pretrain process
The pretrained model of the Identity Classifier can be download from [here](https://drive.google.com/drive/folders/16TU0Q5NJ3RsfVIlOl2i5dCckf9av-tOH?usp=sharing). You can train with other datasets by:
```
python3 pretrain.py
```
And modify the trainning details.
## Training
```
bash runner.sh
```
## Testing
After trainning, you can test the model by loading the specified model.
```
bash test.sh
```
## Citation
```
@inproceedings{tang2020fine,
title={Fine-Grained Expression Manipulation Via Structured Latent Space},
author={Tang, Junshu and Shao, Zhiwen and Ma, Lizhuang},
booktitle={2020 IEEE International Conference on Multimedia and Expo (ICME)},
pages={1--6},
year={2020},
organization={IEEE}
}
```