howlbz commited on
Commit
12594da
·
1 Parent(s): b0c7e9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ fs = project.get_feature_store()
12
  mr = project.get_model_registry()
13
  model = mr.get_model("xgboost_model", version=1)
14
  model_dir = model.download()
15
- # model = joblib.load(model_dir + "/model.pkl")
16
 
17
 
18
  def forecast():
 
12
  mr = project.get_model_registry()
13
  model = mr.get_model("xgboost_model", version=1)
14
  model_dir = model.download()
15
+ model = joblib.load(model_dir + "/model.pkl")
16
 
17
 
18
  def forecast():