torch.is_nonzero
-
torch.is_nonzero(input) -> (bool) -
Returns True if the
inputis a single element tensor which is not equal to zero after type conversions. i.e. not equal totorch.tensor([0.])ortorch.tensor([0])ortorch.tensor([False]). Throws aRuntimeErroriftorch.numel() != 1(even in case of sparse tensors).- Parameters
-
input (Tensor) – the input tensor.
Examples:
>>> 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
© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.is_nonzero.html