mindspore.ops.csr_softsign

mindspore.ops.csr_softsign(x: CSRTensor)[源代码]

CSRTensor Softsign激活函数。

Softsign函数定义为:

\[\text{SoftSign}(x) = \frac{x}{1 + |x|}\]
参数:
  • x (CSRTensor) - CSRTensor,它的数据类型必须为float16或float32。

返回:

CSRTensor,数据类型和shape与 x 相同。

异常:
  • TypeError - x 不是CSRTensor。

  • TypeError - x 的数据类型既不是float16也不是float32。

支持平台:

Ascend GPU CPU

样例:

>>> indptr = Tensor([0, 1, 2, 2], dtype=mstype.int32)
>>> indices = Tensor([3, 0], dtype=mstype.int32)
>>> values = Tensor([-1, 2], dtype=mstype.float32)
>>> shape = (3, 4)
>>> x = CSRTensor(indptr, indices, values, shape)
>>> output = ops.csr_softsign(x)
>>> print(output.values)
[-0.5        0.6666667]