From 059dfea5d7e4ef22163a21ff1702dc830598084e Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Mon, 11 Jun 2018 16:46:03 +0200 Subject: [PATCH] Machine Teachers hate him for this SIMPLE Trick! --- pywatts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywatts/main.py b/pywatts/main.py index dba921f..04815ed 100644 --- a/pywatts/main.py +++ b/pywatts/main.py @@ -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