A minimal PyTorch implementation of Wasserstein GAN. This repository trains a simple MLP to generate MNIST images.
Here are some images generated by the model trained for 1500 epochs:
My main theoretical reference was Probabilistic Machine Learning: Advanced Topics, by Kevin Patrick Murphy.
- Architecture: Simple MLP for both generator and critic.
- Dataset: MNIST.
- Training duration: 1500 epochs with batch size 64.
@misc{arjovsky2017wassersteingan,
title={Wasserstein GAN},
author={Martin Arjovsky and Soumith Chintala and Léon Bottou},
year={2017},
eprint={1701.07875},
archivePrefix={arXiv},
primaryClass={stat.ML},
url={https://arxiv.org/abs/1701.07875},
}@book{pml2Book,
author = "Kevin P. Murphy",
title = "Probabilistic Machine Learning: Advanced Topics",
publisher = "MIT Press",
year = 2023,
url = "http://probml.github.io/book2"
}