本文簡要介紹python語言中 torch.tensordot
的用法。
用法:
torch.tensordot(a, b, dims=2, out=None)
返回 a 和 b 在多個維度上的收縮。
tensordot
實現廣義矩陣乘積。當使用非負整數參數
dims
= 調用,並且a
和b
的維數分別為 和 時,tensordot()
計算當使用列表形式的
dims
調用時,給定的維度將被收縮以代替a
的最後一個 和 的第一個 。這些維度中的大小必須匹配,但tensordot()
將處理廣播維度。例子:
>>> a = torch.arange(60.).reshape(3, 4, 5) >>> b = torch.arange(24.).reshape(4, 3, 2) >>> torch.tensordot(a, b, dims=([1, 0], [0, 1])) tensor([[4400., 4730.], [4532., 4874.], [4664., 5018.], [4796., 5162.], [4928., 5306.]]) >>> a = torch.randn(3, 4, 5, device='cuda') >>> b = torch.randn(4, 5, 6, device='cuda') >>> c = torch.tensordot(a, b, dims=2).cpu() tensor([[ 8.3504, -2.5436, 6.2922, 2.7556, -1.0732, 3.2741], [ 3.3161, 0.0704, 5.0187, -0.4079, -4.3126, 4.8744], [ 0.8223, 3.9445, 3.2168, -0.2400, 3.4117, 1.7780]]) >>> a = torch.randn(3, 5, 4, 6) >>> b = torch.randn(6, 4, 5, 3) >>> torch.tensordot(a, b, dims=([2, 1, 3], [1, 2, 0])) tensor([[ 7.7193, -2.4867, -10.3204], [ 1.5513, -14.4737, -6.5113], [ -0.2850, 4.2573, -3.5997]])
參數:
相關用法
- Python PyTorch tensorinv用法及代碼示例
- Python PyTorch tensor用法及代碼示例
- Python PyTorch tensorsolve用法及代碼示例
- Python PyTorch tensor_split用法及代碼示例
- Python PyTorch trunc用法及代碼示例
- Python PyTorch triu_indices用法及代碼示例
- Python PyTorch triangular_solve用法及代碼示例
- Python PyTorch to_map_style_dataset用法及代碼示例
- Python PyTorch trace_module用法及代碼示例
- Python PyTorch topk用法及代碼示例
- Python PyTorch tile用法及代碼示例
- Python PyTorch tanh用法及代碼示例
- Python PyTorch transpose用法及代碼示例
- Python PyTorch take_along_dim用法及代碼示例
- Python PyTorch t用法及代碼示例
- Python PyTorch take用法及代碼示例
- Python PyTorch trapezoid用法及代碼示例
- 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.tensordot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。