RahulBhalley / progressive-growing-of-gans.pytorch

Unofficial PyTorch implementation of "Progressive Growing of GANs for Improved Quality, Stability, and Variation".
https://arxiv.org/abs/1710.10196
MIT License
50 stars 5 forks source link
discriminator generative-adversarial-network generator optimal-transport progressive-gan pytorch tensorboard wasserstein-gan wgan

Progressive Growing of Generative Adversarial Network

This is PyTorch implementation of Progressive Growing GANs. The network is trainable on custom image dataset.

Place your dataset folder inside data folder. The training stats are added to repo folder as the training progresses.

Training Configuration

The network training parameters can be configured with following flags.

General settings

Training parameters

Network structure

Optimizer setting

Display and save setting

GPU Note

Make sure your machine has CUDA enabled GPU(s) if you want to train on GPUs. Change the --n_gpu flag to positive integral value <= available number of GPUs.

TODO

Related Links