| CARVIEW |
SAQ: Action-Quantized Offline Reinforcement Learning for Robotic Skill Learning
Conference on Robot Learning (CoRL) 2023
Atlanta, GA
Abstract
The offline reinforcement learning (RL) paradigm provides a general recipe to convert static behavior datasets of experience into policies that can perform better than the behavior policy that collected the data. While policy constraints, conservatism, and other methods for mitigating distributional shifts w.r.t. behavior datasets have made offline reinforcement learning more effective, the continuous action setting often necessitates various approximations for applying these techniques. Many of these challenges are greatly alleviated in discrete action settings, where offline RL constraints and regularizers can often be computed more precisely or even exactly. In this paper, we propose an adaptive scheme for action quantization. We use a VQ-VAE to learn state-conditioned action quantization, avoiding the exponential blowup that comes with naïve discretization of the action space. We show that several state-of-the-art offline RL methods such as IQL, CQL, and BRAC improve in performance on benchmarks when combined with our proposed discretization scheme. We further validate our approach on a set of challenging long-horizon complex robotic manipulation tasks in the robomimic environment where our discretized offline RL algorithms are able to improve upon their continuous counterparts by 2-3x in performance.
Summary
- Train a conditional VQ-VAE to learn a latent representation of the actions conditioned on the state
- Perform offline RL with the VQ-VAE discrete codes as actions
- During inference, select the best discrete action using the policy and transform into continuous with the trained decoder
Method
Results