Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +7 -6
requirements.txt
CHANGED
@@ -1,19 +1,20 @@
|
|
1 |
numpy==1.23.5
|
2 |
|
3 |
-
# Torch stack
|
4 |
torch==2.1.0
|
5 |
-
torchaudio==2.1.0
|
6 |
|
7 |
-
# runtime
|
8 |
-
soundfile==0.12.1
|
|
|
9 |
|
10 |
-
#
|
11 |
pydub==0.25.1
|
12 |
psutil==5.9.8
|
13 |
|
14 |
# Web UI / ZeroGPU
|
15 |
gradio==4.44.1
|
16 |
|
17 |
-
# Transformers +
|
18 |
transformers==4.38.2
|
19 |
huggingface_hub>=0.19,<1.0
|
|
|
1 |
numpy==1.23.5
|
2 |
|
3 |
+
# Torch stack that Audiocraft 1.3.0 was compiled against
|
4 |
torch==2.1.0
|
5 |
+
torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cpu
|
6 |
|
7 |
+
# Audiocraft runtime helpers (light wheels, no spaCy)
|
8 |
+
soundfile==0.12.1 # PySoundFile (libsndfile already in base image)
|
9 |
+
av==10.0.0 # PyAV (works with FFmpeg pre-installed in HF image)
|
10 |
|
11 |
+
# Utilities
|
12 |
pydub==0.25.1
|
13 |
psutil==5.9.8
|
14 |
|
15 |
# Web UI / ZeroGPU
|
16 |
gradio==4.44.1
|
17 |
|
18 |
+
# Transformers + HF tooling (no conflicting Hub pins)
|
19 |
transformers==4.38.2
|
20 |
huggingface_hub>=0.19,<1.0
|