There was an error while loading. Please reload this page.
1 parent e2f885d commit f931931Copy full SHA for f931931
mnist/main.py
@@ -64,7 +64,7 @@ def forward(self, x):
64
x = x.view(-1, 320)
65
x = F.relu(self.fc1(x))
66
x = F.dropout(x, training=self.training)
67
- x = F.relu(self.fc2(x))
+ x = self.fc2(x)
68
return F.log_softmax(x)
69
70
model = Net()
mnist_hogwild/main.py
@@ -41,7 +41,7 @@ def forward(self, x):
41
42
43
44
45
46
47
if __name__ == '__main__':
0 commit comments