Fix math formula in Elu_1 (#21204)

This commit is contained in:
Sebastian Golebiewski 2023-11-21 12:09:41 +01:00 committed by GitHub
parent 4e992aef3a
commit 338aa3d85b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@
It performs element-wise activation function on a given input tensor, based on the following mathematical formula:
.. math::
Elu(x) = \left\
Elu(x) = \left\lbrace
\begin{array}{r}
x \quad \text{if } x > 0 \\
\alpha(e^{x} - 1) \quad \text{if } x \leq 0