Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ fs = project.get_feature_store()
|
|
13 |
mr = project.get_model_registry()
|
14 |
model = mr.get_model("titanic_modal", version=1)
|
15 |
model_dir = model.download()
|
16 |
-
model = joblib.load(model_dir + "/
|
17 |
|
18 |
|
19 |
def titanic(pclass, sex, age, sibs, par_ch, fare):
|
|
|
13 |
mr = project.get_model_registry()
|
14 |
model = mr.get_model("titanic_modal", version=1)
|
15 |
model_dir = model.download()
|
16 |
+
model = joblib.load(model_dir + "/titanic_modal.pkl")
|
17 |
|
18 |
|
19 |
def titanic(pclass, sex, age, sibs, par_ch, fare):
|