We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conv1 kernel size in the code is 3x3,but feature map size after conv1 is 28x28 in the above image,it should be 30x30,or change the kernel size to 5x5.
The text was updated successfully, but these errors were encountered:
I also find self.conv1 = nn.Conv2d(1, 6, 3) should self.conv1 = nn.Conv2d(1, 6, 5) and self.conv2 has the same problem.
self.conv1 = nn.Conv2d(1, 6, 3)
self.conv1 = nn.Conv2d(1, 6, 5)
Sorry, something went wrong.
Official has fix this problem:
x = F.max_pool2d(F.relu(self.conv1(x)), (2, 2))
Kernel size is 5x5. This was fixed in the tutorial in #1257.
No branches or pull requests
conv1 kernel size in the code is 3x3,but feature map size after conv1 is 28x28 in the above image,it should be 30x30,or change the kernel size to 5x5.
The text was updated successfully, but these errors were encountered: