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


Python tf.math.softplus用法及代碼示例


計算元素級softplus:softplus(x) = log(exp(x) + 1)

用法

tf.math.softplus(
    features, name=None
)

參數

  • features Tensor
  • name 可選:與此操作關聯的名稱。

返回

  • Tensor

softplusrelu 的平滑近似。就像 relu , softplus 總是采用正值。

例子:

import tensorflow as tf
tf.math.softplus(tf.range(0, 2, dtype=tf.float32)).numpy()
array([0.6931472, 1.3132616], dtype=float32)

相關用法


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