本文主要是介绍【Pytorch】tensor 转置 t(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
tensor的t()属性实现转置
>>> import torch
>>> x = torch.Tensor([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
>>> x1 2 3 4 56 7 8 9 10
[torch.FloatTensor of size 2x5]
>>> x.t()1 62 73 84 95 10
[torch.FloatTensor of size 5x2]
这篇关于【Pytorch】tensor 转置 t()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!