58How does gradient boosting (XGBoost/LightGBM) work, and why does it dominate tabular ML?▼hard★ EssentialAmazonGoogleMeta1 replies◆ premiumXGBoost and LightGBM win most tabular problems, and interviewers want more than 'it's boosting.' The signal is the fit-to-residuals mechanism plus the engineering (regularization, histograms, second-order) that makes it both fast and accurate.Open full answer →
102How does LightGBM's histogram binning and GOSS make gradient boosting fast, and what do they cost?▼hardMicrosoftAmazonGoogle1 replies◆ premiumXGBoost made boosting practical; LightGBM made it fast. The answer is histogram binning, gradient-based sampling, and leaf-wise growth, each with a real tradeoff. Here is what they do and where they bite.Open full answer →