From 6bceb78141698a2926f02c804f0013e67d966b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Wa=C5=82=C4=99sa?= Date: Sun, 15 May 2022 15:09:20 +0200 Subject: [PATCH] Zaktualizuj 'ml_pytorch_mlflow.py' --- ml_pytorch_mlflow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml_pytorch_mlflow.py b/ml_pytorch_mlflow.py index 1985c29..ddc3801 100644 --- a/ml_pytorch_mlflow.py +++ b/ml_pytorch_mlflow.py @@ -147,8 +147,8 @@ def my_main(epochs): input_, target = val_ds[i] file.write(str(predict_single(input_, target, model))) - val_ds = val_ds.unsqueeze(0) - input_example = val_ds[0] + val_ds_x = val_ds.unsqueeze(0) + input_example = val_ds_x[0] # input_example = input_example.unsqueeze(0) signature = mlflow.models.signature.infer_signature(input_example, model(input_example)) tracking_url_type_store = urlparse(mlflow.get_tracking_uri()).scheme