ium_434788/Zadanie_09_MLflow_Predict_Registry.py

24 lines
614 B
Python
Raw Normal View History

2021-05-24 00:57:03 +02:00
from mlflow.tracking import MlflowClient
import mlflow
import pandas as pd
mlflow.set_tracking_uri("http://172.17.0.1:5000")
client = MlflowClient()
2021-05-27 12:44:59 +02:00
version = 3
2021-05-27 12:48:20 +02:00
model_name = "s434695"
2021-05-27 12:43:23 +02:00
#for mv in client.search_model_versions(f"name='{model_name}'"):
# if int(mv.version) > version:
# version = int(mv.version)
2021-05-24 00:57:03 +02:00
2021-05-27 12:48:20 +02:00
print(f"selected version {version}")
print(f"I will search for URI: models:/{model_name}/{version}")
2021-05-24 01:01:49 +02:00
model = mlflow.keras.load_model(
2021-05-24 00:57:03 +02:00
model_uri=f"models:/{model_name}/{version}"
)
data = pd.read_json('my_model/input_example.json', orient='split')
print(data)
print(model.predict(data))