Lukeetah commited on
Commit
813edd3
·
verified ·
1 Parent(s): 0dadaf3

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -25
requirements.txt CHANGED
@@ -1,42 +1,33 @@
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
40
-
41
- # === DIMENSIONALITY REDUCTION ===
42
- umap-learn>=0.5.3
 
1
+ # === CORE DEPENDENCIES ULTRA ===
2
+ gradio>=5.0.0
 
 
3
  numpy>=1.24.0
4
  pandas>=2.0.0
5
+ matplotlib>=3.7.0
6
 
7
+ # === MACHINE LEARNING (OPTIONAL) ===
8
+ torch>=2.0.0
9
+ transformers>=4.40.0
10
  scikit-learn>=1.3.0
11
  scipy>=1.11.0
 
12
 
13
+ # === DIMENSIONALITY REDUCTION (FIXED) ===
14
+ umap-learn>=0.5.3
15
+
16
+ # === VISUALIZATION (OPTIONAL) ===
17
  plotly>=5.17.0
 
18
  seaborn>=0.12.0
19
 
20
+ # === NETWORK ANALYSIS (OPTIONAL) ===
21
  networkx>=3.1
22
 
23
+ # === NLP (OPTIONAL) ===
24
  textblob>=0.17.1
25
 
26
  # === UTILITIES ===
27
  requests>=2.31.0
28
  python-dateutil>=2.8.0
29
+ psutil>=5.9.0
30
 
31
+ # === PERFORMANCE & COMPATIBILITY ===
32
+ setuptools>=65.0.0
33
+ wheel>=0.37.0