jzou19950715 commited on
Commit
2ef0503
·
verified ·
1 Parent(s): ded27a8

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +28 -18
requirements.txt CHANGED
@@ -1,18 +1,28 @@
1
- gradio
2
- pandas
3
- numpy
4
- matplotlib
5
- seaborn
6
- plotly
7
- altair
8
- bokeh
9
- pyecharts
10
- pygal
11
- dash
12
- vega_datasets
13
- statsmodels
14
- scipy
15
- scikit-learn
16
- openai
17
- requests
18
- huggingface_hub
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ gradio>=4.0.0
3
+ openai>=1.0.0
4
+ numpy>=1.24.0
5
+ pandas>=2.0.0
6
+
7
+ # Visualization
8
+ matplotlib>=3.7.0
9
+ seaborn>=0.12.0
10
+ plotly>=5.13.0
11
+
12
+ # Machine Learning & Stats
13
+ scikit-learn>=1.2.0
14
+ statsmodels>=0.14.0
15
+ scipy>=1.10.0
16
+
17
+ # Data Processing
18
+ python-dotenv>=1.0.0 # for environment variables
19
+ requests>=2.31.0
20
+
21
+ # ML Pipeline
22
+ imbalanced-learn>=0.11.0
23
+ category_encoders>=2.6.0
24
+
25
+ # Optional but recommended for enhanced functionality
26
+ jupyter>=1.0.0 # for development
27
+ ipython>=8.0.0 # for better REPL experience
28
+ tqdm>=4.65.0 # for progress bars