log1p

paddle. log1p ( x, name=None ) [source]

Calculates the natural log of the given input tensor, element-wise.

\[\begin{split}Out = \\ln(x+1)\end{split}\]
Parameters
  • x (Tensor) – Input Tensor. Must be one of the following types: float32, float64.

  • name (str, optional) – The default value is None. Normally there is no need for user to set this property. For more information, please refer to Name

Returns

Tensor, the natural log of the input Tensor computed element-wise.

Examples

import paddle

data = paddle.to_tensor([[0], [1]], dtype='float32')
res = paddle.log1p(data)
# [[0.], [0.6931472]]