mirror of https://github.com/coqui-ai/TTS.git
bug fix for plotting
This commit is contained in:
parent
3b2654203d
commit
b65f5bd1d0
|
@ -15,7 +15,7 @@
|
||||||
"text_cleaner": "english_cleaners",
|
"text_cleaner": "english_cleaners",
|
||||||
|
|
||||||
"epochs": 1000,
|
"epochs": 1000,
|
||||||
"lr": 0.002,
|
"lr": 0.001,
|
||||||
"lr_decay": 0.5,
|
"lr_decay": 0.5,
|
||||||
"decay_step": 100000,
|
"decay_step": 100000,
|
||||||
"warmup_steps": 4000,
|
"warmup_steps": 4000,
|
||||||
|
|
4
train.py
4
train.py
|
@ -312,9 +312,9 @@ def evaluate(model, criterion, criterion_st, data_loader, ap, current_step):
|
||||||
# test sentences
|
# test sentences
|
||||||
ap.griffin_lim_iters = 60
|
ap.griffin_lim_iters = 60
|
||||||
for idx, test_sentence in enumerate(test_sentences):
|
for idx, test_sentence in enumerate(test_sentences):
|
||||||
try:
|
wav, linear_spec, alignments = synthesis(model, ap, test_sentence,
|
||||||
wav, linear_spec, alignments = synthesis(model, ap, test_sentence,
|
|
||||||
use_cuda, c.text_cleaner)
|
use_cuda, c.text_cleaner)
|
||||||
|
try:
|
||||||
wav_name = 'TestSentences/{}'.format(idx)
|
wav_name = 'TestSentences/{}'.format(idx)
|
||||||
tb.add_audio(
|
tb.add_audio(
|
||||||
wav_name, wav, current_step, sample_rate=c.sample_rate)
|
wav_name, wav, current_step, sample_rate=c.sample_rate)
|
||||||
|
|
Loading…
Reference in New Issue