An Out-of-the-Box Replicate of GANimation using PyTorch, pretrained weights are available!
A reimplementation of GANimation: Anatomically-aware Facial Animation from a Single Image, using PyTorch. Pretrained models/weights are available at GDrive or BaiduPan(Code:3fyb) !
All resources related to this project are located at GDrive or BaiduPan(Code:3fyb).
git clone https://github.com/donydchen/ganimation_replicate.git
cd ganimation_replicate
pip install -r requirements.txt
datasets
and put it in the root path of this project. ckpts
and put it in the root path of this project. (optional, only for test or finetune)python -m visdom.server
and click the URL http://localhost:8097
python main.py --data_root [path_to_dataset]
# e.g. python main.py --data_root datasets/celebA --gpu_ids 0,1 --sample_img_freq 500
# python main.py --data_root datasets/emotionNet --gpu_ids 0,1 --sample_img_freq 500
# set '--visdom_display_id 0' if you don't want to use visdom
# use 'python main.py -h' to check out more options.
python main.py --mode test --data_root [path_to_dataset] --ckpt_dir [path_to_pretrained_model] --load_epoch [epoch_num]
# e.g. python main.py --mode test --data_root datasets/celebA --batch_size 8 --max_dataset_size 150 --gpu_ids 0,1 --ckpt_dir ckpts/celebA/ganimation/190327_161852/ --load_epoch 30
# set '--interpolate_len 1' if you don't need linear interpolation.
# use '--save_test_gif' to generate animated images.
python main.py --data_root [path_to_dataset] --ckpt_dir [path_to_existing_checkpoint] --load_epoch [epoch_num]
# e.g. python main.py --data_root datasets/celebA --gpu_ids 0,1 --sample_img_freq 300 --n_threads 18 --ckpt_dir ckpts/celebA/ganimation/190327_161852 --load_epoch 30 --epoch_count 31 --niter 30 --niter_decay 10
AU01_r, AU02_r, AU04_r, AU05_r, AU06_r, AU07_r, AU09_r, AU10_r, AU12_r, AU14_r, AU15_r, AU17_r, AU20_r, AU23_r, AU25_r, AU26_r, AU45_r
.
./FaceLandmarkImg -f [path_to_img] -aus
# In the result file, values of columns [2:19] are extracted for later usage.
Training
Testing (with GANimation model, on epoch 30)
Testing (with StarGAN model, on epoch 30)
Training
Testing (with GANimation model, on epoch 30)
Testing (with StarGAN model, on epoch 30)
My mentor came up with a fancy idea of playing GANs with AUs when I was an intern at AI Lab, Lenovo Research around early August, 2018. I enjoyed the idea very much and started working on it. However, just a few days after that, the GANimation paper showed up, which was not a good news for us… So I tried to replicate GANimation, and this is the start of this project.
And in late August, 2018, I came accross an issue on the official GANimation implementation, claiming that the test result is wrong. While in my case, I did get some reasonable results, so I replied that issue with the results I had got. Since the author of GANimation hadn’t decided to release the pretrained model yet, I recieved Emails inquiring me whether I could offer my codes and pretrained models from time to time.
I really wanted to provide the codes and pretrained models. However, I was very busy in the past few months, moving from Beijing to Singapore, working for paper deadlines, so on and so forth. So the codes remained in the server of Lenovo Research for half an year. And these days, I finally got some free time. So I dug out the codes, cleaned them, retrained the network, and now, I make them public. I will keep updating this project if I have time, and hope that these codes can serve to faciliate the research of someone who are working on the related tasks.
Feel free to contact me if you need any help from me related to this project.
You are always welcome to contribute to this repository by sending a pull request.