update predict.py
Some checks reported errors
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Maciej Czajka 2022-05-11 20:03:13 +02:00
parent 5b506eed21
commit acaf964f41

View File

@ -17,11 +17,13 @@ import json
import mlflow import mlflow
import numpy as np import numpy as np
input = sys.argv[1]
logged_model = 'mlruns/1/296d6f314bb2451885fb7ae58988301e/artifacts/model' logged_model = 'mlruns/1/296d6f314bb2451885fb7ae58988301e/artifacts/model'
loaded_model = mlflow.pyfunc.load_model(logged_model) loaded_model = mlflow.pyfunc.load_model(logged_model)
with open(f'{logged_model}/'+input) as f: with open(f'{logged_model}/'+str(input)) as f:
data = json.load(f) data = json.load(f)
input_example = np.array([data['inputs'][0]], dtype=np.float64).reshape(-1, 2) input_example = np.array([data['inputs'][0]], dtype=np.float64).reshape(-1, 2)