We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent effbcf5 commit 3708a18Copy full SHA for 3708a18
beginner_source/dcgan_faces_tutorial.py
@@ -71,7 +71,7 @@
71
# :math:`D` and :math:`G` play a minimax game in which :math:`D` tries to
72
# maximize the probability it correctly classifies reals and fakes
73
# (:math:`logD(x)`), and :math:`G` tries to minimize the probability that
74
-# :math:`D` will predict its outputs are fake (:math:`log(1-D(G(x)))`).
+# :math:`D` will predict its outputs are fake (:math:`log(1-D(G(z)))`).
75
# From the paper, the GAN loss function is
76
#
77
# .. math:: \underset{G}{\text{min}} \underset{D}{\text{max}}V(D,G) = \mathbb{E}_{x\sim p_{data}(x)}\big[logD(x)\big] + \mathbb{E}_{z\sim p_{z}(z)}\big[log(1-D(G(z)))\big]
0 commit comments