torch_isneginf {torch} | R Documentation |
Isneginf
Description
Isneginf
Usage
torch_isneginf(self)
Arguments
self |
(Tensor) the input tensor. |
isneginf(input, *, out=None) -> Tensor
Tests if each element of input
is negative infinity or not.
Examples
if (torch_is_installed()) {
a <- torch_tensor(c(-Inf, Inf, 1.2))
torch_isneginf(a)
}
[Package torch version 0.13.0 Index]