Sigmoid 激活函數,sigmoid(x) = 1 / (1 + exp(-x))
。
用法
tf.keras.activations.sigmoid(
x
)
參數
-
x
輸入張量。
返回
-
具有 sigmoid 激活的張量:
1 / (1 + exp(-x))
。
應用 sigmoid 激活函數。對於小值 (sigmoid 返回接近零的值,對於大值 (>5),函數的結果接近 1。
Sigmoid 等效於 2 元素 Softmax,其中第二個元素假定為零。 sigmoid 函數總是返回一個介於 0 和 1 之間的值。
例如:
a = tf.constant([-20, -1.0, 0.0, 1.0, 20], dtype = tf.float32)
b = tf.keras.activations.sigmoid(a)
b.numpy()
array([2.0611537e-09, 2.6894143e-01, 5.0000000e-01, 7.3105860e-01,
1.0000000e+00], dtype=float32)
相關用法
- Python tf.keras.activations.softplus用法及代碼示例
- Python tf.keras.activations.swish用法及代碼示例
- Python tf.keras.activations.softsign用法及代碼示例
- Python tf.keras.activations.softmax用法及代碼示例
- Python tf.keras.activations.selu用法及代碼示例
- Python tf.keras.activations.serialize用法及代碼示例
- Python tf.keras.activations.deserialize用法及代碼示例
- Python tf.keras.activations.elu用法及代碼示例
- Python tf.keras.activations.relu用法及代碼示例
- Python tf.keras.activations.gelu用法及代碼示例
- Python tf.keras.activations.linear用法及代碼示例
- Python tf.keras.activations.tanh用法及代碼示例
- Python tf.keras.activations.hard_sigmoid用法及代碼示例
- Python tf.keras.activations.exponential用法及代碼示例
- Python tf.keras.activations.get用法及代碼示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代碼示例
- Python tf.keras.applications.resnet50.preprocess_input用法及代碼示例
- Python tf.keras.applications.imagenet_utils.preprocess_input用法及代碼示例
- Python tf.keras.applications.vgg16.preprocess_input用法及代碼示例
- Python tf.keras.applications.resnet_v2.preprocess_input用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.activations.sigmoid。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。