Update 'predict_registry.py'
This commit is contained in:
parent
1d74959d77
commit
343f6a0576
@ -2,13 +2,13 @@ import mlflow
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
import json
|
import json
|
||||||
|
|
||||||
regsistry_path = '/mlruns/17/ /artifacts/model' #
|
registry_path = '/mlruns/17/4a8894c60fe34adcb79108c66d7330fc/artifacts/linear-model' #
|
||||||
model = mlflow.pyfunc.load_model(registry_path) #
|
model = mlflow.pyfunc.load_model(registry_path) #
|
||||||
|
|
||||||
with open(f'{model}/input_example.json') as f:
|
with open(f'{registry_path}/input_example.json') as f:
|
||||||
input_example_data = json.load(f)
|
input_example_data = json.load(f)
|
||||||
|
|
||||||
input_example = np.array() #
|
input_example = np.array(input_example_data['inputs']) #
|
||||||
|
|
||||||
print(f'Input example: {input_example}')
|
print(f'Input example: {input_example}')
|
||||||
print(f'Model prediction: {model.predict(input_example)}')
|
print(f'Model prediction: {model.predict(input_example)}')
|
||||||
|
Loading…
Reference in New Issue
Block a user