Relative path test

This commit is contained in:
MatOgr 2022-05-15 12:47:30 +02:00
parent 2cb192827f
commit e13a78580e

View File

@ -4,7 +4,7 @@ import json
model = mlflow.pyfunc.load_model(
'/mlruns/13/da5c6167bb45403fa35569849a1fbc13/artifacts/model')
with open('/mlruns/13/da5c6167bb45403fa35569849a1fbc13/artifacts/model/input_example.json') as f:
'../mlruns/13/da5c6167bb45403fa35569849a1fbc13/artifacts/model')
with open('../mlruns/13/da5c6167bb45403fa35569849a1fbc13/artifacts/model/input_example.json') as f:
data = np.array([json.load(f)['inputs'][0]], dtype=np.float32)
print(f"Predicted values: {model.predict(data.reshape(-1, 2))}")