mindspore.Tensor.log1p
- Tensor.log1p()[source]
Returns the natural logarithm of one plus the input tensor element-wise.
x refers to self tensor.
\[out_i = {log_e}(x_i + 1)\]- Returns
Tensor, has the same shape as the x.
- Raises
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([1.0, 2.0, 4.0]), mindspore.float32) >>> output = x.log1p() >>> print(output) [0.6931472 1.0986123 1.609438 ]