mirror of https://github.com/coqui-ai/TTS.git
fix(recipes): use multilingual phoneme cleaner in non-english recipes
This commit is contained in:
parent
e5c208d254
commit
a1495d4bc1
|
@ -30,7 +30,7 @@ config = AlignTTSConfig(
|
|||
run_eval=True,
|
||||
test_delay_epochs=-1,
|
||||
epochs=1000,
|
||||
text_cleaner="phoneme_cleaners",
|
||||
text_cleaner="multilingual_phoneme_cleaners",
|
||||
use_phonemes=False,
|
||||
phoneme_language="de",
|
||||
phoneme_cache_path=os.path.join(output_path, "phoneme_cache"),
|
||||
|
|
|
@ -40,7 +40,7 @@ config = GlowTTSConfig(
|
|||
run_eval=True,
|
||||
test_delay_epochs=-1,
|
||||
epochs=1000,
|
||||
text_cleaner="phoneme_cleaners",
|
||||
text_cleaner="multilingual_phoneme_cleaners",
|
||||
use_phonemes=True,
|
||||
phoneme_language="de",
|
||||
phoneme_cache_path=os.path.join(output_path, "phoneme_cache"),
|
||||
|
|
|
@ -45,7 +45,7 @@ config = SpeedySpeechConfig(
|
|||
test_delay_epochs=-1,
|
||||
epochs=1000,
|
||||
min_audio_len=11050, # need to up min_audio_len to avois speedy speech error
|
||||
text_cleaner="phoneme_cleaners",
|
||||
text_cleaner="multilingual_phoneme_cleaners",
|
||||
use_phonemes=True,
|
||||
phoneme_language="de",
|
||||
phoneme_cache_path=os.path.join(output_path, "phoneme_cache"),
|
||||
|
|
|
@ -49,7 +49,7 @@ config = Tacotron2Config( # This is the config that is saved for the future use
|
|||
gradual_training=[[0, 6, 64], [10000, 4, 32], [50000, 3, 32], [100000, 2, 32]],
|
||||
double_decoder_consistency=True,
|
||||
epochs=1000,
|
||||
text_cleaner="phoneme_cleaners",
|
||||
text_cleaner="multilingual_phoneme_cleaners",
|
||||
use_phonemes=True,
|
||||
phoneme_language="de",
|
||||
phoneme_cache_path=os.path.join(output_path, "phoneme_cache"),
|
||||
|
|
|
@ -40,7 +40,7 @@ config = VitsConfig(
|
|||
run_eval=True,
|
||||
test_delay_epochs=-1,
|
||||
epochs=1000,
|
||||
text_cleaner="phoneme_cleaners",
|
||||
text_cleaner="multilingual_phoneme_cleaners",
|
||||
use_phonemes=True,
|
||||
phoneme_language="de",
|
||||
phoneme_cache_path=os.path.join(output_path, "phoneme_cache"),
|
||||
|
|
Loading…
Reference in New Issue