Keras implementations of Generative Adversarial Networks.
-
Updated
Jan 27, 2021 - Python
Generative adversarial networks (GAN) are a class of generative machine learning frameworks. A GAN consists of two competing neural networks, often termed the Discriminator network and the Generator network. GANs have been shown to be powerful generative models and are able to successfully generate new data given a large enough training dataset.
This needs to be done in 2 parts:
We don't need to expose all the functions. Some functions do nothing fancy and they need to be removed and the entire computation can be performed inside the
forward
function.