项目作者: tmulc18

项目描述 :
Generative Adversarial Nets
高级语言: Jupyter Notebook
项目地址: git://github.com/tmulc18/Simple-GANs.git
创建时间: 2017-04-08T06:28:42Z
项目社区:https://github.com/tmulc18/Simple-GANs

开源协议:MIT License

下载


Generative Adverserial Networks

Goal will be to train two networks on MNIST data. One network will try to see if data comes from MNIST while the other network tries to generate images that look like MNIST

Generator

See the stand-alone genrator notebook

Discriminator

See the stand-alone discriminator notebook

GAN

See GAN notebook for the combined generator and discriminator models trained in altering manner

Linear GAN

The Linear GAN notebook shows a simple case of using a GAN to generate data that falls on a line.

Helper functions

The myHelper.py file contains helper code for getting the MNIST images.

Resources