Modelling in 2024

some modelling tips in 2024

  ·   1 min read

Reminder of an old modelling tricks that never die, even in 2025:

  • Linear regs (l1/l2/elasticnet) as a starter. Focus on feature engineering here.
  • Quantile Regression is also cool
  • LightGBM for pretty much everything as it’s fast and accurate.
  • CatBoost if you have many categorical features.
  • Random Forest if your OOS variance is too high from LightGBM.
  • XGBoost when you’re just curious.
  • You can slap SHAP ontop of these but realistically it won’t help too much.
  • Ensemble multiple models and average the preds using postprocessing techniques like weighted avg, median, etc, as well as run feature neutralisation.