李宏毅GAN学习笔记(1)
2018-11-10 本文已影响0人
SmallRookie
GAN Algorithm
Initialize for D and
for G
- In each training iteration:
- Sample m examples
from database
- Sample m noise samples
from a distrubution
- Obtaining generated data
- Update discriminator parameters
to maximize
- Sample m noise samples
from a distribution
- Update generator parameters
to maxmize
- Sample m examples
Structured Learning Approach
- Bottom Up: Learn to generate the object at the component level
- Top Down: Evaluating the whole object, and find the best one
Discriminator --- Training
- General Algorithm
- Given a set of positive example, randomly generate a set of negative examples.
- In each iteration
- Learn a discriminator D that can discriminate positive and negative examples.
- Generate negative examples by discriminator D:
Generator v.s. Discriminator
- Generator
- Pros:
- Easy to generate even with deep model.
- Cons:
- Imitate the appearance.
- Hard to learn the correlation between components.
- Pros:
- Discriminator
- Pros:
- Considering the big picture.
- Cons:
- Generation is not always feasible, especially when your model is deep.
- How to do negative sampling?
- Pros:
Discriminator + Generator --- Training
- General Algorithm
- Given a set of positive example, randomly generate a set of negative examples.
- In each iteration
- Learn a discriminator D that can discriminate positive and negative examples.
- Generate negative examples by discriminator D: