Loading...

Logistic Regression

A linear model for classification that maps a linear score through a sigmoid to a probability.

When to use: Default baseline for binary classification; calibrated probabilities and fast inference.

Example: Credit default: P(default) = σ(−2.5 + 0.04 · debt_ratio − 0.001 · income + 0.3 · late_payments). A threshold of 0.5 splits approve/decline.

More ML Algorithms Glossary terms