Fixed tanh operation name

This commit is contained in:
Dmitriy Shishkov 2023-10-19 03:25:51 +03:00
parent bb317c409f
commit 0b8647ccc4
Signed by: dm1sh
GPG Key ID: 027994B0AA357688

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