I have 5 tensors of shape torch.Size([7, 20, 180])
I want to interleave them, one after the other along dim=1. So that my final shape will be torch.Size([7, 100, 180]).
Basically, I want the first element from the first tensor, then the first element from the second tensor, and so on.