Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/vibevoice-asr.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ sudo docker run --privileged --net=host --ipc=host --ulimit memlock=-1:-1 --ulim
git clone https://github.com/microsoft/VibeVoice.git
cd VibeVoice

python -m pip install --upgrade pip setuptools
pip install -e .
```

Expand Down Expand Up @@ -131,4 +132,3 @@ LoRA (Low-Rank Adaptation) fine-tuning is supported. See [Finetuning](../finetun
This project is licensed under the [MIT License](../LICENSE).



3 changes: 2 additions & 1 deletion docs/vibevoice-realtime-0.5b.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ sudo docker run --privileged --net=host --ipc=host --ulimit memlock=-1:-1 --ulim
git clone https://github.com/microsoft/VibeVoice.git
cd VibeVoice/

pip install -e .[streamingtts]
python -m pip install --upgrade pip setuptools
pip install -e '.[streamingtts]'
```


Expand Down
1 change: 1 addition & 0 deletions finetuning-asr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This directory contains scripts for LoRA (Low-Rank Adaptation) fine-tuning of th

```bash
# Install vibevoice first
python -m pip install --upgrade pip setuptools
pip install -e .

pip install peft
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"

[project]
Expand Down