Update docs

This commit is contained in:
Eren Gölge 2022-03-18 17:31:31 +01:00
parent 3e13ca7e53
commit 486a4795fe
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
If you like to run a multi-gpu training using DDP back-end, If you like to run a multi-gpu training using DDP back-end,
```bash ```bash
$ CUDA_VISIBLE_DEVICES="0, 1, 2" python TTS/bin/distribute.py --script <path_to_your_script>/train_glowtts.py $ CUDA_VISIBLE_DEVICES="0, 1, 2" python -m trainer.distribute --script <path_to_your_script>/train_glowtts.py
``` ```
The example above runs a multi-gpu training using GPUs `0, 1, 2`. The example above runs a multi-gpu training using GPUs `0, 1, 2`.

View File

@ -56,7 +56,7 @@ A breakdown of a simple script that trains a GlowTTS model on the LJspeech datas
- Run multi-gpu training. - Run multi-gpu training.
```bash ```bash
CUDA_VISIBLE_DEVICES=0,1,2 python TTS/bin/distribute.py --script train.py CUDA_VISIBLE_DEVICES=0,1,2 python -m trainer.distribute --script train.py
``` ```
### CLI Way ### CLI Way