Generative Adversarial Networks in Detail
Understand the basic concepts behind GANs and their training process.
Another way to explain GANs is through the probabilistic formulation we used on variational autoencoders.
GANs follow a different approach in finding the probability distribution of the data .
Instead of computing or the approximate , we only care about the ability to sample data from the distribution.
But what does that actually mean?
If we assume that our data follow a probability distribution , we will want to build a model that allows us to draw samples from .
As we did with VAE, we again introduce a latent variable with a prior distribution . is usually a simple ...