Skip to content

Commit 2ae0c0f

Browse files
committedNov 8, 2017
fix typo
1 parent 9318a69 commit 2ae0c0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tutorial-contents/401_CNN.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self):
6262
nn.ReLU(), # activation
6363
nn.MaxPool2d(kernel_size=2), # choose max value in 2x2 area, output shape (16, 14, 14)
6464
)
65-
self.conv2 = nn.Sequential( # input shape (1, 28, 28)
65+
self.conv2 = nn.Sequential( # input shape (1, 14, 14)
6666
nn.Conv2d(16, 32, 5, 1, 2), # output shape (32, 14, 14)
6767
nn.ReLU(), # activation
6868
nn.MaxPool2d(2), # output shape (32, 7, 7)

0 commit comments

Comments
 (0)
Please sign in to comment.