View source on GitHub |
Computes sigmoid of x
element-wise.
tf.math.sigmoid(
x, name=None
)
Specifically, y = 1 / (1 + exp(-x))
.
x
: A Tensor with type float16
, float32
, float64
, complex64
, or
complex128
.name
: A name for the operation (optional).A Tensor with the same type as x
.
Equivalent to scipy.special.expit