mindspore.ops.coo_softsign
- mindspore.ops.coo_softsign(x)[源代码]
- COOTensor Softsign激活函数。 - Softsign函数定义为: \[\text{SoftSign}(x) = \frac{x}{1 + |x|}\]- 参数:
- x (COOTensor) - COOTensor的输入。它的数据类型必须为float16或float32。 
 
- 返回:
- COOTensor,数据类型和shape与 x 相同。 
- 异常:
- TypeError - x 不是COOTensor。 
- TypeError - x 的数据类型既不是float16也不是float32。 
 
- 支持平台:
- Ascend- GPU- CPU
 - 样例: - >>> from mindspore import dtype as mstype >>> from mindspore import Tensor, ops, COOTensor >>> indices = Tensor([[0, 1], [1, 2]], dtype=mstype.int64) >>> values = Tensor([-1, 2], dtype=mstype.float32) >>> shape = (3, 4) >>> x = COOTensor(indices, values, shape) >>> output = ops.coo_softsign(x) >>> print(output.values) [-0.5 0.6666667]