我用下面的行创建了一个随机函数
x = torch.randn(4, 3)
并使用了此处所示的转置功能
torch.transpose(x, 0, 1)
我得到了下面的错误行。谁可以提供解决方案
IndexError Traceback (most recent call last)
<ipython-input-19-28494ba2cedc> in <module>()
----> 1 torch.transpose(x, 0, 3)
IndexError: Dimension out of range (expected to be in range of [-2, 1], but got 3)