From bc53e2e618d9e99ced19841835282874de510150 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sat, 25 Nov 2017 00:06:39 +0100 Subject: [PATCH] import numpy as np Lines like 19, 20, 29, 30, etc. use np but it is never defined. --- machine_learning/scoring_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine_learning/scoring_functions.py b/machine_learning/scoring_functions.py index 4204716cd..64806a096 100644 --- a/machine_learning/scoring_functions.py +++ b/machine_learning/scoring_functions.py @@ -1,4 +1,4 @@ -import numpy +import numpy as np """ Here I implemented the scoring functions. MAE, MSE, RMSE, RMSLE are included.