mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-11-01 12:01:45 +08:00
corrected a typo
This commit is contained in:
@ -42,7 +42,7 @@ class Generator(Module):
|
|||||||
nn.ConvTranspose2d(1024, 512, 3, 2, 0, bias=False),
|
nn.ConvTranspose2d(1024, 512, 3, 2, 0, bias=False),
|
||||||
nn.BatchNorm2d(512),
|
nn.BatchNorm2d(512),
|
||||||
nn.ReLU(True),
|
nn.ReLU(True),
|
||||||
# This give $14 \times 14$
|
# This gives $14 \times 14$
|
||||||
nn.ConvTranspose2d(512, 256, 4, 2, 1, bias=False),
|
nn.ConvTranspose2d(512, 256, 4, 2, 1, bias=False),
|
||||||
nn.BatchNorm2d(256),
|
nn.BatchNorm2d(256),
|
||||||
nn.ReLU(True),
|
nn.ReLU(True),
|
||||||
|
|||||||
Reference in New Issue
Block a user