forked from PaddlePaddle/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add log10 Chinese doc (PaddlePaddle#2842)
As the title
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.. _cn_api_fluid_layers_log10: | ||
|
||
log10 | ||
------------------------------- | ||
|
||
.. py:function:: paddle.log10(x, name=None) | ||
Log10激活函数(计算底为10的对数) | ||
|
||
.. math:: | ||
\\Out=log_{10} x\\ | ||
参数: | ||
- **x** (Tensor) – 该OP的输入为Tensor。数据类型为float32,float64。 | ||
- **name** (str,可选) – 该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` ,默认值为None。 | ||
|
||
返回:Log10算子底为10对数输出 | ||
|
||
返回类型: Tensor - 该OP的输出为Tensor,数据类型为输入一致。 | ||
|
||
|
||
**代码示例** | ||
|
||
.. code-block:: python | ||
import paddle | ||
# example 1: x is a float | ||
x_i = paddle.to_tensor([[1.0], [10.0]]) | ||
res = paddle.log10(x_i) # [[0.], [1.0]] | ||
# example 2: x is float32 | ||
x_i = paddle.full(shape=[1], fill_value=10, dtype='float32') | ||
paddle.to_tensor(x_i) | ||
res = paddle.log10(x_i) | ||
print(res.numpy()) # [1.0] | ||
# example 3: x is float64 | ||
x_i = paddle.full(shape=[1], fill_value=10, dtype='float64') | ||
paddle.to_tensor(x_i) | ||
res = paddle.log10(x_i) | ||
print(res.numpy()) # [1.0] |