From a85763c7cc9fb0243312cc49a3b2ccf05025856f Mon Sep 17 00:00:00 2001 From: Dominik Strzako Date: Sun, 23 May 2021 22:03:25 +0200 Subject: [PATCH] hotfix --- Zadanie_09_MLflow_Predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zadanie_09_MLflow_Predict.py b/Zadanie_09_MLflow_Predict.py index 4aad0d5..6268c39 100644 --- a/Zadanie_09_MLflow_Predict.py +++ b/Zadanie_09_MLflow_Predict.py @@ -2,6 +2,6 @@ import mlflow import pandas as pd model = mlflow.keras.load_model("movies_on_streaming_platforms_model") -data = pd.read_json('movies_on_streaming_platforms_model\input_example.json', orient='index') +data = pd.read_json('movies_on_streaming_platforms_model/input_example.json', orient='index') print(data) print(model.predict(data)) \ No newline at end of file