GoshawkVortexAI commited on
Commit
e2ff89e
·
verified ·
1 Parent(s): e973ba4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -6
requirements.txt CHANGED
@@ -1,7 +1,27 @@
 
1
  gradio==4.44.0
2
- huggingface-hub==0.24.7
3
- numpy==1.26.4
4
- pandas==2.1.4
5
- scikit-learn==1.3.2
6
- plotly==5.18.0
7
- requests==2.31.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core UI / deployment
2
  gradio==4.44.0
3
+ uvicorn>=0.14.0
4
+ websockets>=10.4
5
+ spaces
6
+ fastapi<0.113.0
7
+
8
+ # Data + HTTP
9
+ pandas>=1.5
10
+ numpy>=1.24
11
+ requests>=2.28
12
+
13
+ # Visualization
14
+ matplotlib>=3.5
15
+ Pillow>=9.0
16
+
17
+ # Features / indicators
18
+ ta>=0.11
19
+
20
+ # ML libraries (optional — büyük paketler, Spaces ortamında isteğe bağlı)
21
+ scikit-learn>=1.1
22
+ joblib>=1.2
23
+
24
+ # Optional model libs — yüklemezseniz app fallback demo modeller kullanır
25
+ lightgbm>=3.3; extra == "lgb"
26
+ xgboost>=1.7; extra == "xgb"
27
+ torch>=2.0; extra == "torch"