OCLGJul 15, 2020

Analysis of Q-learning with Adaptation and Momentum Restart for Gradient Descent

arXiv:2007.07422v159 citations
Originality Incremental advance
AI Analysis

This work provides theoretical convergence guarantees for adaptive Q-learning methods, addressing a gap for practitioners in reinforcement learning, though it is incremental as it builds on existing adaptive gradient techniques.

The paper tackles the lack of convergence guarantees for Q-learning with adaptive gradient methods like Adam, establishing convergence rates for Q-AMSGrad and an improved version with momentum restart (Q-AMSGradR). Experiments show these algorithms outperform vanilla Q-learning with SGD and DQN on a linear quadratic regulator problem and Atari 2600 games, with significantly better performance.

Existing convergence analyses of Q-learning mostly focus on the vanilla stochastic gradient descent (SGD) type of updates. Despite the Adaptive Moment Estimation (Adam) has been commonly used for practical Q-learning algorithms, there has not been any convergence guarantee provided for Q-learning with such type of updates. In this paper, we first characterize the convergence rate for Q-AMSGrad, which is the Q-learning algorithm with AMSGrad update (a commonly adopted alternative of Adam for theoretical analysis). To further improve the performance, we propose to incorporate the momentum restart scheme to Q-AMSGrad, resulting in the so-called Q-AMSGradR algorithm. The convergence rate of Q-AMSGradR is also established. Our experiments on a linear quadratic regulator problem show that the two proposed Q-learning algorithms outperform the vanilla Q-learning with SGD updates. The two algorithms also exhibit significantly better performance than the DQN learning method over a batch of Atari 2600 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