mindspore/docs/api/api_python/ops/mindspore.ops.Log1p.rst

25 lines
607 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.Log1p
===================
.. py:class:: mindspore.ops.Log1p
对输入Tensor逐元素加一后计算自然对数。
.. math::
out_i = {log_e}(x_i + 1)
**输入:**
- **x** (Tensor) - 输入Tensor。数据类型为float16或float32。
该值必须大于-1。
shape :math:`(N,*)` 其中 :math:`*` 表示任何数量的附加维度其轶应小于8。
**输出:**
Tensor`x` 的shape相同。
**异常:**
- **TypeError** - `x` 不是Tensor。
- **TypeError** - `x` 的数据类型非float16或float32。