Orthogonal Gradient Boosting for Simpler Additive Rule Ensembles
Fan Yang, Pierre Le Bodic, Michael Kamp, Mario Boley
TL;DR
This work tackles interpretability in additive rule ensembles by introducing Orthogonal Gradient Boosting (COB), which uses an objective that measures the angle between the risk gradient and the orthogonal component of a candidate rule's output to guide corrective updates. The method formalizes a corrective gradient descent within the span of previously selected rules and the gradient, and defines the orthogonal objective $\mathrm{obj}_{\mathrm{ogb}}(q) = \frac{|\mathbf{g}_\perp^T \mathbf{q}|}{(\|\mathbf{q}_\perp\| + \epsilon)}$ to promote more general, shorter rules while maintaining predictive accuracy. The authors develop efficient incremental algorithms to compute the objective and enable prefix-search strategies, including beam and branch-and-bound variants. Empirically, COB outperforms standard gradient boosting, gradient sum, XGBoost, and SIRUS across 34 datasets (classification, regression, Poisson) with complexity levels up to 50, achieving better risk/complexity trade-offs while keeping computation practical. The work also discusses extensions to extreme gradient boosting and the theoretical guarantees underpinning the orthogonal approach.
Abstract
Gradient boosting of prediction rules is an efficient approach to learn potentially interpretable yet accurate probabilistic models. However, actual interpretability requires to limit the number and size of the generated rules, and existing boosting variants are not designed for this purpose. Though corrective boosting refits all rule weights in each iteration to minimise prediction risk, the included rule conditions tend to be sub-optimal, because commonly used objective functions fail to anticipate this refitting. Here, we address this issue by a new objective function that measures the angle between the risk gradient vector and the projection of the condition output vector onto the orthogonal complement of the already selected conditions. This approach correctly approximate the ideal update of adding the risk gradient itself to the model and favours the inclusion of more general and thus shorter rules. As we demonstrate using a wide range of prediction tasks, this significantly improves the comprehensibility/accuracy trade-off of the fitted ensemble. Additionally, we show how objective values for related rule conditions can be computed incrementally to avoid any substantial computational overhead of the new method.
