You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the issue, that's very informative !
Did you search in PyTorch's changelog if they note this change, or not ? Do you think it's intended behavior, or a bug. Has it been fixed in the new versions ?
So, right now there are two simple ways of unfolding a tensor.
The nn.Unfold (and its functional wrapper) will always do the behaviour above on the latest versions (since v0.4.1)
And the builtin torch.tensor.unfold, which always unfolds a specified dimension and outputs size(..., nWindows, winSize).
This seems to be the better solution to avoid the reshape: unfolded = frame.unfold(-1, stride, window_size)
asteroid/asteroid/dsp/overlap_add.py
Line 92 in c72227e
/We can see how torch 1.10.2 does concatenates the windows of all channels after unfold./
The expected behavior, in the code, would be to handle
$\rightarrow$
(batch, chans, win_size)
per chunk(batch, chans, win_size, n_chunks)
.Thus it has to be reshaped before handling to the NN, from my perspective.
unfolded = unfolded.reshape(batch, channels, self.window_size, -1)
The text was updated successfully, but these errors were encountered: