rmv inplace operation

This commit is contained in:
shahules786 2022-10-11 15:11:50 +05:30
parent c996798dd3
commit fdce8bb601
1 changed files with 3 additions and 2 deletions

View File

@ -226,7 +226,7 @@ class Demucs(Model):
x = x.permute(0, 2, 1)
for decoder in self.decoder:
skip_connection = encoder_outputs.pop(-1)
x += skip_connection[..., : x.shape[-1]]
x = x + skip_connection[..., : x.shape[-1]]
x = decoder(x)
if self.hparams.resample > 1:
@ -236,7 +236,8 @@ class Demucs(Model):
self.hparams.sampling_rate,
)
return x[..., :length]
out = x[..., :length]
return out
def get_padding_length(self, input_length):