Skip to content

Commit

Permalink
added pre-trained model
Browse files Browse the repository at this point in the history
  • Loading branch information
JinZr committed Oct 30, 2024
1 parent fe1498a commit 9f79e21
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions egs/libritts/TTS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ For more information, refer to the paper "LibriTTS: A Corpus Derived from LibriS

This recipe provides a VITS model trained on the LibriTTS dataset.

Pretrained model can be found [here](https://huggingface.co/zrjin/icefall-tts-libritts-vits-2024-10-30).

The training command is given below:
```
export CUDA_VISIBLE_DEVICES=0,1,2,3
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
./vits/train.py \
--world-size 4 \
--num-epochs 1000 \
--num-epochs 400 \
--start-epoch 1 \
--use-fp16 1 \
--exp-dir vits/exp \
Expand All @@ -44,6 +46,6 @@ To inference, use:
```
./vits/infer.py \
--exp-dir vits/exp \
--epoch 1000 \
--epoch 400 \
--tokens data/tokens.txt
```

0 comments on commit 9f79e21

Please sign in to comment.