Hi,
In this video when we create the model for discriminator we are using sigmoid activation for output layer.
See Below code: -
discriminator.add(Dense(1,activation=‘sigmoid’))
In the training tricks video, it was mentioned we need 0.9 as real image output.
But sigmoid will produce 1 right? - for real image output.
So how will that be handled?
Thanks
.