Gradient Boosting Reinforcement Learning
Benjamin Fuhrer, Chen Tessler, Gal Dalal
TL;DR
GBRL tackles the challenge of applying gradient boosting trees to reinforcement learning by treating the tree ensemble as a function-parameterization of the policy and value functions and updating it via functional gradients. The approach interleaves tree construction with environment interaction, enabling incremental learning suitable for RL’s non-stationary data. Key contributions include a gradient-based GBRL framework with a shared actor-critic architecture, a CUDA-accelerated implementation, and empirical evidence that GBRL outperforms neural networks on structured observation tasks while offering improved robustness to out-of-distribution signals and spurious correlations. The work demonstrates that GBTs, with their strength on structured data, can serve as competitive or superior function approximators in RL domains where such features are prevalent, while also outlining limitations and directions for future work. Overall, GBRL broadens the RL toolbox by bringing gradient-boosted ensembles into online, interactive learning contexts with practical hardware acceleration and integration capabilities.
Abstract
We present Gradient Boosting Reinforcement Learning (GBRL), a framework that adapts the strengths of gradient boosting trees (GBT) to reinforcement learning (RL) tasks. While neural networks (NNs) have become the de facto choice for RL, they face significant challenges with structured and categorical features and tend to generalize poorly to out-of-distribution samples. These are challenges for which GBTs have traditionally excelled in supervised learning. However, GBT's application in RL has been limited. The design of traditional GBT libraries is optimized for static datasets with fixed labels, making them incompatible with RL's dynamic nature, where both state distributions and reward signals evolve during training. GBRL overcomes this limitation by continuously interleaving tree construction with environment interaction. Through extensive experiments, we demonstrate that GBRL outperforms NNs in domains with structured observations and categorical features while maintaining competitive performance on standard continuous control benchmarks. Like its supervised learning counterpart, GBRL demonstrates superior robustness to out-of-distribution samples and better handles irregular state-action relationships.
