Fixed tanh operation name

This commit is contained in:
Dmitriy Shishkov 2023-10-19 03:25:51 +03:00
parent f68424d6a6
commit a1b7e94452

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