mlflow attempt task 2 prediction registry

This commit is contained in:
Kamila 2022-05-15 13:36:03 +02:00
parent ce8188b06b
commit db194a6d58

View File

@ -5,15 +5,8 @@ import sys
PATH = "/mlruns/14/80fe21a0804844088147d15a3cebb3e5/artifacts/lego-model"
model_version = 14
model_name = "s449288"
model = mlflow.pyfunc.load_model(PATH)
model = mlflow.pyfunc.load_model(
model_uri=f"models:/{model_name}/{model_version}"
)
with open(f'{PATH}/{(sys.argv[1:])[0]}', 'r') as file:
with open(f'{model}/{(sys.argv[1:])[0]}', 'r') as file:
json_data = json.load(file)
print(f"Prediction: {model.predict(np.array([500]))}")
print(f"Prediction: {model.predict(np.array([json_data['inputs']]))}")