mindspore.ops.log1p

mindspore.ops.log1p(input)[源代码]

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

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

返回:

Tensor,与 input 的shape相同。

异常:
  • TypeError - input 不是Tensor。

  • TypeError - input 的数据类型非float16或float32。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1.0, 2.0, 4.0]), mindspore.float32)
>>> output = ops.log1p(x)
>>> print(output)
[0.6931472 1.0986123 1.609438 ]