Documentation corrections for finetuning and data preparation (#931)

* arctic recipe added

* config correction

* arctic config update

* directory name fix

* ugly prints added

* config and data corrections

* training instructions added

* documentation updates for finetuning and data prep

Revert "arctic recipe added"

This reverts commit 77b4df1f43a00af642f43655abf817e0551d0147.

doc updates for finetuning and data prep
This commit is contained in:
Baybars Külebi
2021-11-15 18:14:55 +01:00
committed by GitHub
parent 2ed9e3c241
commit 9a145c9b88
2 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -93,13 +93,13 @@ them and fine-tune it for your own dataset. This will help you in two main ways:
```bash
CUDA_VISIBLE_DEVICES="0" python recipes/ljspeech/glow_tts/train_glowtts.py \
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts/model_file.pth.tar
```
```bash
CUDA_VISIBLE_DEVICES="0" python TTS/bin/train_tts.py \
--config_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts/config.json \
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts/model_file.pth.tar
```
As stated above, you can also use command-line arguments to change the model configuration.
@@ -107,7 +107,7 @@ them and fine-tune it for your own dataset. This will help you in two main ways:
```bash
CUDA_VISIBLE_DEVICES="0" python recipes/ljspeech/glow_tts/train_glowtts.py \
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts
--restore_path /home/ubuntu/.local/share/tts/tts_models--en--ljspeech--glow-tts/model_file.pth.tar
--coqpit.run_name "glow-tts-finetune" \
--coqpit.lr 0.00001
```