You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In beginner_source/blitz/neural_networks_tutorial.py, the feature maps sizes of C1 in the mnist figure (/_static/img/mnist.png) is "28x28", shouldn't it be "30x30"? Similarly, I think the f. maps sizes of S2 should be "15x15", "13x13" for C3, and "6x6" for S4, which conform to the number in the code self.fc1 = nn.Linear(16 * 6 * 6, 120) # 6*6 from image dimension.