How to Develop an Information Maximizing GAN (InfoGAN) in Keras
Taken from the InfoGan paper. Let's start off by developing the generator model as a deep convolutional neural network (e.g. a DCGAN). The model could take the noise vector (z) and control vector (c) as separate inputs and concatenate them before using them as the basis for generating the image. Alternately, the vectors can be concatenated beforehand and provided to a single input layer in the model. The approaches are equivalent and we will use the latter in this case to keep the model simple.
Jul-21-2019, 19:43:35 GMT