ghostai1 commited on
Commit
0ca92bf
·
verified ·
1 Parent(s): b898424

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +17 -12
requirements.txt CHANGED
@@ -1,20 +1,25 @@
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
 
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