From 9390886373768561033d39e28435981431f2813e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Wa=C5=82=C4=99sa?= Date: Sun, 15 May 2022 22:39:58 +0200 Subject: [PATCH] Zaktualizuj 'ml_pytorch_mlflow.py' --- ml_pytorch_mlflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml_pytorch_mlflow.py b/ml_pytorch_mlflow.py index ca70e78..63aa352 100644 --- a/ml_pytorch_mlflow.py +++ b/ml_pytorch_mlflow.py @@ -137,7 +137,7 @@ def my_main(epochs): predicted.append(float(prediction(input_, model))) inputs.append(input_.numpy()) - inputs = inputs.array() + inputs = inputs.to_array() MSE = mean_squared_error(expected, predicted) MAE = mean_absolute_error(expected, predicted)