Functions & Programming Concepts · Level 2 of 5
Sigmoid
A smooth S-shaped function commonly mapping real numbers into zero to one.
The logistic sigmoid is one common member and can saturate at extreme inputs.
Example
A binary classifier converts one logit into a probability.
Listen to the definition and example
Audio transcript
Sigmoid. A smooth S-shaped function commonly mapping real numbers into zero to one. The logistic sigmoid is one common member and can saturate at extreme inputs. For example: A binary classifier converts one logit into a probability.
Explore this concept
A useful analogy
A smooth dimmer that approaches its two limits without abruptly switching.
Why it matters
This helps you distinguish a computation’s contract, inputs, outputs, and behavior.
Technical detail
σ(x) = 1 / (1 + exp(−x)); σ′(x) = σ(x)(1 − σ(x)). The derivative becomes small at extreme inputs.
Common misconception
Sigmoid is not a hard threshold, and its output need not be a calibrated probability.
Start with
Related concepts
Quick recall question
Try answering before looking back at the definition.