fix(recipes): use multilingual phoneme cleaner in non-english recipes

This commit is contained in:
Enno Hermann 2024-06-14 15:09:01 +02:00
parent e5c208d254
commit a1495d4bc1
5 changed files with 5 additions and 5 deletions

View File

@ -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"),

View File

@ -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"),

View File

@ -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"),

View File

@ -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"),

View File

@ -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"),