EnYa32 commited on
Commit
6fd38f2
·
verified ·
1 Parent(s): 0bf28e6

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -17,7 +17,7 @@ st.title('🌧️ Rainfall Probability Predictor')
17
  st.write('Predicts the probability of rainfall (0–1) using a Logistic Regression model trained on weather features.')
18
 
19
  BASE_DIR = Path(__file__).resolve().parent
20
- MODEL_PATH = BASE_DIR / 'logistic_regression_model.pkl'
21
  FEATURE_NAMES_PATH = BASE_DIR / 'feature_names.pkl'
22
 
23
 
 
17
  st.write('Predicts the probability of rainfall (0–1) using a Logistic Regression model trained on weather features.')
18
 
19
  BASE_DIR = Path(__file__).resolve().parent
20
+ MODEL_PATH = BASE_DIR / 'lr_final_model.pkl'
21
  FEATURE_NAMES_PATH = BASE_DIR / 'feature_names.pkl'
22
 
23