Zaktualizuj 'lab_09_predict_coop.py'
All checks were successful
s430705-evaluation/pipeline/head This commit looks good
s430705-training/pipeline/head This commit looks good

This commit is contained in:
Michał Zaręba 2021-05-27 14:27:16 +02:00
parent 75d2fb441c
commit 9bf6005939

View File

@ -12,10 +12,10 @@ model = mlflow.pyfunc.load_model(
model_uri=f"models:/{model_name}/{model_version}" model_uri=f"models:/{model_name}/{model_version}"
) )
with open('artifacts/model/input_example.json', 'r') as datafile: # with open('artifacts/model/input_example.json', 'r') as datafile:
data = json.load(datafile) # data = json.load(datafile)
example_input = data["inputs"] # example_input = data["inputs"]
input_dictionary = {i: x for i, x in enumerate(example_input)} # input_dictionary = {i: x for i, x in enumerate(example_input)}
input_ex = pd.DataFrame(input_dictionary, index=[0]) # input_ex = pd.DataFrame(input_dictionary, index=[0])
print(model.predict(input_ex)) print(model.predict(input_example))