fix o/p shape
This commit is contained in:
parent
15c1d1ad94
commit
40e8722014
|
|
@ -325,6 +325,6 @@ class DCCRN(Model):
|
|||
imag = imag * mask_imag
|
||||
|
||||
spec = torch.cat([real, imag], 1)
|
||||
wav = self.istft(spec).squeeze(1)
|
||||
wav = self.istft(spec)
|
||||
wav = wav.clamp_(-1, 1)
|
||||
return wav
|
||||
|
|
|
|||
Loading…
Reference in New Issue