diff --git a/doc/tutorials/gan/index_en.md b/doc/tutorials/gan/index_en.md index dfedc1116175e64be38a08704811f275518cbcad..5634f18660ed2fcea320ad13afcbdab91a9d7c4c 100644 --- a/doc/tutorials/gan/index_en.md +++ b/doc/tutorials/gan/index_en.md @@ -5,7 +5,7 @@ This demo implements GAN training described in the original GAN paper (https://a The high-level structure of GAN is shown in Figure. 1 below. It is composed of two major parts: a generator and a discriminator, both of which are based on neural networks. The generator takes in some kind of noise with a known distribution and transforms it into an image. The discriminator takes in an image and determines whether it is artificially generated by the generator or a real image. So the generator and the discriminator are in a competitive game in which generator is trying to generate image to look as real as possible to fool the discriminator, while the discriminator is trying to distinguish between real and fake images.