mirror of https://github.com/coqui-ai/TTS.git
Update docs
This commit is contained in:
parent
3e13ca7e53
commit
486a4795fe
|
@ -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`.
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue