本文简要介绍python语言中 torch.any
的用法。
用法:
torch.any(input) → Tensor
input(Tensor) -输入张量。
out(Tensor,可选的) -输出张量。
-
测试
input
中的任何元素是否计算为True
。注意
此函数与 NumPy 的行为相匹配,为除
uint8
之外的所有受支持的数据类型返回数据类型bool
的输出。对于uint8
,输出的数据类型是uint8
本身。例子:
>>> a = torch.rand(1, 2).bool() >>> a tensor([[False, True]], dtype=torch.bool) >>> torch.any(a) tensor(True, dtype=torch.bool) >>> a = torch.arange(0, 3) >>> a tensor([0, 1, 2]) >>> torch.any(a) tensor(True)
torch.any(input, dim, keepdim=False, *, out=None) → Tensor
对于给定维度
dim
中input
的每一行,如果该行中的任何元素评估为True
,则返回True
,否则返回False
。如果
keepdim
是True
,则输出张量的大小与input
相同,但在维度dim
中它的大小为 1。否则,dim
被挤压(参见torch.squeeze()
),结果在比input
少 1 个维度的输出张量中。例子:
>>> a = torch.randn(4, 2) < 0 >>> a tensor([[ True, True], [False, True], [ True, True], [False, False]]) >>> torch.any(a, 1) tensor([ True, True, True, False]) >>> torch.any(a, 0) tensor([True, True])
参数:
参数:
关键字参数:
相关用法
- Python PyTorch angle用法及代码示例
- Python PyTorch annotate用法及代码示例
- Python PyTorch argsort用法及代码示例
- Python PyTorch addmm用法及代码示例
- Python PyTorch addmv用法及代码示例
- Python PyTorch apply_effects_tensor用法及代码示例
- Python PyTorch assert_close用法及代码示例
- Python PyTorch all_reduce用法及代码示例
- Python PyTorch atanh用法及代码示例
- Python PyTorch async_execution用法及代码示例
- Python PyTorch argmax用法及代码示例
- Python PyTorch atan用法及代码示例
- Python PyTorch as_strided用法及代码示例
- Python PyTorch acos用法及代码示例
- Python PyTorch all_gather用法及代码示例
- Python PyTorch avg_pool1d用法及代码示例
- Python PyTorch asin用法及代码示例
- Python PyTorch allreduce_hook用法及代码示例
- Python PyTorch argmin用法及代码示例
- Python PyTorch all_to_all用法及代码示例
- Python PyTorch asinh用法及代码示例
- Python PyTorch add用法及代码示例
- Python PyTorch addcdiv用法及代码示例
- Python PyTorch acosh用法及代码示例
- Python PyTorch addbmm用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.any。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。