mindspore.ops.Sign

class mindspore.ops.Sign[source]

Performs sign on the tensor element-wise.

sign(x)={1,if x<00,if x=01,if x>0
Inputs:
  • x (Tensor) - The input tensor. (N,) where means, any number of additional dimensions.

Outputs:

Tensor, has the same shape and type as the x.

Raises

TypeError – If x is not a Tensor.

Supported Platforms:

Ascend CPU GPU

Examples

>>> x = Tensor(np.array([[2.0, 0.0, -1.0]]), mindspore.float32)
>>> sign = ops.Sign()
>>> output = sign(x)
>>> print(output)
[[ 1.  0. -1.]]