Update requirements.txt
Browse files- requirements.txt +14 -6
requirements.txt
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
gradio>=4.0
|
| 2 |
yfinance>=0.2.40
|
| 3 |
-
pandas>=2.
|
| 4 |
-
numpy>=1.24
|
| 5 |
matplotlib>=3.8
|
| 6 |
-
gluonts>=0.15.1
|
| 7 |
-
# 👇 get the latest Uni2TS (needed for Moirai 2.0)
|
| 8 |
-
git+https://github.com/SalesforceAIResearch/uni2ts.git
|
| 9 |
-
torch>=2.2
|
| 10 |
huggingface_hub>=0.23
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Core pins required by Uni2TS 2.0.0 (see repo pyproject.toml) ---
|
| 2 |
+
numpy==1.26.4
|
| 3 |
+
scipy==1.11.3
|
| 4 |
+
torch>=2.1,<2.5
|
| 5 |
+
gluonts~=0.14.3
|
| 6 |
+
einops==0.7.*
|
| 7 |
+
lightning>=2.0
|
| 8 |
+
|
| 9 |
+
# --- App deps ---
|
| 10 |
gradio>=4.0
|
| 11 |
yfinance>=0.2.40
|
| 12 |
+
pandas>=2.0
|
|
|
|
| 13 |
matplotlib>=3.8
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
huggingface_hub>=0.23
|
| 15 |
|
| 16 |
+
# --- Uni2TS (has the moirai2 module/classes you need) ---
|
| 17 |
+
git+https://github.com/SalesforceAIResearch/uni2ts.git
|
| 18 |
+
|
| 19 |
+
|