💡  Classification Models

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



See also

Source article Adapted (context, re-expressed) in our own words from: Classification Models (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: beginner