Growth Marketing Glossary

Classification

clas·si·fi·ca·tionnoun

Sorting into known buckets. Classification trains on labeled data to predict which category a record belongs to, powering lead scoring, churn flags, and fraud detection.

labeled exampleslearn the boundarypredicted class
Schematic — records sorted into predefined categories
Term
Classification
Is
Supervised prediction of a category label
Needs
Labeled training examples
Used for
Lead scoring, churn, spam, fraud

Parts of speech & senses

classification · noun
  1. Classification is a supervised machine-learning task that learns from labeled examples to assign each new record to one of a fixed set of predefined categories. "The model uses classification to flag each lead as likely to convert or not."

What classification is

Classification is the machine-learning task of putting things into named boxes that you defined ahead of time. You feed an algorithm a pile of past examples that already carry their correct labels — emails marked spam or safe, customers marked churned or retained, transactions marked fraud or legitimate — and it learns the patterns that separate one box from another. Then, faced with a new record it has never seen, it predicts which box that record belongs in. Because the algorithm learns from answers you supplied, classification is a form of supervised learning. The boxes can be two (binary classification, like buy or no-buy) or many (multiclass, like sorting support tickets into billing, technical, or account). What unites them all is that the set of categories is fixed and known before training begins.

For marketers, classification is the quiet engine behind a great deal of automation. Lead scoring is classification: the model studies which past leads converted and which did not, then labels each new lead as likely or unlikely to buy, so sales can prioritize. Churn prediction is classification: it learns the signatures of customers who left and flags the ones at risk while there is still time to intervene. Spam filtering, sentiment tagging of reviews, image moderation, and fraud screening are all the same task in different clothes. The value is that it turns a vague human judgment — "this feels like a hot lead" — into a repeatable, scalable decision backed by evidence from thousands of prior cases, and it produces not just a label but often a probability you can rank and threshold.

Classification versus clustering and regression

Classification is most often confused with clustering, and the difference is fundamental. Classification is supervised — it needs labeled examples and predicts a category you already defined, like "high-value" or "low-value." Clustering is unsupervised — it gets no labels and instead discovers natural groupings in the data on its own, then you decide what those groups mean afterward. Put plainly, classification sorts records into buckets you named in advance, while clustering invents the buckets. If you already know the customer tiers you care about and have past examples of each, you classify. If you suspect there are meaningful segments but cannot name them yet, you cluster, often using the result to create labels you then classify against.

Classification also differs from regression, its sibling in supervised learning. Regression predicts a number on a continuous scale — next month's revenue, a customer's expected lifetime value, a likely order size. Classification predicts a category from a discrete set — will this customer churn, yes or no. The line can blur, because many classifiers output a probability between zero and one, but the decision they support is categorical: cross a threshold and the lead is "hot." Choosing between them comes down to the question. "How much will they spend" is regression; "will they buy at all" is classification. Common classification algorithms include logistic regression, decision trees, random forests, gradient boosting, and neural networks, each learning the boundary between classes in its own way.

Using classification well

Use classification well by judging it on the right metrics, not just raw accuracy. Accuracy alone is treacherous when classes are imbalanced — if only two percent of leads convert, a model that predicts "no" for everyone is ninety-eight percent accurate and completely useless. Lean instead on precision (of the leads you flagged hot, how many really were), recall (of the truly hot leads, how many you caught), and the confusion matrix that lays both bare. Decide which error costs more: missing a churning customer or wasting a save offer on a loyal one, then tune the decision threshold to match that cost. Watch for leakage, where a feature secretly encodes the answer, which makes a model look brilliant in testing and fail in production.

Treat the labels themselves as the foundation, because a classifier is only as honest as the examples it learned from. If your historical "converted" labels are sloppy or biased, the model inherits that. Retrain as behavior drifts, since last year's signature of a hot lead may not hold this year. Pair classification with segmentation and incrementality thinking so you act on the predictions rather than just admire them. The failure mode is shipping a high-accuracy number that hides a model blind to the rare class you actually care about — the fraud, the churn, the conversion — and acting on its labels without ever checking the costs of being wrong.

Worked example. A B2B team wants sales to chase the right leads. They take two years of leads, each labeled converted or not, and train a classification model on signals like company size, pages viewed, and demo requests. The model outputs a conversion probability for every new lead, which the team thresholds into hot, warm, and cold. They check recall, not just accuracy, to be sure they are catching most true buyers, and tune the cutoff so sales is not flooded. Hot-flagged leads convert far more often than cold ones, so reps spend their hours where the evidence points. (Illustrative; RGM analysis.)
Failure modes to watch. Trusting raw accuracy on imbalanced data so the model ignores the rare class you care about; training on mislabeled or biased historical examples; leaking the answer through a feature that won't exist at prediction time; never retraining as behavior drifts; treating a probability as certainty.

Synonyms & antonyms

Synonyms

supervised categorizationlabel predictionclass assignment

Antonyms

clusteringregression

Origin & history

Classification, from the Latin for "arranging into classes," is the supervised task of assigning records to predefined categories learned from labeled examples.

Etymology: source.

Usage trends

Search interest for this term over the last five years:

View interest-over-time on Google Trends →

Common questions

What is classification in machine learning?
A supervised task that learns from labeled examples to assign each new record to one of a fixed set of predefined categories — spam or safe, churn or stay, hot lead or cold. It outputs a class, often with a probability.
How is classification different from clustering?
Classification is supervised and predicts categories you defined in advance from labeled examples. Clustering is unsupervised and discovers natural groupings in unlabeled data on its own, leaving you to interpret the groups it found afterward.
Why isn't accuracy enough to judge a classifier?
Because with imbalanced classes a lazy model can score high by always predicting the majority. Precision, recall, and the confusion matrix reveal whether it actually catches the rare cases — the fraud, churn, or conversions — you built it for.

Resources & people to follow

Curated, non-competitor resources verified per term.

Related training

Disciplines

Areas of marketing where classification is a core concern:

Sources

  1. trendsGoogle Trends — "classification machine learning"