stop tracking train.csv
This commit is contained in:
parent
aeb428fbbd
commit
d18407ebb8
@ -1,21 +0,0 @@
|
||||
import json
|
||||
import mlflow
|
||||
import pandas as pd
|
||||
|
||||
import mlflow.pyfunc
|
||||
|
||||
model_name = "country_vaccination"
|
||||
stage = '1'
|
||||
|
||||
model = mlflow.pyfunc.load_model(
|
||||
model_uri=f"models:/{model_name}/{stage}"
|
||||
)
|
||||
|
||||
|
||||
with open('country_vaccination/input_example.json', 'r') as datafile:
|
||||
data = json.load(datafile)
|
||||
example_input = data["inputs"]
|
||||
|
||||
input_dictionary = {i : x for i, x in enumerate(example_input) }
|
||||
input_ex = pd.DataFrame(input_dictionary, index=[0])
|
||||
print(model.predict(input_ex))
|
0
lab_10_prepare.py
Normal file
0
lab_10_prepare.py
Normal file
0
lab_10_train.py
Normal file
0
lab_10_train.py
Normal file
Loading…
Reference in New Issue
Block a user