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 a0f40b6 commit 515c64eCopy full SHA for 515c64e
beginner_source/blitz/neural_networks_tutorial.py
@@ -58,7 +58,7 @@ def __init__(self):
58
def forward(self, x):
59
# Max pooling over a (2, 2) window
60
x = F.max_pool2d(F.relu(self.conv1(x)), (2, 2))
61
- # If the size is a square you can only specify a single number
+ # If the size is a square, you can specify with a single number
62
x = F.max_pool2d(F.relu(self.conv2(x)), 2)
63
x = x.view(-1, self.num_flat_features(x))
64
x = F.relu(self.fc1(x))
0 commit comments