torch.min¶
- torch.min(input) Tensor¶
返回
input張量中所有元素的最小值。- 引數
input (Tensor) – 輸入張量。
示例
>>> a = torch.randn(1, 3) >>> a tensor([[ 0.6750, 1.0857, 1.7197]]) >>> torch.min(a) tensor(0.6750)
- torch.min(input, dim, keepdim=False, *, out=None)
返回一個命名元組
(values, indices),其中values是input張量在給定維度dim上每行的最小值。indices是找到的每個最小值的索引位置 (argmin)。如果
keepdim為True,則輸出張量的大小與input相同,但在維度dim上大小為 1。否則,將壓縮dim(參見torch.squeeze()),導致輸出張量比input少一個維度。注意
如果減少的行中存在多個最小值,則返回第一個最小值的索引。
- 引數
- 關鍵字引數
out (tuple, optional) – 包含兩個輸出張量 (min, min_indices) 的元組
示例
>>> a = torch.randn(4, 4) >>> a tensor([[-0.6248, 1.1334, -1.1899, -0.2803], [-1.4644, -0.2635, -0.3651, 0.6134], [ 0.2457, 0.0384, 1.0128, 0.7015], [-0.1153, 2.9849, 2.1458, 0.5788]]) >>> torch.min(a, 1) torch.return_types.min(values=tensor([-1.1899, -1.4644, 0.0384, -0.1153]), indices=tensor([2, 0, 1, 0]))
- torch.min(input, other, *, out=None) Tensor
參見
torch.minimum()。