Generative Adversarial Network (GAN)
Last updated
Last updated
Generative Adversarial Networks (GANs) were introduced in 2014 by Ian Goodfellow and are a fast-growing area in deep neural networks that can be used to generate realistic images, speech, prose, and more.
Presented here is an image of a GAN-generated person who does not otherwise exist:
“[GANs are] the most interesting idea in the last 10 years in Machine Learning” -- Yann LeCun
GANs are composed of two networks:
Generator: creates new synthetic data (e.g. an image) that tricks the discriminator into believing the fake data is authentic
Discriminator: evaluates samples passed from the generator and attempts to discern if the data (e.g. image) belongs to the training dataset, meaning it's authentic, or if it was generated, meaning it's fake
The generator creates a fake sample
A generate (fake) sample is fed into the discriminator alongside a real sample taken from the training dataset
The discriminator returns a prediction with a probability from 0 - 1 with 0 being definitely fake and 1 being definitely authentic