Logistic regression is a linear model for classification that estimates the probability an example belongs to a class, passing a weighted sum of features through a logistic function to produce a value between 0 and 1. It is a foundational, interpretable baseline classifier.
| Model | What it is | Note |
|---|---|---|
| Logisitic regression | Linear classifier with probability output | Interpretable baseline |
| Linear regression | Predicts a continuous value | Regression, not classification |
| Softmax classifier | Multiclass logistic regression | The standard neural-net classification head |
