Blog post 3: Understanding content
I chose the paper Generative Adversarial Networks[1] from Ian Goodfellow, which I am going to review what the main points are and how it works. Intorduction Generative Adversarial Networks, or GANs for short, are an approach to generative modeling using deep learning methods. Generative modeling is an unsupervised learning task in machine learning that involves automatically discovering and learning the regularities or patterns in input data in such a way that the model can be used to generate or output new examples that plausibly could have been drawn from the original dataset.[1,2,3,4] How does it work? GANs consists of two networks, a Generator G(x), and a Discriminator D(x). They both play an adversarial game where the generator tries to fool the discriminator by generating data similar to those in the training set. The Discriminator tries not to be fooled by identifying fake data from real data. They both work simultaneously to learn and train complex data like audio, video or ima...