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

https://github.com/byte7/gans

Keras Implementation of Generative Adverserial Networks
https://github.com/byte7/gans

deep-learning gan generative-adversarial-network keras

Last synced: about 2 months ago
JSON representation

Keras Implementation of Generative Adverserial Networks

Awesome Lists containing this project

README

        

# GANs
Keras Implementation of Generative Adverserial Networks

## Table of Contents
* [Implementations](#implementations)
+ [Deep Convolutional GAN](#dcgan)
+ [GAN](#vgan)

## Implementations
### DC-GAN
Implementation of _Deep Convolutional Generative Adversarial Network_.

[Code](dcgan/dcgan.py)

Paper: https://arxiv.org/abs/1610.09585

#### Example
```
$ cd dcgan/
$ python3 dcgan.py
```

### GAN
Implementation of _Generative Adversarial Network_ with a MLP generator and discriminator.

[Code](vgan/vgan.py)

Paper: https://arxiv.org/abs/1406.2661

#### Example
```
$ cd vgan/
$ python3 vgan.py
```