Skip to content

Commit

Permalink
Update modelsyt_tutorial.py (#1796)
Browse files Browse the repository at this point in the history
Fixes #1771.
  • Loading branch information
holly1238 authored Jan 15, 2022
1 parent 86abcf4 commit 6fa035e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beginner_source/introyt/modelsyt_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class LeNet(torch.nn.Module):

def __init__(self):
super(LeNet, self).__init__()
# 1 input image channel (black & white), 6 output channels, 3x3 square convolution
# 1 input image channel (black & white), 6 output channels, 5x5 square convolution
# kernel
self.conv1 = torch.nn.Conv2d(1, 6, 5)
self.conv2 = torch.nn.Conv2d(6, 16, 3)
Expand Down

0 comments on commit 6fa035e

Please sign in to comment.