Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +13 -7
requirements.txt
CHANGED
@@ -1,11 +1,17 @@
|
|
1 |
-
#
|
2 |
-
torch==2.1.2
|
3 |
-
torchaudio==2.1.2
|
4 |
-
|
5 |
|
6 |
-
#
|
|
|
7 |
pydub==0.25.1
|
8 |
psutil==5.9.8
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
10 |
huggingface_hub==0.23.0
|
11 |
-
|
|
|
1 |
+
# CPU wheels (Zero-GPU compatible) -----------------------------------
|
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 # pulls spaCy 3.5.x
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
10 |
+
|
11 |
+
# Web interface ------------------------------------------------------
|
12 |
+
gradio==3.50.2 # uses typer <0.8
|
13 |
+
typer==0.7.0 # satisfies gradio + spaCy
|
14 |
+
|
15 |
+
# Misc ---------------------------------------------------------------
|
16 |
huggingface_hub==0.23.0
|
17 |
+
spacy==3.5.2 # fixed upper bound on typer (<0.8)
|