Skip to content

Commit

Permalink
Merge pull request MichalDanielDobrzanski#32 from hamolicious/patch-1
Browse files Browse the repository at this point in the history
Update network.py
  • Loading branch information
MichalDanielDobrzanski authored Feb 24, 2021
2 parents ea229ac + 11cd4c1 commit 2eae26e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def SGD(self, training_data, epochs, mini_batch_size, eta,
for mini_batch in mini_batches:
self.update_mini_batch(mini_batch, eta)
if test_data:
print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test));
print("Epoch {} : {} / {}".format(j,self.evaluate(test_data),n_test))
else:
print("Epoch {} complete".format(j))

Expand Down

0 comments on commit 2eae26e

Please sign in to comment.