Aliases:
tf.math.sigmoid
tf.nn.sigmoid
tf.sigmoid
tf.math.sigmoid(
x,
name=None
)
Defined in tensorflow/python/ops/math_ops.py
.
Computes sigmoid of x
element-wise.
Specifically, y = 1 / (1 + exp(-x))
.
Args:
x
: A Tensor with typefloat16
,float32
,float64
,complex64
, orcomplex128
.name
: A name for the operation (optional).
Returns:
A Tensor with the same type as x
.
Scipy Compatibility
Equivalent to scipy.special.expit