Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +17 -12
requirements.txt
CHANGED
@@ -1,20 +1,25 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
torch==2.1.0
|
5 |
-
torchaudio==2.1.0
|
|
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
|
11 |
-
|
|
|
|
|
12 |
pydub==0.25.1
|
13 |
psutil==5.9.8
|
|
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
# Transformers + HF tooling (no conflicting Hub pins)
|
19 |
transformers==4.38.2
|
20 |
huggingface_hub>=0.19,<1.0
|
|
|
1 |
+
#######################
|
2 |
+
# Core Torch stack #
|
3 |
+
#######################
|
4 |
torch==2.1.0
|
5 |
+
torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cpu
|
6 |
+
numpy==1.23.5
|
7 |
|
8 |
+
#######################
|
9 |
+
# Audiocraft helpers #
|
10 |
+
#######################
|
11 |
+
soundfile==0.12.1 # PySoundFile (libsndfile is in HF base image)
|
12 |
+
av==10.0.0 # PyAV (FFmpeg is in HF base image)
|
13 |
|
14 |
+
#######################
|
15 |
+
# Utilities & UI #
|
16 |
+
#######################
|
17 |
pydub==0.25.1
|
18 |
psutil==5.9.8
|
19 |
+
gradio==4.44.1 # ZeroGPU requires Gradio ≥4
|
20 |
|
21 |
+
#######################
|
22 |
+
# HF / Transformers #
|
23 |
+
#######################
|
|
|
24 |
transformers==4.38.2
|
25 |
huggingface_hub>=0.19,<1.0
|