Update requirements.txt
Browse files- requirements.txt +10 -1
requirements.txt
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
|
|
| 1 |
streamlit==1.29.0
|
| 2 |
pandas==2.2.1
|
| 3 |
numpy==1.26.4
|
| 4 |
scikit-learn==1.3.2
|
| 5 |
joblib==1.3.2
|
|
|
|
|
|
|
| 6 |
plotly==5.19.0
|
| 7 |
altair==5.2.0
|
|
|
|
|
|
|
| 8 |
scipy==1.12.0
|
| 9 |
-
|
|
|
|
| 10 |
shap==0.45.0
|
| 11 |
lime==0.2.0.1
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
streamlit==1.29.0
|
| 3 |
pandas==2.2.1
|
| 4 |
numpy==1.26.4
|
| 5 |
scikit-learn==1.3.2
|
| 6 |
joblib==1.3.2
|
| 7 |
+
|
| 8 |
+
# Visualizations
|
| 9 |
plotly==5.19.0
|
| 10 |
altair==5.2.0
|
| 11 |
+
|
| 12 |
+
# Calibration and preprocessing
|
| 13 |
scipy==1.12.0
|
| 14 |
+
|
| 15 |
+
# Interpretability tools
|
| 16 |
shap==0.45.0
|
| 17 |
lime==0.2.0.1
|
| 18 |
+
|
| 19 |
+
# Imbalanced data handling
|
| 20 |
+
imbalanced-learn==0.11.0
|