We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34959c4 commit dbede61Copy full SHA for dbede61
docs/api/paddle/nn/ELU_cn.rst
@@ -10,7 +10,13 @@ ELU激活层(ELU Activation Operator)
10
11
.. math::
12
13
- ELU(x) = max(0, x) + min(0, \alpha * (e^{x} − 1))
+ ELU(x)=
14
+ \left\{
15
+ \begin{array}{lcl}
16
+ x,& &\text{if } \ x > 0 \\
17
+ alpha * (e^{x} - 1),& &\text{if } \ x <= 0
18
+ \end{array}
19
+ \right.
20
21
其中,:math:`x` 为输入的 Tensor
22
docs/api/paddle/nn/functional/elu_cn.rst
@@ -11,7 +11,13 @@ elu激活层(ELU Activation Operator)
- elu(x) = max(0, x) + min(0, \alpha * (e^{x} − 1))
+ elu(x)=
23
0 commit comments