Start here
Logistic Regression, in plain language
Build an interpretable binary classifier using logits, sigmoid probabilities, cross-entropy, and thresholds. Logistic regression is a transparent classification baseline that teaches probabilities, log odds, decision thresholds, regularization, and calibration.
For a small example, a binary classifier score changes from 0 to 1. Apply the sigmoid: the output moves from 0.50 to about 0.73, then connect the sign of each weight to that movement. This is the mechanism to keep in view as the lesson becomes more technical. Before moving on, identify the input, transformation, output, and one observation that would falsify your conclusion.
Key points
- Linear score, odds, log odds, sigmoid, and class probability.
- Binary cross-entropy and maximum likelihood.
- Decision boundaries, thresholds, and coefficient interpretation.