We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2ee587 + 219309a commit d5b5af1Copy full SHA for d5b5af1
chapter1/3_neural_networks_tutorial.ipynb
@@ -92,7 +92,7 @@
92
" x = F.max_pool2d(F.relu(self.conv1(x)), (2, 2))\n",
93
" # If the size is a square you can only specify a single number\n",
94
" x = F.max_pool2d(F.relu(self.conv2(x)), 2)\n",
95
- " x = x.view(-1, self.num_flot_features(x))\n",
+ " x = x.view(-1, self.num_flat_features(x))\n",
96
" x = F.relu(self.fc1(x))\n",
97
" x = F.relu(self.fc2(x))\n",
98
" x = self.fc3(x)\n",
0 commit comments