leo-p / papers

Papers and their summary (in issue)
22 stars 4 forks source link

Conditional Generative Adversarial Nets #2

Open leo-p opened 7 years ago

leo-p commented 7 years ago

https://arxiv.org/pdf/1411.1784.pdf

Generative Adversarial Nets were recently introduced as a novel way to train generative models. In this work we introduce the conditional version of generative adversarial nets, which can be constructed by simply feeding the data, y, we wish to condition on to both the generator and discriminator. We show that this model can generate MNIST digits conditioned on class labels. We also illustrate how this model could be used to learn a multi-modal model, and provide preliminary examples of an application to image tagging in which we demonstrate how this approach can generate descriptive tags which are not part of training labels.

leo-p commented 7 years ago

Summary:

Inner workings:

Changes the loss to the conditional loss:

screen shot 2017-04-24 at 10 07 25 am

For implementation the only thing needed is to feed the label data to both the discriminator and generator:

screen shot 2017-04-24 at 10 07 18 am

Results:

Interesting at the time but not surprising now. There's not much more to the paper than what is in the summary.