Machine Teachers hate him for this SIMPLE Trick!

This commit is contained in:
Paul Schaub 2018-06-11 16:46:03 +02:00
parent e86ba8ee3d
commit 059dfea5d7
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ def train(steps=100):
for i in range(steps):
n.train(X_train, y_train, steps=400)
evaluation.append(n.evaluate(X_val, y_val))
print("Training %s of %s" % (i, steps))
print("Training %s of %s" % ((i+1), steps))
return evaluation