本文簡要介紹python語言中 torch.is_nonzero
的用法。
用法:
torch.is_nonzero(input)
input(Tensor) -輸入張量。
如果
input
是類型轉換後不等於零的單元素張量,則返回 True。即不等於torch.tensor([0.])
或torch.tensor([0])
或torch.tensor([False])
。如果torch.numel() != 1
則拋出RuntimeError
(即使在稀疏張量的情況下)。例子:
>>> torch.is_nonzero(torch.tensor([0.])) False >>> torch.is_nonzero(torch.tensor([1.5])) True >>> torch.is_nonzero(torch.tensor([False])) False >>> torch.is_nonzero(torch.tensor([3])) True >>> torch.is_nonzero(torch.tensor([1, 3, 5])) Traceback (most recent call last): ... RuntimeError: bool value of Tensor with more than one value is ambiguous >>> torch.is_nonzero(torch.tensor([])) Traceback (most recent call last): ... RuntimeError: bool value of Tensor with no values is ambiguous
參數:
相關用法
- Python PyTorch is_tensor_like用法及代碼示例
- Python PyTorch is_scripting用法及代碼示例
- Python PyTorch is_tensor_method_or_property用法及代碼示例
- Python PyTorch is_pruned用法及代碼示例
- Python PyTorch is_tensor用法及代碼示例
- Python PyTorch isneginf用法及代碼示例
- Python PyTorch isclose用法及代碼示例
- Python PyTorch isnan用法及代碼示例
- Python PyTorch isreal用法及代碼示例
- Python PyTorch isinf用法及代碼示例
- Python PyTorch isfinite用法及代碼示例
- Python PyTorch isin用法及代碼示例
- Python PyTorch isposinf用法及代碼示例
- 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.is_nonzero。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。