From 98e05cf2ccf8608b32af5ae37a76e2e39c372756 Mon Sep 17 00:00:00 2001 From: Saar Tochner Date: Mon, 1 May 2023 00:15:53 +0300 Subject: [PATCH] Fix typo in DCGAN Tutorial --- beginner_source/dcgan_faces_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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**