From f2e156319842c5ffffd56090720ac561f4071a69 Mon Sep 17 00:00:00 2001 From: s434695 Date: Mon, 24 May 2021 00:09:51 +0200 Subject: [PATCH] fix --- predict434788.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/predict434788.py b/predict434788.py index ff4b225..7bbc8ae 100644 --- a/predict434788.py +++ b/predict434788.py @@ -2,6 +2,6 @@ import mlflow import pandas as pd model = mlflow.keras.load_model("my_model") -data = pd.read_json('my_model/input_example.json', orient='split') +data = pd.read_json('my_model/input_example.json', orient='index') -print(model.predict(data)) \ No newline at end of file +print(model.predict(data))