From 338aa3d85b69d901bc70403f4dc325f2edf86e53 Mon Sep 17 00:00:00 2001 From: Sebastian Golebiewski Date: Tue, 21 Nov 2023 12:09:41 +0100 Subject: [PATCH] Fix math formula in Elu_1 (#21204) --- .../operations_specifications/activation/Elu_1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/articles_en/documentation/openvino_ir/operation_sets/operations_specifications/activation/Elu_1.md b/docs/articles_en/documentation/openvino_ir/operation_sets/operations_specifications/activation/Elu_1.md index d122b1c353b..6959ad9dbf6 100644 --- a/docs/articles_en/documentation/openvino_ir/operation_sets/operations_specifications/activation/Elu_1.md +++ b/docs/articles_en/documentation/openvino_ir/operation_sets/operations_specifications/activation/Elu_1.md @@ -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