mset commited on
Commit
fab7caf
·
verified ·
1 Parent(s): 8ca9434

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +47 -4
requirements.txt CHANGED
@@ -1,4 +1,47 @@
1
- streamlit==1.28.0
2
- yfinance==0.2.18
3
- pandas==1.5.3
4
- numpy==1.24.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML/AI frameworks
2
+ torch>=2.0.0
3
+ transformers>=4.30.0
4
+ numpy>=1.21.0
5
+ pandas>=1.3.0
6
+
7
+ # Financial data
8
+ yfinance>=0.2.0
9
+
10
+ # Additional utilities
11
+ requests>=2.25.0
12
+ urllib3>=1.26.0
13
+ scipy>=1.7.0
14
+ scikit-learn>=1.0.0
15
+
16
+ # Optional: for enhanced performance
17
+ accelerate>=0.20.0
18
+ tokenizers>=0.13.0
19
+
20
+ # Development and logging
21
+ tqdm>=4.62.0
22
+ python-dateutil>=2.8.0
23
+
24
+ # Optional: for Jupyter notebooks
25
+ jupyter>=1.0.0
26
+ matplotlib>=3.5.0
27
+ seaborn>=0.11.0
28
+ plotly>=5.0.0
29
+
30
+ # Optional: for advanced financial analysis
31
+ ta-lib>=0.4.0
32
+ mplfinance>=0.12.0
33
+ quantlib>=1.26.0
34
+
35
+ # Optional: for database storage
36
+ sqlalchemy>=1.4.0
37
+ sqlite3
38
+
39
+ # Optional: for web interface
40
+ flask>=2.0.0
41
+ fastapi>=0.70.0
42
+ uvicorn>=0.15.0
43
+
44
+ # Optional: for production deployment
45
+ gunicorn>=20.1.0
46
+ redis>=4.0.0
47
+ celery>=5.2.0