use one testing sentence in tts tests

pull/506/head
Eren Gölge 2021-06-06 13:41:45 +02:00
parent 419735f440
commit 82582993cc
5 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,9 @@ config = AlignTTSConfig(
epochs=1,
print_step=1,
print_eval=True,
test_sentences=[
"Be a voice, not an echo.",
],
)
config.audio.do_trim_silence = True
config.audio.trim_db = 60

View File

@ -24,6 +24,9 @@ config = GlowTTSConfig(
epochs=1,
print_step=1,
print_eval=True,
test_sentences=[
"Be a voice, not an echo.",
],
)
config.audio.do_trim_silence = True
config.audio.trim_db = 60

View File

@ -23,6 +23,9 @@ config = SpeedySpeechConfig(
epochs=1,
print_step=1,
print_eval=True,
test_sentences=[
"Be a voice, not an echo.",
],
)
config.audio.do_trim_silence = True
config.audio.trim_db = 60

View File

@ -23,6 +23,9 @@ config = Tacotron2Config(
test_delay_epochs=-1,
epochs=1,
print_step=1,
test_sentences=[
"Be a voice, not an echo.",
],
print_eval=True,
max_decoder_steps=50,
)

View File

@ -22,6 +22,9 @@ config = TacotronConfig(
test_delay_epochs=-1,
epochs=1,
print_step=1,
test_sentences=[
"Be a voice, not an echo.",
],
print_eval=True,
r=5,
max_decoder_steps=50,