Update requirements.txt
Browse files- requirements.txt +39 -3
requirements.txt
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# === CORE DEPENDENCIES ===
|
| 2 |
+
gradio>=4.44.0
|
| 3 |
+
torch>=2.0.0
|
| 4 |
+
transformers>=4.47.0
|
| 5 |
+
numpy>=1.24.0
|
| 6 |
+
pandas>=2.0.0
|
| 7 |
+
|
| 8 |
+
# === ML & AI DEPENDENCIES ===
|
| 9 |
+
scikit-learn>=1.3.0
|
| 10 |
+
scipy>=1.11.0
|
| 11 |
+
sentence-transformers>=2.2.0
|
| 12 |
+
|
| 13 |
+
# === VISUALIZATION ===
|
| 14 |
+
plotly>=5.17.0
|
| 15 |
+
matplotlib>=3.7.0
|
| 16 |
+
seaborn>=0.12.0
|
| 17 |
+
|
| 18 |
+
# === NETWORK ANALYSIS ===
|
| 19 |
+
networkx>=3.1
|
| 20 |
+
|
| 21 |
+
# === NLP ===
|
| 22 |
+
textblob>=0.17.1
|
| 23 |
+
|
| 24 |
+
# === UTILITIES ===
|
| 25 |
+
requests>=2.31.0
|
| 26 |
+
python-dateutil>=2.8.0
|
| 27 |
+
|
| 28 |
+
# === ASYNC PROCESSING ===
|
| 29 |
+
asyncio
|
| 30 |
+
aiohttp
|
| 31 |
+
|
| 32 |
+
# === SAFE ALTERNATIVES (commented out problematic ones) ===
|
| 33 |
+
# spacy>=3.6.0 # Can cause timeout issues
|
| 34 |
+
# librosa>=0.10.0 # Heavy dependency
|
| 35 |
+
# opencv-python>=4.8.0 # Can cause build issues
|
| 36 |
+
# Pillow>=10.0.0 # Usually included by default
|
| 37 |
+
|
| 38 |
+
# === PERFORMANCE ===
|
| 39 |
+
psutil
|