Skip to content

A simple PyTorch implementation of Ian Goodfellow's original Generative Adversarial Network.

Notifications You must be signed in to change notification settings

adityashukzy/Vanilla-GAN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Vanilla-GAN

A simple PyTorch implementation of Ian Goodfellow's original Generative Adversarial Network on the MNIST dataset.

Description

Basic code implementation of Goodfellow's original, basic GAN architecture along with the minimax optimization objectives outlined in his 2014 paper introducing GANs.

Minimax Loss Function (modelled on the Binary Cross-entropy Loss)

image The primary intuition here is that the discriminator is trying maximize its probability of correctly classifying a real image as real and fake as fake, while the generator is trying to minimze the probability of the discriminator getting it right (i.e. fooling it).

Results

After 5 epochs

Initial noise sampled from a standard normal distribution Screen Shot 2021-02-07 at 18 45 19

Halfway through training

Around this point, I was a bit concerned that it may be delving into a mode collapse failure, generating almost all digits which resembled '1'. Screen Shot 2021-02-07 at 18 46 43

After about 50 epochs

I had put the number of epochs at 100 but it was taking way too long after a point, I did not notice any major improvement so I decided to stop training. I'm not sure if it converged; I'll try plotting some learning curves to see how the error changes over epochs to get a better idea. Screen Shot 2021-02-07 at 18 42 34

About

A simple PyTorch implementation of Ian Goodfellow's original Generative Adversarial Network.

Topics

Resources

Stars

Watchers

Forks