From 6f47a1390cf01d9461893730415eda7c76152664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Wa=C5=82=C4=99sa?= Date: Sun, 15 May 2022 22:22:05 +0200 Subject: [PATCH] Zaktualizuj 'ml_pytorch_mlflow.py' --- ml_pytorch_mlflow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ml_pytorch_mlflow.py b/ml_pytorch_mlflow.py index 55d3400..6685285 100644 --- a/ml_pytorch_mlflow.py +++ b/ml_pytorch_mlflow.py @@ -135,8 +135,9 @@ def my_main(epochs): input_, target = val_ds[i] expected.append(float(target)) predicted.append(float(prediction(input_, model))) - input_ = pd.DataFrame(input_) inputs.append(input_) + + inputs = pd.DataFrame(inputs) MSE = mean_squared_error(expected, predicted) MAE = mean_absolute_error(expected, predicted)