diff --git a/beginner_source/dcgan_faces_tutorial.py b/beginner_source/dcgan_faces_tutorial.py index 2ee43d72d2f..d98683741e5 100644 --- a/beginner_source/dcgan_faces_tutorial.py +++ b/beginner_source/dcgan_faces_tutorial.py @@ -514,7 +514,7 @@ def forward(self, input): # practices shown in `ganhacks `__. # Namely, we will “construct different mini-batches for real and fake” # images, and also adjust G’s objective function to maximize -# :math:`logD(G(z))`. Training is split up into two main parts. Part 1 +# :math:`log(D(G(z)))`. Training is split up into two main parts. Part 1 # updates the Discriminator and Part 2 updates the Generator. # # **Part 1 - Train the Discriminator**