Skip to content

Commit 2eae26e

Browse files
Merge pull request MichalDanielDobrzanski#32 from hamolicious/patch-1
Update network.py
2 parents ea229ac + 11cd4c1 commit 2eae26e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def SGD(self, training_data, epochs, mini_batch_size, eta,
7070
for mini_batch in mini_batches:
7171
self.update_mini_batch(mini_batch, eta)
7272
if test_data:
73-
print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test));
73+
print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test))
7474
else:
7575
print("Epoch {} complete".format(j))
7676

0 commit comments

Comments
 (0)