GANs Flashcards

1
Q

GAN

Generative Adversarial Network

A

A generative model that yields high-fidelity generations with no blurring. Comprised of two fundemental components:

  • Generator: uses random noise as input to generate samples similiar to those in the training set.
  • Discriminator: has to discern between real photos taken from the training set and generated samples.

The discriminator learns the domain distribution just as the generator learns to mimic it. Any artifact that the generator might introduce is liable to tip off the discriminator, giving the generator a strong motive for high-fidelity and low noise.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

GAN

Generative Adversarial Network

A

A generative model that yields high-fidelity generations with no blurring. Comprised of two fundemental components:

  • Generator: uses random noise as input to generate samples similiar to those in the training set.
  • Discriminator: has to discern between real photos taken from the training set and generated samples.

The discriminator learns to appreciate the subtleties of the domain distribution just as the generator learns to mimic them. Any artifact that the generator might introduce is liable to tip off the discriminator, giving the generator a strong motive for high-fidelity and low noise.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Loss Function of GAN

A

Adversarial Loss: D wants to maximize its discerment rate while G wants to minimize it. The weights are trained so as to acheive the best discernment and the best generation.
This is an unstable function. One solution to its instability is to train G and D seperately a few iterations at a time.

Also referred to as min-max loss

How well did you know this?
1
Not at all
2
3
4
5
Perfectly