README.md 835 字节
Newer Older
W
wangyang59 已提交
1 2 3 4 5 6 7 8 9
# Generative Adversarial Networks (GAN) 

This demo implements GAN training described in the original GAN paper (https://arxiv.org/abs/1406.2661) and DCGAN (https://arxiv.org/abs/1511.06434).

The general training procedures are implemented in gan_trainer.py. The neural network configurations are specified in gan_conf.py (for synthetic data) and gan_conf_image.py (for image data).

In order to run the model, first download the corresponding data by running the shell script in ./data.
Then you can run the command below. The flag -d specifies the training data (cifar, mnist or uniform) and flag --useGpu specifies whether to use gpu for training (0 is cpu, 1 is gpu).  

10
$python gan_trainer.py -d cifar --use_gpu 1
W
wangyang59 已提交
11

12 13
The generated images will be stored in ./cifar_samples/
The corresponding models will be stored in ./cifar_params/