caslabs commited on
Commit
92936d9
·
verified ·
1 Parent(s): 4ecec61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import xgboost as xgb
4
  from huggingface_hub import hf_hub_download
5
 
6
  # Load the model from the Hugging Face Hub
7
- model_path = hf_hub_download(repo_id="caslabs/home-price-predictor-mockup", filename="xgboost_model.json")
8
  model = xgb.XGBRegressor()
9
  model.load_model(model_path)
10
 
 
4
  from huggingface_hub import hf_hub_download
5
 
6
  # Load the model from the Hugging Face Hub
7
+ model_path = hf_hub_download(repo_id="caslabs/home-price-predictor", filename="xgboost_model.json")
8
  model = xgb.XGBRegressor()
9
  model.load_model(model_path)
10