Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +15 -6
requirements.txt
CHANGED
@@ -1,11 +1,20 @@
|
|
1 |
-
|
2 |
-
|
|
|
3 |
numpy==1.23.5
|
4 |
-
|
|
|
|
|
5 |
spacy==3.5.2
|
6 |
pydub==0.25.1
|
7 |
psutil==5.9.8
|
8 |
-
|
9 |
-
|
10 |
-
huggingface_hub>=0.14.1,<1.0.0
|
11 |
transformers==4.30.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ββ Core CPU wheels ββββββββββββββββββββββββββββββββββββββββββββββββ
|
2 |
+
torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
3 |
+
torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
4 |
numpy==1.23.5
|
5 |
+
|
6 |
+
# ββ Music generation stack βββββββββββββββββββββββββββββββββββββββββ
|
7 |
+
audiocraft==0.0.2 # requires spacy 3.5.2
|
8 |
spacy==3.5.2
|
9 |
pydub==0.25.1
|
10 |
psutil==5.9.8
|
11 |
+
|
12 |
+
# ββ Transformers (pre-4.31 avoids torch>=2.3 call) ββββββββββββββββ
|
|
|
13 |
transformers==4.30.2
|
14 |
+
|
15 |
+
# ββ Web UI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
16 |
+
gradio==3.50.2
|
17 |
+
typer==0.7.0 # satisfies spaCy 3.5.2 + Gradio 3.x
|
18 |
+
|
19 |
+
# ββ Hugging Face Hub ββββββββββββββββββββββββββββββββββββββββββββββ
|
20 |
+
huggingface_hub>=0.28.1,<1.0.0
|