LGAIMLFeb 28, 2021

Ensemble Bootstrapping for Q-Learning

arXiv:2103.00445v256 citations
AI Analysis

This addresses bias reduction in reinforcement learning for improved algorithm performance, though it is incremental as it builds on existing methods like Double-Q-learning.

The paper tackles the over- and under-estimation bias issues in Q-learning by introducing Ensemble Bootstrapped Q-Learning (EBQL), an extension of Double-Q-learning to ensembles, and demonstrates its superior performance over other deep QL algorithms on ATARI games.

Q-learning (QL), a common reinforcement learning algorithm, suffers from over-estimation bias due to the maximization term in the optimal Bellman operator. This bias may lead to sub-optimal behavior. Double-Q-learning tackles this issue by utilizing two estimators, yet results in an under-estimation bias. Similar to over-estimation in Q-learning, in certain scenarios, the under-estimation bias may degrade performance. In this work, we introduce a new bias-reduced algorithm called Ensemble Bootstrapped Q-Learning (EBQL), a natural extension of Double-Q-learning to ensembles. We analyze our method both theoretically and empirically. Theoretically, we prove that EBQL-like updates yield lower MSE when estimating the maximal mean of a set of independent random variables. Empirically, we show that there exist domains where both over and under-estimation result in sub-optimal performance. Finally, We demonstrate the superior performance of a deep RL variant of EBQL over other deep QL algorithms for a suite of ATARI games.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes