An open API service indexing awesome lists of open source software.

https://github.com/mj10/gans

Notebooks for sample implementations of a variety of Generative Adversarial Networks
https://github.com/mj10/gans

deep-learning generative-adversarial-network tensorflow

Last synced: about 2 months ago
JSON representation

Notebooks for sample implementations of a variety of Generative Adversarial Networks

Awesome Lists containing this project

README

          

# Generative Adversarial Network

This repository contains notebooks for sample implementations of a variety of Generative Adversarial Networks trained on the [MNIST](https://www.kaggle.com/c/digit-recognizer/data) dataset.

## GANs Implemented

* [Generative Adversarial Network](https://arxiv.org/abs/1406.2661) (PyTorch and Tensorflow)
* [Wasserstein GAN](https://arxiv.org/abs/1701.07875) (Tensorflow)
* [Auxiliary Classifier GAN](https://arxiv.org/abs/1610.09585) (Tensorflow)
* [InfoGAN](https://arxiv.org/abs/1606.03657)