From d2957497d7cb894ed10103c1b5d5d94879828034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Wa=C5=82=C4=99sa?= Date: Sun, 15 May 2022 22:27:34 +0200 Subject: [PATCH] Zaktualizuj 'ml_pytorch_mlflow.py' --- ml_pytorch_mlflow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ml_pytorch_mlflow.py b/ml_pytorch_mlflow.py index 8234979..013387d 100644 --- a/ml_pytorch_mlflow.py +++ b/ml_pytorch_mlflow.py @@ -135,6 +135,7 @@ def my_main(epochs): input_, target = val_ds[i] expected.append(float(target)) predicted.append(float(prediction(input_, model))) + input_ = pd.array(input_) inputs.append(input_.numpy()) inputs = pd.DataFrame(inputs)