ghostai1 commited on
Commit
3cb6a0d
·
verified ·
1 Parent(s): 779076d

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +13 -7
requirements.txt CHANGED
@@ -1,11 +1,17 @@
1
- # core
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
- audiocraft==0.0.2
5
 
6
- # helpers
 
7
  pydub==0.25.1
8
  psutil==5.9.8
9
- numpy==1.23.5
 
 
 
 
 
10
  huggingface_hub==0.23.0
11
- gradio==4.28.0
 
1
+ # CPU wheels (Zero-GPU compatible) -----------------------------------
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 # pulls spaCy 3.5.x
8
  pydub==0.25.1
9
  psutil==5.9.8
10
+
11
+ # Web interface ------------------------------------------------------
12
+ gradio==3.50.2 # uses typer <0.8
13
+ typer==0.7.0 # satisfies gradio + spaCy
14
+
15
+ # Misc ---------------------------------------------------------------
16
  huggingface_hub==0.23.0
17
+ spacy==3.5.2 # fixed upper bound on typer (<0.8)