Classification
Teaching a model to sort things into categories — and learning why the wrong kind of wrong can be more costly than no AI at all.
Classification is a machine learning task where a model assigns each input to one of a fixed set of categories. Fraud or not fraud. High risk, medium risk, or low risk. Which product department a customer inquiry belongs to. The model learns the pattern from labeled examples, then applies it to new inputs it hasn't seen before. Classification underpins a wide range of practical business applications: fraud detection, content moderation, document routing, customer intent recognition, and medical screening.
In classification, how the model fails matters as much as how often it succeeds. Blocking a legitimate transaction (false positive) and missing a fraud case (false negative) are both errors — but they have very different business consequences. A model optimized purely for overall accuracy on an imbalanced dataset often learns to predict the common outcome nearly every time, missing the rare cases entirely. Those rare cases are usually exactly what the model was built to catch. The precision-recall trade-off is ultimately a business decision, and it belongs to the business — not the data science team.
Read next
Related concepts
Machine Learning
AI that learns patterns from data rather than following fixed rules — which means its behavior is only as good as the data it learned from.
FoundationsTraining Data
The data a model learned from — which means everything the model knows, gets right, gets wrong, and embeds as bias all traces back here.
Technical ConceptsAccuracy
The most widely reported AI performance metric — and one of the easiest to be misled by.
Optional map
Concept neighborhood
Focused neighborhood
Classification
Teaching a model to sort things into categories — and learning why the wrong kind of wrong can be more costly than no AI at all.
In these paths
Selected concept
Directly related
One step further
via Machine Learning
via Training Data