mindspore.ops.csr_log1p

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

对输入CSRTensor逐元素加一后计算自然对数。

\[out_i = {log_e}(x_i + 1)\]
参数:
  • x (CSRTensor) - 输入CSRTensor。数据类型为float16或float32。 该值必须大于-1。 shape: \((N,*)\) 其中 \(*\) 表示任何数量的附加维度,其秩应小于8。

返回:

CSRTensor,与 x 的shape相同。

异常:
  • 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_log1p(x)
>>> print(output.values)
[     -inf 1.0986123]