Generative Adversial Network using MNIST Data
Generative Adversial Network using MNIST Data
There are 2 neural network, one neural network called generator generates new data instances while the other discriminator
evaluates the generated image for authencity. Generators creates synthetic images and then passes to discriminator(In hope that
Generator will be able to fool the Discriminator even images generated by generator are fake.
So we have a Counter Objective function for Generator and Discriminator
Generator is trying to fool the Discriminator while Discriminator is trying caught the fake images coming from Generator
Result