rachman commited on
Commit
debec81
·
verified ·
1 Parent(s): 6ad8188

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -8
requirements.txt CHANGED
@@ -1,8 +1,19 @@
1
- scikit-learn==1.3.2
2
- numpy<2
3
- pandas
4
- yfinance
5
- streamlit
6
- tensorflow
7
- seaborn
8
- matplotlib
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core numeric
2
+ numpy>=1.26,<3
3
+ pandas>=2.2
4
+
5
+ # Visualization
6
+ matplotlib
7
+ seaborn
8
+
9
+ # ML / DL
10
+ tensorflow>=2.15
11
+
12
+ # Data source
13
+ yfinance
14
+
15
+ # Web app
16
+ streamlit
17
+
18
+ # Utilities
19
+ requests