1

What does the "random input" from noise (random noise) mean in GANs?

Let's say I want to synthesize data such as name, age, income etc.. Does my generator know the original data sets (and thus the distributions of the data)?

How can I think of "random noise" in this scenario?

Brian Spiering
  • 21,136
  • 2
  • 26
  • 109
user126861
  • 13
  • 2

1 Answers1

0

In Generative Adversarial Networks (GANs), the random noise is weighted by the learned feature maps to generate novel, synthetic data examples.

If there was no random input to the generator network, it would create the same synthetic data example over and over. The noise acts as a random seed.

Brian Spiering
  • 21,136
  • 2
  • 26
  • 109