本文简要介绍python语言中 torch.isclose
的用法。
用法:
torch.isclose(input, other, rtol=1e-05, atol=1e-08, equal_nan=False) → Tensor
返回一个带有布尔元素的新张量,表示
input
的每个元素是否为 “close” 到other
的相应元素。紧密度定义为:其中
input
和other
是有限的。其中input
和/或other
是非有限的,当且仅当它们相等时它们是接近的,当equal_nan
为 True 时,NaNs 被认为彼此相等。例子:
>>> torch.isclose(torch.tensor((1., 2, 3)), torch.tensor((1 + 1e-10, 3, 4))) tensor([ True, False, False]) >>> torch.isclose(torch.tensor((float('inf'), 4)), torch.tensor((float('inf'), 6)), rtol=.5) tensor([True, True])
参数:
相关用法
- Python PyTorch is_tensor_like用法及代码示例
- Python PyTorch is_nonzero用法及代码示例
- Python PyTorch isneginf用法及代码示例
- Python PyTorch is_scripting用法及代码示例
- Python PyTorch isnan用法及代码示例
- Python PyTorch is_tensor_method_or_property用法及代码示例
- Python PyTorch isreal用法及代码示例
- Python PyTorch isinf用法及代码示例
- Python PyTorch isfinite用法及代码示例
- Python PyTorch is_pruned用法及代码示例
- Python PyTorch isin用法及代码示例
- Python PyTorch isposinf用法及代码示例
- Python PyTorch is_tensor用法及代码示例
- Python PyTorch isinstance用法及代码示例
- Python PyTorch ignore用法及代码示例
- Python PyTorch ihfft用法及代码示例
- Python PyTorch index_select用法及代码示例
- Python PyTorch identity用法及代码示例
- Python PyTorch import_huggingface_model用法及代码示例
- Python PyTorch invoke_on_rank_and_broadcast_result用法及代码示例
- Python PyTorch i0用法及代码示例
- Python PyTorch irfft用法及代码示例
- Python PyTorch ifft2用法及代码示例
- Python PyTorch ifftn用法及代码示例
- Python PyTorch i1e用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.isclose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。