From 90d7c3202db8350f07081b372851f18c552c1ed1 Mon Sep 17 00:00:00 2001 From: Eric Zelikman Date: Thu, 14 Jan 2021 19:46:43 -0500 Subject: [PATCH] added note about WGAN --- C1W2_Video_Generation_(Optional).ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C1W2_Video_Generation_(Optional).ipynb b/C1W2_Video_Generation_(Optional).ipynb index 3c469e2..aa3639a 100644 --- a/C1W2_Video_Generation_(Optional).ipynb +++ b/C1W2_Video_Generation_(Optional).ipynb @@ -360,7 +360,7 @@ " h = self.conv2d(h)\r\n", " return h\r\n", "```\r\n", - "Once our discriminator performs inference on some samples the generated integers are then used in the WGAN formulation:\r\n", + "Once our discriminator performs inference on some samples the generated integers are then used in the WGAN formulation (you'll learn more about this next week!):\r\n", "\r\n", "$$\\operatorname*{argmax}_D \\operatorname*{argmin}_G\\mathbb{E}_{x\\sim \\mathbb{P}_r}[D(x)]-\\mathbb{E}_{z\\sim p(z)}[D(G(z))]$$\r\n", "\r\n",