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

https://github.com/dragen1860/gan

Pytorch Implementations for popular GAN algorithms.
https://github.com/dragen1860/gan

Last synced: 5 months ago
JSON representation

Pytorch Implementations for popular GAN algorithms.

Awesome Lists containing this project

README

          

# GAN

## 50 lines of GAN
It implements a simple G and D network, where both G and D network consist of 3 fully connected layers. The training data is generated from gaussian distribution whose mean = 4 and variance = 1.25.
Here is the training curve which indicates how generated data converge to true guassian distribution.

![50lines](res/50.gif)

## WGAN-GP
Wasserstein GAN with gradient penalty

![wgan-gp](res/wgan-gp.gif)