mirror of https://github.com/coqui-ai/TTS.git
use one testing sentence in tts tests
parent
419735f440
commit
82582993cc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
)
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue