當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch t用法及代碼示例


本文簡要介紹python語言中 torch.t 的用法。

用法:

torch.t(input) → Tensor

參數

input(Tensor) -輸入張量。

期望 input 為 <= 2-D 張量並轉置維度 0 和 1。

0-D 和 1-D 張量按原樣返回。當輸入是二維張量時,這相當於 transpose(input, 0, 1)

例子:

>>> x = torch.randn(())
>>> x
tensor(0.1995)
>>> torch.t(x)
tensor(0.1995)
>>> x = torch.randn(3)
>>> x
tensor([ 2.4320, -0.4608,  0.7702])
>>> torch.t(x)
tensor([ 2.4320, -0.4608,  0.7702])
>>> x = torch.randn(2, 3)
>>> x
tensor([[ 0.4875,  0.9158, -0.5872],
        [ 0.3938, -0.6929,  0.6932]])
>>> torch.t(x)
tensor([[ 0.4875,  0.3938],
        [ 0.9158, -0.6929],
        [-0.5872,  0.6932]])

另見 torch.transpose()

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.t。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。