Skip to content

Commit 2a69078

Browse files
authored
주석 오류 수정
5x5 square convolution -> 3x3 square convolution
1 parent cbfe9a0 commit 2a69078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner_source/blitz/neural_networks_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Net(nn.Module):
4444

4545
def __init__(self):
4646
super(Net, self).__init__()
47-
# 1 input image channel, 6 output channels, 5x5 square convolution
47+
# 1 input image channel, 6 output channels, 3x3 square convolution
4848
# kernel
4949
self.conv1 = nn.Conv2d(1, 6, 3)
5050
self.conv2 = nn.Conv2d(6, 16, 3)

0 commit comments

Comments
 (0)