singhn9 commited on
Commit
c036d1d
·
verified ·
1 Parent(s): 3b96fb1

Update requirements.txt

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