bug fixes and fixing unit tests

This commit is contained in:
erogol
2020-03-10 11:06:25 +01:00
parent a2e900ef3b
commit e97bb45aba
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ def inv_spectrogram(postnet_output, ap, CONFIG):
if CONFIG.model in ["Tacotron", "TacotronGST"]:
wav = ap.inv_spectrogram(postnet_output.T)
else:
wav = ap.inv_mel_spectrogram(postnet_output.T)
wav = ap.inv_melspectrogram(postnet_output.T)
return wav