singhn9 commited on
Commit
aab8ff7
·
verified ·
1 Parent(s): b056229

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +28 -2
requirements.txt CHANGED
@@ -1,9 +1,35 @@
 
1
  streamlit
2
  pandas
3
  numpy
4
  matplotlib
5
  seaborn
6
- scikit-learn
7
  joblib
 
 
8
  shap
9
- fpdf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # --- Core Streamlit & Python essentials ---
2
  streamlit
3
  pandas
4
  numpy
5
  matplotlib
6
  seaborn
 
7
  joblib
8
+ scikit-learn
9
+ optuna
10
  shap
11
+
12
+ # --- Gradient-Boosted Tree Libraries ---
13
+ xgboost
14
+ lightgbm
15
+ catboost
16
+
17
+ # --- Deep & Hybrid Tabular Models (optional but recommended) ---
18
+ torch
19
+ pytorch-tabular
20
+ tabpfn
21
+
22
+ # --- Model stacking & utilities ---
23
+ scipy
24
+ tqdm
25
+ plotly
26
+
27
+ # --- PDF and report generation ---
28
+ fpdf
29
+
30
+ # --- Optional for advanced visualization ---
31
+ altair
32
+ plotnine
33
+
34
+ # --- Safety / compatibility ---
35
+ typing-extensions