50% off: Unlimited data and AI learning.
The Learning Leader's Guide to AI Literacy

torch (version 0.14.2)

torch_sgn: Sgn

Description

Sgn

Usage

torch_sgn(self)

Arguments

self

(Tensor) the input tensor.

sgn(input, *, out=None) -> Tensor

For complex tensors, this function returns a new tensor whose elemants have the same angle as that of the elements of input and absolute value 1. For a non-complex tensor, this function returns the signs of the elements of input (see torch_sign).

outi=0, if |{input}i|==0 outi={input}i|{input}i|, otherwise

Examples

Run this code
if (torch_is_installed()) {
if (FALSE) {
x <- torch_tensor(c(3+4i, 7-24i, 0, 1+2i))
x$sgn()
torch_sgn(x)
}
}

Run the code above in your browser using DataLab