tf.math.sigmoid
| Просмотреть исходный код на GitHub |
Вычисляет сигмоиду x по элементам.
tf.math.sigmoid(
x, name=None
)
Формула для вычисления sigmoid(x): y = 1 / (1 + exp(-x)).
Для x \in (-inf, inf) => sigmoid(x) \in (0, 1)
Пример использования:
Если положительное число велико, то его сигмоида приблизится к 1, так как формула будет y = <large_num> / (1 + <large_num>)
x = tf.constant([0.0, 1.0, 50.0, 100.0]) tf.math.sigmoid(x) <tf.Tensor: shape=(4,), dtype=float32, numpy=array([0.5 , 0.7310586, 1. , 1. ], dtype=float32)>
Если отрицательное число велико, то его сигмоида приблизится к 0, так как формула будет y = 1 / (1 + <large_num>)
x = tf.constant([-100.0, -50.0, -1.0, 0.0])
tf.math.sigmoid(x)
<tf.Tensor: shape=(4,), dtype=float32, numpy=
array([0.0000000e+00, 1.9287499e-22, 2.6894143e-01, 0.5],
dtype=float32)>
| Аргументы | |
|---|---|
x | A Tensor с типом float16, float32, float64, complex64, или complex128. |
name | Имя операции (необязательно). |
| Возвращаемые значения | |
|---|---|
A Tensor с типом, таким же как x. |
Пример использования:
x = tf.constant([-128.0, 0.0, 128.0], dtype=tf.float32) tf.sigmoid(x) <tf.Tensor: shape=(3,), dtype=float32, numpy=array([0. , 0.5, 1. ], dtype=float32)>
Совместимость с Scipy
Эквивалентно scipy.special.expit
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/math/sigmoid