yjchoe / alphaGAN

A PyTorch implementation of alpha-GAN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

alphaGAN

A PyTorch implementation of alpha-GAN (https://arxiv.org/abs/1706.04987) with a sample run on MNIST.

Dependencies

  • PyTorch v0.1+ with CUDA support
  • torchvision v0.1.8+
  • TensorFlow v1.2+ (for TensorBoard only)

Usage

train_mnist.py contains sample code that runs the package on MNIST data. On the command line, run

$ python train_mnist.py --output_path YOUR_SAVED_PATH

While or after running, you will able to monitor the training progress on TensorBoard. Run

$ tensorboard --logdir=YOUR_SAVED_PATH/logs/ --port=6006

and access https://localhost:6006 (or the corresponding server URL) on your browser.

References

Generated MNIST Images

samples-mnist-epoch-30

About

A PyTorch implementation of alpha-GAN

License:MIT License


Languages

Language:Python 100.0%