ghostai1 commited on
Commit
1279448
Β·
verified Β·
1 Parent(s): e4df913

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -6
requirements.txt CHANGED
@@ -1,11 +1,20 @@
1
- torch==2.1.2
2
- torchaudio==2.1.2
 
3
  numpy==1.23.5
4
- audiocraft==0.0.2
 
 
5
  spacy==3.5.2
6
  pydub==0.25.1
7
  psutil==5.9.8
8
- gradio==3.50.2
9
- typer==0.7.0
10
- huggingface_hub>=0.14.1,<1.0.0
11
  transformers==4.30.2
 
 
 
 
 
 
 
 
1
+ # ── Core CPU wheels ────────────────────────────────────────────────
2
+ torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
3
+ torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
4
  numpy==1.23.5
5
+
6
+ # ── Music generation stack ─────────────────────────────────────────
7
+ audiocraft==0.0.2 # requires spacy 3.5.2
8
  spacy==3.5.2
9
  pydub==0.25.1
10
  psutil==5.9.8
11
+
12
+ # ── Transformers (pre-4.31 avoids torch>=2.3 call) ────────────────
 
13
  transformers==4.30.2
14
+
15
+ # ── Web UI ─────────────────────────────────────────────────────────
16
+ gradio==3.50.2
17
+ typer==0.7.0 # satisfies spaCy 3.5.2 + Gradio 3.x
18
+
19
+ # ── Hugging Face Hub ──────────────────────────────────────────────
20
+ huggingface_hub>=0.28.1,<1.0.0