tf.sigmoid Tutorials and Examples for Beginners

tf.sigmoid computes sigmoid of x element-wise of a tensor.

Specifically, y = 1 / (1 + exp(-x)).

sigmoid(
x,
name=None
)

Notice: you can not compute sigmoid value of a tensor by selecting axis.