Generative Adversarial Nets
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
See the stand-alone genrator notebook
See the stand-alone discriminator notebook
See GAN notebook for the combined generator and discriminator models trained in altering manner
The Linear GAN notebook shows a simple case of using a GAN to generate data that falls on a line.
The myHelper.py file contains helper code for getting the MNIST images.