Discriminator
Discover how to implement the Discriminator in GANs using convolutional layers.
We'll cover the following
The discriminator architecture is a map from a multidimensional space where images live to a much smaller dimensional space: the number line. This number line will be used to compute the probability that the input image is fake or real. Following the trend in computer vision, the discriminator architecture uses convolution layers to learn this projection. Our first discriminator implementation is based on a fully convolutional architecture called DCGAN. We provide DCGAN’s
Get hands-on with 1400+ tech skills courses.