update predict.py
This commit is contained in:
parent
5b506eed21
commit
acaf964f41
@ -17,11 +17,13 @@ import json
|
||||
import mlflow
|
||||
import numpy as np
|
||||
|
||||
input = sys.argv[1]
|
||||
|
||||
logged_model = 'mlruns/1/296d6f314bb2451885fb7ae58988301e/artifacts/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)
|
||||
input_example = np.array([data['inputs'][0]], dtype=np.float64).reshape(-1, 2)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user