We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62bd555 + fb8de6a commit b7c88b5Copy full SHA for b7c88b5
lenet5/lenet5.py
@@ -36,4 +36,8 @@ def forward(self, x):
36
out = self.convnet(x)
37
out = out.view(x.size(0), -1)
38
out = self.fc(out)
39
- return out
+<<<<<<< HEAD
40
+ return out
41
+=======
42
43
+>>>>>>> fb8de6a3d021d0f15290d23e9c70cc89f5564c4b
lenet5/main.py
@@ -98,4 +98,8 @@
98
print('Test Accuracy of the model on the 10000 test images: {} %'.format(100 * correct / total))
99
100
# Save the model checkpoint
101
-torch.save(model.state_dict(), 'model.ckpt')
102
+torch.save(model.state_dict(), 'model.ckpt')
103
104
105
0 commit comments