Zaktualizuj 'lab_09_predict_coop.py'

This commit is contained in:
Michał Zaręba 2021-05-27 14:53:03 +02:00
parent 6be2c8a3eb
commit 22b5bf858e

View File

@ -13,8 +13,8 @@ model = mlflow.pyfunc.load_model(
model_uri=f"models:/{model_name}/{model_version}"
)
client = MlflowClient()
for mv in client.search_model_versions("name='s430705'"):
pprint(dict(mv), indent=4)
models_version = client.search_model_versions("name='s430705'"):
print(type(models_version))
with open('/tmp/mlruns/0/6be4f90846214df8913a553bc53b1019/artifacts/movies_imdb2/input_example.json', 'r') as datafile:
data = json.load(datafile)