Skip to content

Commit e391214

Browse files
committed
update requirements for V2 model
1 parent 0a9137e commit e391214

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ python app_vc_v2.py --cfm-checkpoint-path <path-to-cfm-checkpoint> --ar-checkpoi
112112
```
113113
- `cfm-checkpoint-path` is the path to the checkpoint of the CFM model, leave to blank to auto-download default model from huggingface
114114
- `ar-checkpoint-path` is the path to the checkpoint of the AR model, leave to blank to auto-download default model from huggingface
115+
- you may consider adding `--compile` to gain ~x6 speed-up on AR model inference
116+
-
115117
Integrated Web UI:
116118
```bash
117119
python app.py --enable-v1 --enable-v2

requirements-mac.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
torch --pre --extra-index-url https://download.pytorch.org/whl/nightly/cpu
33
torchvision --pre --extra-index-url https://download.pytorch.org/whl/nightly/cpu
44
torchaudio --pre --extra-index-url https://download.pytorch.org/whl/nightly/cpu
5+
accelerate
56
scipy==1.13.1
67
librosa==0.10.2
78
huggingface-hub==0.23.4
89
munch==4.0.0
910
einops==0.8.0
1011
descript-audio-codec==1.0.0
11-
gradio==4.44.0
12+
gradio==5.23.0
1213
pydub==0.25.1
1314
resemblyzer
1415
jiwer==3.0.3
@@ -21,3 +22,4 @@ funasr==1.1.5
2122
numpy==1.26.4
2223
pyyaml
2324
python-dotenv
25+
hydra-core==1.3.2

requirements.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
--extra-index-url https://download.pytorch.org/whl/cu121
1+
torch --pre --index-url https://download.pytorch.org/whl/nightly/cu126
2+
torchvision --pre --index-url https://download.pytorch.org/whl/nightly/cu126
3+
torchaudio --pre --index-url https://download.pytorch.org/whl/nightly/cu126
4+
accelerate
25
torch==2.4.0
36
torchvision==0.19.0
47
torchaudio==2.4.0
@@ -21,4 +24,4 @@ funasr==1.1.5
2124
numpy==1.26.4
2225
hydra-core==1.3.2
2326
pyyaml
24-
python-dotenv
27+
python-dotenv

0 commit comments

Comments
 (0)