Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +28 -18
requirements.txt
CHANGED
|
@@ -1,18 +1,28 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|