Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +6 -6
requirements.txt
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
numpy==1.23.5
|
2 |
|
3 |
-
#
|
4 |
-
|
5 |
-
|
6 |
-
# MusicGen
|
7 |
-
audiocraft==1.3.0 # runtime-installed with --no-deps in app.py
|
8 |
|
9 |
# Utilities
|
10 |
pydub==0.25.1
|
11 |
psutil==5.9.8
|
12 |
|
13 |
-
# UI
|
14 |
gradio==4.44.1
|
|
|
|
|
15 |
transformers==4.38.2
|
16 |
huggingface_hub>=0.19,<1.0
|
|
|
1 |
numpy==1.23.5
|
2 |
|
3 |
+
# Torch stack (CPU wheels; OK in ZeroGPU)
|
4 |
+
torch==2.1.0
|
5 |
+
torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cpu
|
|
|
|
|
6 |
|
7 |
# Utilities
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
10 |
|
11 |
+
# Web UI (ZeroGPU needs Gradio ≥4)
|
12 |
gradio==4.44.1
|
13 |
+
|
14 |
+
# Transformers / HF tooling
|
15 |
transformers==4.38.2
|
16 |
huggingface_hub>=0.19,<1.0
|