#GAN For Generating MNIST Digits

4 messages · Page 1 of 1 (latest)

vestal talon
#

I am trying to make a GAN model to generate 28x28 images (just like MNIST) corresponding to each digit. The Generator takes a z vector (random noise) concatenated with the actual label vector of length 10 (one hot encoded). The output of the generator (vector of length 784) is then fed into the discriminator which gives out a length 11 vector (The first ten values correspond to the one hot encoding of the prediction and the last value tells if the input image is fake or not). MSE Loss is used for calculating the loss. The discriminator is getting trained properly but not the generator. How do I go about debugging this?

calm trench
#

@next surge Sorry for pinging, but I think you're the most experienced in this out of people I know

ruby marlin
vestal talon
#

I am using adam optim with this