本文簡要介紹python語言中 torch.take_along_dim
的用法。
用法:
torch.take_along_dim(input, indices, dim, *, out=None) → Tensor
out(Tensor,可選的) -輸出張量。
沿著給定的
dim
在indices
的一維索引處從input
中選擇值。沿維度返回索引的函數,如
torch.argmax()
和torch.argsort()
,旨在與此函數一起使用。請參閱下麵的示例。注意
這個函數類似於 NumPy 的
take_along_axis
。另見torch.gather()
。例子:
>>> t = torch.tensor([[10, 30, 20], [60, 40, 50]]) >>> max_idx = torch.argmax(t) >>> torch.take_along_dim(t, max_idx) tensor([60]) >>> sorted_idx = torch.argsort(t, dim=1) >>> torch.take_along_dim(t, sorted_idx, dim=1) tensor([[10, 20, 30], [40, 50, 60]])
參數:
關鍵字參數:
相關用法
- Python PyTorch take用法及代碼示例
- Python PyTorch tanh用法及代碼示例
- Python PyTorch tan用法及代碼示例
- 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 transpose用法及代碼示例
- Python PyTorch tensor_split用法及代碼示例
- Python PyTorch t用法及代碼示例
- Python PyTorch trapezoid用法及代碼示例
- Python PyTorch tensordot用法及代碼示例
- 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.take_along_dim。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。