howlbz commited on
Commit
7e1b1b1
·
1 Parent(s): fcad9bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ fs = project.get_feature_store()
11
 
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+ "/weather_model.pkl")
16
 
17
 
 
11
 
12
  mr = project.get_model_registry()
13
  model = mr.get_model("xgboost_model", version=1)
14
+ model_dir="weather_model"
15
  model = joblib.load(model_dir+ "/weather_model.pkl")
16
 
17