ium_434804/pred_from_mlflow_model.py

18 lines
587 B
Python
Raw Normal View History

2021-05-23 18:50:55 +02:00
import json
import mlflow as mlf
import pandas as pd
2021-05-23 18:58:52 +02:00
model_name = "s430705"
2021-05-23 19:48:38 +02:00
model_version = 8
2021-05-23 19:07:22 +02:00
mlf.set_tracking_uri("http://172.17.0.1:5000")
2021-05-23 19:48:38 +02:00
mlf.keras.log_model("runs:/dd2657243e2c4176a2ec2e3340c3ff13/run-relative/path/to/model", registered_model_name="s430705")
model = mlf.keras.load_model(
2021-05-23 18:50:55 +02:00
model_uri=f"models:/{model_name}/{model_version}"
)
2021-05-23 19:48:38 +02:00
with open('movies_imdb2/input_example.json', 'r') as datafile:
2021-05-23 18:50:55 +02:00
data = json.load(datafile)['inputs']
input_dictionary = {idx:x for idx, x in enumerate(data)}
input_ex = pd.DataFrame([input_dictionary])
print(model.predict(input_ex))