From 0b8647ccc490e1929594fb58bebe64f2b653033f Mon Sep 17 00:00:00 2001 From: dm1sh Date: Thu, 19 Oct 2023 03:25:51 +0300 Subject: [PATCH] Fixed tanh operation name --- parser/parser/operation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser/operation.py b/parser/parser/operation.py index b6fb0e9..c2a1b3b 100644 --- a/parser/parser/operation.py +++ b/parser/parser/operation.py @@ -41,7 +41,7 @@ functions: dict[str, FunctionType] = { "sqrt": np.sqrt, "sum": np.sum, "sup": np.max, - "tah": np.tanh, + "tanh": np.tanh, "tan": np.tan, }