We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea229ac + 11cd4c1 commit 2eae26eCopy full SHA for 2eae26e
network.py
@@ -70,7 +70,7 @@ def SGD(self, training_data, epochs, mini_batch_size, eta,
70
for mini_batch in mini_batches:
71
self.update_mini_batch(mini_batch, eta)
72
if test_data:
73
- print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test));
+ print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test))
74
else:
75
print("Epoch {} complete".format(j))
76
0 commit comments