diff --git a/docs/ops/activation/HSwish_4.md b/docs/ops/activation/HSwish_4.md index a2bf8407ea34ec..bf572c39f43f27 100644 --- a/docs/ops/activation/HSwish_4.md +++ b/docs/ops/activation/HSwish_4.md @@ -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). diff --git a/docs/ops/activation/SoftPlus_4.md b/docs/ops/activation/SoftPlus_4.md index 112faa2873098e..135c4cb9dccae4 100644 --- a/docs/ops/activation/SoftPlus_4.md +++ b/docs/ops/activation/SoftPlus_4.md @@ -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. diff --git a/docs/ops/pooling/AvgPool_1.md b/docs/ops/pooling/AvgPool_1.md index dfa04c476b02ed..b8f0ecb2f31ff3 100644 --- a/docs/ops/pooling/AvgPool_1.md +++ b/docs/ops/pooling/AvgPool_1.md @@ -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** diff --git a/docs/ops/pooling/MaxPool_1.md b/docs/ops/pooling/MaxPool_1.md index 6e705e49a22c8e..e730b7892ca6ba 100644 --- a/docs/ops/pooling/MaxPool_1.md +++ b/docs/ops/pooling/MaxPool_1.md @@ -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**