當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.keras.activations.tanh用法及代碼示例


雙曲正切激活函數。

用法

tf.keras.activations.tanh(
    x
)

參數

  • x 輸入張量。

返回

  • 輸入 x 具有相同形狀和 dtype 的張量,具有 tanh 激活:tanh(x) = sinh(x)/cosh(x) = ((exp(x) - exp(-x))/(exp(x) + exp(-x)))

例如:

a = tf.constant([-3.0,-1.0, 0.0,1.0,3.0], dtype = tf.float32)
b = tf.keras.activations.tanh(a)
b.numpy()
array([-0.9950547, -0.7615942,  0.,  0.7615942,  0.9950547], dtype=float32)

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.activations.tanh。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。