by N/A (general modeling concept; commonly implemented in libraries like scikit-learn)
Regression baseline models are simple predictive models used as reference points for evaluating more complex regression algorithms. They typically include strategies like predicting the mean, median, or last observed value of the target variable, helping practitioners determine whether sophisticated models provide meaningful improvements. Baselines matter because they prevent overfitting to noise and ensure that added model complexity is justified by real performance gains.
A parametric model that learns a linear relationship between features and target, often outperforming trivial baselines when relationships are approximately linear.
An ensemble of decision trees that captures nonlinear relationships and interactions, typically used when simple baselines and linear models are insufficient.
Boosted tree ensembles that often achieve state-of-the-art performance on tabular regression tasks, far surpassing baselines when tuned properly.
A non-parametric method that predicts based on local neighborhoods in feature space, offering a more flexible alternative to global baselines.