... skipping last row # transpose x = torch.rand(2,3) print(x.t()) # size 3x2 # concatenation and stacking x = torch.rand(2,3) concat = torch.cat((x,x)) ...
確定! 回上一頁