Skip to content

Commit 90044e0

Browse files
committed
update
1 parent 647760f commit 90044e0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

04-Convolutional Neural Network/convolution_network.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ def __init__(self, in_dim, n_class):
3939
nn.ReLU(True),
4040
nn.MaxPool2d(2, 2),
4141
nn.Conv2d(6, 16, 5, stride=1, padding=0),
42-
nn.ReLU(True),
43-
nn.MaxPool2d(2, 2), )
42+
nn.ReLU(True), nn.MaxPool2d(2, 2))
4443

4544
self.fc = nn.Sequential(
4645
nn.Linear(400, 120), nn.Linear(120, 84), nn.Linear(84, n_class))
-1.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)