Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ops math formula fix #3333

Merged
merged 1 commit into from
Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/ops/activation/HSwish_4.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
**Detailed description**: For each element from the input tensor calculates corresponding
element in the output tensor with the following formula:

\f[
HSwish(x) = x \frac{min(max(x + 3, 0), 6)}{6}
\f]
\f[
HSwish(x) = x \frac{min(max(x + 3, 0), 6)}{6}
\f]

The HSwish operation is introduced in the following [article](https://arxiv.org/pdf/1905.02244.pdf).

Expand Down
6 changes: 3 additions & 3 deletions docs/ops/activation/SoftPlus_4.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
**Detailed description**: For each element from the input tensor calculates corresponding
element in the output tensor with the following formula:

\f[
SoftPlus(x) = ln(e^{x} + 1.0)
\f]
\f[
SoftPlus(x) = ln(e^{x} + 1.0)
\f]

**Attributes**: *SoftPlus* operation has no attributes.

Expand Down
6 changes: 3 additions & 3 deletions docs/ops/pooling/AvgPool_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@

**Mathematical Formulation**

\f[
output_{j} = \frac{\sum_{i = 0}^{n}x_{i}}{n}
\f]
\f[
output_{j} = \frac{\sum_{i = 0}^{n}x_{i}}{n}
\f]

**Example**

Expand Down
6 changes: 3 additions & 3 deletions docs/ops/pooling/MaxPool_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@

**Mathematical Formulation**

\f[
output_{j} = MAX\{ x_{0}, ... x_{i}\}
\f]
\f[
output_{j} = MAX\{ x_{0}, ... x_{i}\}
\f]

**Example**

Expand Down