From c5b4373a54693139ae4c408b1fcca2de745355e0 Mon Sep 17 00:00:00 2001 From: Nataniel Ruiz Date: Thu, 7 May 2020 15:58:26 -0400 Subject: [PATCH] Update README.md Added G+D adversarially trained StarGAN weights. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1b87872..7cc2400 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ python main.py --mode train --dataset CelebA --image_size 256 --c_dim 5 --sample ``` If you wish to run vanilla training or generator adversarial training, comment/uncomment the appropriate lines (l.44-49) in stargan/main.py +The G+D adversarially trained model we used in the paper can be downloaded [here](https://drive.google.com/open?id=1xMM7q4w3lczO6Iskj8CWwmNWHBer9RBP). + ## Image Translation Network Implementations We use code from [StarGAN](https://github.com/yunjey/stargan), [GANimation](https://github.com/vipermu/ganimation), [pix2pixHD](https://github.com/NVIDIA/pix2pixHD), [CycleGAN](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix) and [advertorch](https://github.com/BorealisAI/advertorch). These are all great repositories and we encourage you to check them out and cite them in your work.