Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
mnielsen committed Jun 23, 2014
1 parent b99eb34 commit 60d3f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def SGD(self, training_data, epochs, mini_batch_size, eta,
print "Epoch {0}: {1} / {2}".format(
j, self.evaluate(test_data), n_test)
else:
print "Epoch %s complete" % j
print "Epoch {0} complete".format(j)

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

0 comments on commit 60d3f5a

Please sign in to comment.