tacotron stft - loosen bounds restrictions and clip

This commit is contained in:
James Betker 2022-03-15 10:31:26 -06:00
parent f8631ad4f7
commit 9767260c6c

View File

@ -70,8 +70,9 @@ class TacotronSTFT(torch.nn.Module):
------- -------
mel_output: torch.FloatTensor of shape (B, n_mel_channels, T) mel_output: torch.FloatTensor of shape (B, n_mel_channels, T)
""" """
assert(torch.min(y.data) >= -1) assert(torch.min(y.data) >= -10)
assert(torch.max(y.data) <= 1) assert(torch.max(y.data) <= 10)
y = torch.clip(y, min=-1, max=1)
magnitudes, phases = self.stft_fn.transform(y) magnitudes, phases = self.stft_fn.transform(y)
magnitudes = magnitudes.data magnitudes = magnitudes.data