coqui-tts/recipes
Enno Hermann 993da778b4 chore: use original instead of scarf urls
These allowed Coqui to get download stats, which we don't need anymore
2024-11-10 22:19:25 +01:00
..
bel-alex73 fix: update repository links, package names, metadata 2024-04-03 12:02:44 +02:00
blizzard2013 style: run pre-commit 2024-05-08 12:17:47 +02:00
kokoro/tacotron2-DDC style: run pre-commit 2024-05-08 12:17:47 +02:00
ljspeech chore: use original instead of scarf urls 2024-11-10 22:19:25 +01:00
multilingual Ruff autofix unused imports and import order 2023-12-13 14:56:41 +02:00
thorsten_DE fix(recipes): use multilingual phoneme cleaner in non-english recipes 2024-06-14 15:09:01 +02:00
vctk Fix DelightfulTTS (#2823) 2023-07-31 13:52:45 +02:00
README.md style: run pre-commit 2024-05-08 12:17:47 +02:00

README.md

🐸💬 TTS Training Recipes

TTS recipes intended to host scripts running all the necessary steps to train a TTS model on a particular dataset.

For each dataset, you need to download the dataset once. Then you run the training for the model you want.

Run each script from the root TTS folder as follows.

$ sh ./recipes/<dataset>/download_<dataset>.sh
$ python recipes/<dataset>/<model_name>/train.py

For some datasets you might need to resample the audio files. For example, VCTK dataset can be resampled to 22050Hz as follows.

python TTS/bin/resample.py --input_dir recipes/vctk/VCTK/wav48_silence_trimmed --output_sr 22050 --output_dir recipes/vctk/VCTK/wav48_silence_trimmed --n_jobs 8 --file_ext flac

If you train a new model using TTS, feel free to share your training to expand the list of recipes.

You can also open a new discussion and share your progress with the 🐸 community.