Soft regression trees: a model variant and a decomposition training algorithm
Antonio Consolo, Edoardo Amaldi, Andrea Manno
TL;DR
The paper tackles the challenge of learning globally optimized decision trees by introducing Soft Regression Trees (SRTs) that predict from a single leaf along a Highest Branch Probability path, enabling conditional computation and faster inference.A convergent node-based decomposition scheme (NODEC-GS) is developed to train SRTs, with a practical variant (NODEC-DR) that adds clustering-based initialization and a data-point reassignment heuristic to balance routing and improve convergence.The authors prove a universal approximation property for SRTs, showing the leaf-only function class is dense in the space of continuous functions on any compact domain, and demonstrate superior empirical performance on 15 datasets compared to soft (ORRT) and some deterministic (ORT-L) baselines, while achieving substantial training-time reductions; Random Forest is used as a reference for interpretability vs. accuracy.Overall, the work advances interpretable, efficiently trainable soft-tree models with strong approximation capabilities and practical training schemes suitable for larger-scale problems.
Abstract
Decision trees are widely used for classification and regression tasks in a variety of application fields due to their interpretability and good accuracy. During the past decade, growing attention has been devoted to globally optimized decision trees with deterministic or soft splitting rules at branch nodes, which are trained by optimizing the error function over all the tree parameters. In this work, we propose a new variant of soft multivariate regression trees (SRTs) where, for every input vector, the prediction is defined as the linear regression associated to a single leaf node, namely, the leaf node obtained by routing the input vector from the root along the branches with higher probability. SRTs exhibit the conditional computational property, i.e., each prediction depends on a small number of nodes (parameters), and our nonlinear optimization formulation for training them is amenable to decomposition. After showing a universal approximation result for SRTs, we present a decomposition training algorithm including a clustering-based initialization procedure and a heuristic for reassigning the input vectors along the tree. Under mild assumptions, we establish asymptotic convergence guarantees. Experiments on 15 wellknown datasets indicate that our SRTs and decomposition algorithm yield higher accuracy and robustness compared with traditional soft regression trees trained using the nonlinear optimization formulation of Blanquero et al., and a significant reduction in training times as well as a slightly better average accuracy compared with the mixed-integer optimization approach of Bertsimas and Dunn. We also report a comparison with the Random Forest ensemble method.
