vihu21 commited on
Commit
46a132c
·
verified ·
1 Parent(s): ddbd3c8

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -6,12 +6,12 @@ from huggingface_hub import hf_hub_download
6
  # ----------------------------
7
  # Load model from Hugging Face
8
  # ----------------------------
9
- HF_MODEL_REPO = "vihu21/adaboost-predictive-maintenance"
10
- MODEL_FILE = "adaboost_pm.joblib"
11
 
12
  model_path = hf_hub_download(
13
- repo_id="vihu21/adaboost-predictive-maintenance",
14
- filename="adaboost_pm.joblib",
15
  repo_type="model"
16
  )
17
 
 
6
  # ----------------------------
7
  # Load model from Hugging Face
8
  # ----------------------------
9
+ HF_MODEL_REPO = "vihu21/predictive_maintenance"
10
+ MODEL_FILE = "best_ada_model.joblib"
11
 
12
  model_path = hf_hub_download(
13
+ repo_id="vihu21/predictive_maintenance",
14
+ filename="best_ada_model.joblib",
15
  repo_type="model"
16
  )
17