Fixed tanh operation name

This commit is contained in:
2023-10-19 03:25:51 +03:00
parent bb317c409f
commit 0b8647ccc4

View File

@@ -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,
}