Upload requirements.txt
Browse files- requirements.txt +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Libraries
|
| 2 |
+
numpy>=1.20.0
|
| 3 |
+
pandas>=1.2.0
|
| 4 |
+
scikit-learn>=0.24.0
|
| 5 |
+
scipy>=1.6.0
|
| 6 |
+
matplotlib>=3.3.0
|
| 7 |
+
joblib>=1.0.0
|
| 8 |
+
|
| 9 |
+
# PyTorch and Deep Learning
|
| 10 |
+
torch>=1.10.0
|
| 11 |
+
tqdm>=4.60.0
|
| 12 |
+
torchvision # Often required if using generic PyTorch utilities
|
| 13 |
+
|
| 14 |
+
# Reinforcement Learning (Based on Gym/MARL Framework)
|
| 15 |
+
gym>=0.21.0
|
| 16 |
+
dtaidistance>=2.3.0 # Used for DTW in the original evaluation script
|
| 17 |
+
statsmodels>=0.13.0 # Used for ACF in evaluation
|
| 18 |
+
|
| 19 |
+
# Time/Utility
|
| 20 |
+
python-dateutil>=2.8.1
|