Skip to content

Commit 60d3f5a

Browse files
committed
...
1 parent b99eb34 commit 60d3f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def SGD(self, training_data, epochs, mini_batch_size, eta,
6464
print "Epoch {0}: {1} / {2}".format(
6565
j, self.evaluate(test_data), n_test)
6666
else:
67-
print "Epoch %s complete" % j
67+
print "Epoch {0} complete".format(j)
6868

6969
def update_mini_batch(self, mini_batch, eta):
7070
"""Update the network's weights and biases by applying

0 commit comments

Comments
 (0)