本文簡要介紹python語言中 torch.max
的用法。
用法:
torch.max(input) → Tensor
input(Tensor) -輸入張量。
out(tuple,可選的) -兩個輸出張量的結果元組(最大值,max_indices)
返回
input
張量中所有元素的最大值。警告
與
max(dim=0)
不同,此函數產生確定性(子)梯度例子:
>>> a = torch.randn(1, 3) >>> a tensor([[ 0.6763, 0.7445, -2.2369]]) >>> torch.max(a) tensor(0.7445)
torch.max(input, dim, keepdim=False, *, out=None)
返回一個命名元組
(values, indices)
其中values
是給定維度dim
中input
張量的每一行的最大值。而indices
是找到的每個最大值的索引位置(argmax)。如果
keepdim
是True
,則輸出張量的大小與input
相同,但在維度dim
中它們的大小為 1。否則,dim
被壓縮(參見torch.squeeze()
),結果在比input
少 1 個維度的輸出張量中。注意
如果縮減行中有多個最大值,則返回第一個最大值的索引。
例子:
>>> a = torch.randn(4, 4) >>> a tensor([[-1.2360, -0.2942, -0.1222, 0.8475], [ 1.1949, -1.1127, -2.2379, -0.6702], [ 1.5717, -0.9207, 0.1297, -1.8768], [-0.6172, 1.0036, -0.6060, -0.2432]]) >>> torch.max(a, 1) torch.return_types.max(values=tensor([0.8475, 1.1949, 1.5717, 1.0036]), indices=tensor([3, 0, 0, 1]))
torch.max(input, other, *, out=None) → Tensor
見
torch.maximum()
。
參數:
參數:
關鍵字參數:
相關用法
- Python PyTorch maximum用法及代碼示例
- Python PyTorch matrix_rank用法及代碼示例
- Python PyTorch matrix_exp用法及代碼示例
- Python PyTorch matmul用法及代碼示例
- Python PyTorch matrix_power用法及代碼示例
- Python PyTorch masked_select用法及代碼示例
- Python PyTorch maskrcnn_resnet50_fpn用法及代碼示例
- Python PyTorch matrix_norm用法及代碼示例
- Python PyTorch make_tensor用法及代碼示例
- Python PyTorch monitored_barrier用法及代碼示例
- Python PyTorch mean用法及代碼示例
- Python PyTorch multinomial用法及代碼示例
- Python PyTorch meshgrid用法及代碼示例
- Python PyTorch mm用法及代碼示例
- Python PyTorch mv用法及代碼示例
- Python PyTorch min用法及代碼示例
- Python PyTorch msort用法及代碼示例
- Python PyTorch mode用法及代碼示例
- Python PyTorch movedim用法及代碼示例
- Python PyTorch minimum用法及代碼示例
- Python PyTorch multi_dot用法及代碼示例
- Python PyTorch mul用法及代碼示例
- Python PyTorch movielens_25m用法及代碼示例
- Python PyTorch multigammaln用法及代碼示例
- Python PyTorch movielens_20m用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.max。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。