提交 f6796924 编写于 作者: G GaoWei8 提交者: cyj1986

Fix exp op doc (#1226)

* Fix exp op doc
test=document_preview

* fix exp doc
test=document_preview

* fix exp doc
test=document_preview

* fix exp doc
test=document_preview

* fix exp doc
test=document_preview
上级 c19ab1e1
......@@ -5,32 +5,30 @@ exp
.. py:function:: paddle.fluid.layers.exp(x, name=None)
Exp激活函数(Exp指以自然常数e为底的指数运算)
对输入,逐元素进行以自然数e为底指数运算
.. math::
out = e^x
参数:
- **x** (Variable) - 该OP的输入为多维Tensor。数据类型为float32,float64。
- **name** (str, 可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为None。
- **x** - Exp算子的输入
- **use_cudnn** (BOOLEAN) – (bool,默认为false)是否仅用于cudnn核,需要安装cudnn
返回:输出为Tensor,与 ``x`` 维度相同、数据类型相同。
返回: Exp算子的输出
返回类型: Variable
**代码示例**:
.. code-block:: python
import paddle.fluid as fluid
data = fluid.layers.data(name="input", shape=[32, 784])
result = fluid.layers.exp(data)
import paddle.fluid as fluid
import numpy as np
input_exp = np.array([[-1.5,6],[1,15.6]])
with fluid.dygraph.guard():
x = fluid.dygraph.to_variable(input_exp)
y = fluid.layers.exp(x)
print(y.numpy())
# [[2.23130160e-01 4.03428793e+02]
# [2.71828183e+00 5.95653801e+06]]
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册