Update src/streamlit_app.py
Browse files- 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 / '
|
| 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 |
|