tanh

paddle. tanh ( x, name=None ) [源代码]

tanh 激活函数

\[out = \frac{e^{x} - e^{-x}}{e^{x} + e^{-x}}\]

参数

  • x (Tensor) - Tanh 算子的输入,多维 Tensor,数据类型为 float16,float32 或 float64。

  • name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。

返回

tanh 的输出 Tensor,和输入有着相同类型和 shape。

代码示例

import paddle

x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
out = paddle.tanh(x)
print(out)
# [-0.37994896 -0.19737532  0.09966799  0.29131261]

使用本API的教程文档