Double descent for least-squares interpolation on contaminated data: A simulation study
Summary
A simulation study (April 15, 2026) investigated the "double descent" phenomenon in least-squares interpolation when applied to contaminated linear regression data. Contrary to classical statistical theory, which predicts overfitting with overparameterization, this study found that highly overparameterized least-squares interpolators can exhibit excellent generalization performance. Specifically, for a linear regression setting with n=100 instances and p varying from 10 to 200, and 10% contamination, the least-squares interpolator showed a double descent: test MSE initially increased, peaked at p=n, then decreased significantly for p>n. This performance surpassed several robust alternatives like Huber M-estimator, Tukey biweight M-estimator, sparse LTS, and RRBoost, which either showed less pronounced double descent or none at all. The study suggests that the double descent is a robust property, even with contaminated data, implying potential benefits for using simple least-squares in highly overparameterized scenarios.
Key takeaway
For Data Scientists designing models for potentially contaminated datasets, especially when high overparameterization is feasible, you should reconsider the default assumption that robust estimators are always superior. This research suggests that a simple least-squares interpolator can achieve better generalization performance than robust alternatives in the "double descent" regime (p>n), potentially simplifying model selection and reducing computational overhead. Explore its efficacy before defaulting to more complex robust methods.
Key insights
The least-squares interpolator exhibits double descent and can outperform robust methods on contaminated data with high overparameterization.
Principles
- "Double descent" indicates generalization error decreases after peak complexity.
- Overparameterized models can implicitly denoise contaminated data.
- Robust estimators may underperform simple interpolators in high overparameterization.
Method
The study compared least-squares interpolation with Huber, Tukey, sparse LTS, and RRBoost estimators on contaminated linear regression data, evaluating test MSE, training MSE, and coefficients across varying p.
In practice
- Consider least-squares interpolation for highly overparameterized models.
- Evaluate simple interpolators even with mild data contamination.
Topics
- Double Descent
- Least-Squares Interpolation
- Robust Statistics
- Contaminated Data
- Overparameterization
- Linear Regression
Best for: AI Scientist, Research Scientist, Data Scientist
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.LG updates on arXiv.org.