本文簡要介紹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()
。
參數:
相關用法
- Python PyTorch trunc用法及代碼示例
- Python PyTorch tensorinv用法及代碼示例
- Python PyTorch triu_indices用法及代碼示例
- Python PyTorch tensor用法及代碼示例
- Python PyTorch triangular_solve用法及代碼示例
- Python PyTorch to_map_style_dataset用法及代碼示例
- Python PyTorch trace_module用法及代碼示例
- Python PyTorch topk用法及代碼示例
- Python PyTorch tensorsolve用法及代碼示例
- Python PyTorch tile用法及代碼示例
- Python PyTorch tanh用法及代碼示例
- Python PyTorch transpose用法及代碼示例
- Python PyTorch take_along_dim用法及代碼示例
- Python PyTorch tensor_split用法及代碼示例
- Python PyTorch take用法及代碼示例
- Python PyTorch trapezoid用法及代碼示例
- Python PyTorch tensordot用法及代碼示例
- Python PyTorch tan用法及代碼示例
- Python PyTorch tril_indices用法及代碼示例
- Python PyTorch trace用法及代碼示例
- Python PyTorch tril用法及代碼示例
- Python PyTorch triu用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.t。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。