💡  Regression Models

Regression Models#

Models that predict continuous numeric outcomes.

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#

Regression models predict a continuous number — a price, a temperature, a demand — rather than a class. They learn a function mapping features to a real-valued output, fitting a curve or surface through the data.

The landscape#

The simplest is linear regression (a weighted sum of features), extending to polynomial, regularized (ridge, lasso), tree-based (random forests, gradient boosting), and neural regressors. The same algorithm family often has both a classification and a regression form.

How they’re judged#

Regression is scored by how far predictions land from the truth — MSE / RMSE, MAE, and — and trained to minimize a distance-based loss. Because those errors use magnitudes, regression is sensitive to outliers, which is why robust losses and metrics exist.


Theme: AI & ML Concepts  ·  All terminology



See also

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

Tags: purpose: reference topic: terminology level: beginner