From fc437c936b8bcad24a28376b4d7ff225c0760ee3 Mon Sep 17 00:00:00 2001 From: KeshSam <78550290+KeshSam@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:03:27 +0000 Subject: [PATCH] corrected a typo --- labml_nn/gan/dcgan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labml_nn/gan/dcgan.py b/labml_nn/gan/dcgan.py index 92ac65e7..2ca55d02 100644 --- a/labml_nn/gan/dcgan.py +++ b/labml_nn/gan/dcgan.py @@ -42,7 +42,7 @@ class Generator(Module): nn.ConvTranspose2d(1024, 512, 3, 2, 0, bias=False), nn.BatchNorm2d(512), nn.ReLU(True), - # This give $14 \times 14$ + # This gives $14 \times 14$ nn.ConvTranspose2d(512, 256, 4, 2, 1, bias=False), nn.BatchNorm2d(256), nn.ReLU(True),