fixed eval bug

test
Michael Nguyen 2018-09-05 12:39:48 -05:00
parent 1f97b955f3
commit dfb2695394
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def run_eval(args):
print('Synthesizing and plotting: %s' % wav_path)
wav, alignment = synth.synthesize(text)
with open(wav_path, 'wb') as f:
f.write(wav)
f.write(wav.getvalue())
plot.plot_alignment(
alignment, align_path,
info='%s' % (text)