hi, it is obsession me that the l_Qs[i].transpose(1,2)
when i test this method, i found that this method does not work
import torch
from torch.autograd import Variable
import numpy as np
q=np.random.rand(1,6,300)
q=Variable(torch.from_numpy(q).float())
print(q.size())
q.transpose(1,2)
print(q.size())
torch.Size([1, 6, 300])
torch.Size([1, 6, 300])
hi, it is obsession me that the l_Qs[i].transpose(1,2)
when i test this method, i found that this method does not work