Machine Learning

Logistic Regression

A classification algorithm that uses the sigmoid function to predict the probability of a binary outcome. Despite its name containing 'regression,' it is used for classification tasks.

Why It Matters

Logistic regression is often the first model to try for binary classification — it is fast, interpretable, and surprisingly effective. It serves as a strong baseline.

Example

Predicting whether a customer will churn (yes/no) based on features like account age, usage frequency, and support ticket count.

Think of it like...

Like calculating odds in betting — you weigh various factors and come up with a probability that something will or will not happen.

Related Terms