Classification Models#
Models that assign inputs to discrete categories.
Important
✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.
What it is#
Classification models predict a discrete category — spam or not, which digit, which disease. The output is a class label (often via a probability over classes), and the model learns a decision boundary that separates the classes in feature space.
The landscape#
They range from linear ones (logistic regression, linear SVM) to non-linear ones (decision trees, random forests, neural networks, kernel SVMs). Tasks split into binary (two classes), multiclass (one of many), and multilabel (several at once).
How they’re judged#
Because the target is categorical, classification uses metrics like accuracy, precision / recall, F1, and AUC — not squared error — and its loss functions are typically cross-entropy rather than a distance. The right metric depends on class balance and error costs.
Theme: AI & ML Concepts · All terminology
Hint
Mind map — connected ideas
Regression Models · Linear Models · Logistic Regression · Decision Trees · Binary Classification · Multiclass Classification
Hint
More in AI & ML Concepts
AI (Artificial Intelligence) · Computer Vision (CV) · Decision Trees · Linear Models · LLMs (Large Language Models) · Logistic Regression · Machine Learning (ML) · Medical AI · Natural Language Processing (NLP) · Neural Networks · Regression Models · Support Vector Machines (SVMs) · Target Variable
See also
Source article Adapted (context, re-expressed) in our own words from: Classification Models (insightful-data-lab.com).