reyllama / paper-reviews

(very personal) Deep learning literature review
23 stars 0 forks source link

Generative Adversarial Nets #3

Open reyllama opened 4 years ago

reyllama commented 4 years ago

1. Authors

Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio

2. Tags

GAN
Generative Model
2-Player-Game
Computer Vision

3. Summary

  • (a) is the initial state. In (b), D optimizes and converges to
    D*(x) = P_{data}(x) / (P_{data}(x)+p_{g}(x))
  • In (c), G is updated, and gradient of D has guided G to move to regions that are more likely to be judged as data. (Gets better at faking)
  • After numerous steps of training, the model reaches a global optimum where samples generated by G is virtually identical to the original data and D can no more tell the difference.
  • Details of the training algorithm is written below:

image

4. Personal Comments