Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def load_model():
|
|
13 |
"""
|
14 |
try:
|
15 |
# Load the pre-trained model from a pickle file
|
16 |
-
model = joblib.load('
|
17 |
return model
|
18 |
except FileNotFoundError:
|
19 |
st.error("The model file 'voting_classifier_model.pkl' was not found.")
|
|
|
13 |
"""
|
14 |
try:
|
15 |
# Load the pre-trained model from a pickle file
|
16 |
+
model = joblib.load('rf_classifier_model.pkl')
|
17 |
return model
|
18 |
except FileNotFoundError:
|
19 |
st.error("The model file 'voting_classifier_model.pkl' was not found.")
|