Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +8 -8
requirements.txt
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
#
|
2 |
-
numpy
|
3 |
|
4 |
-
#
|
5 |
-
audiocraft==1.
|
6 |
|
7 |
-
#
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
10 |
|
11 |
-
#
|
12 |
gradio==4.44.1
|
13 |
|
14 |
-
#
|
15 |
-
transformers==4.35.0
|
16 |
huggingface_hub>=0.28.1,<1.0.0
|
|
|
1 |
+
# core (torch 2.5.1 & torchaudio 2.5.1 already in the HF base image)
|
2 |
+
numpy==1.23.5 # safe with torch 2.5 wheels
|
3 |
|
4 |
+
# MusicGen stack
|
5 |
+
audiocraft==1.3.0 # no spaCy dependency
|
6 |
|
7 |
+
# utilities
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
10 |
|
11 |
+
# web UI (ZeroGPU requires Gradio 4+)
|
12 |
gradio==4.44.1
|
13 |
|
14 |
+
# model download / HF tooling
|
15 |
+
transformers==4.35.0 # avoids torch>=2.6-only helpers
|
16 |
huggingface_hub>=0.28.1,<1.0.0
|