SALE-Based Offline Reinforcement Learning with Ensemble Q-Networks
Zheng Chun
TL;DR
This paper tackles the instability and overestimation challenges of offline reinforcement learning by proposing EDTD7, a model-free actor-critic that integrates State-Action Learned Embeddings (SALE) with ensemble Q-networks and a gradient-diversity penalty. It introduces a comprehensive loss framework, including a Q-value loss with a stabilized minimum over the ensemble, a policy loss with adaptive behavior cloning, a SALE encoder loss, and LAP-based prioritized replay, all designed to maintain training stability. Empirical results on the D4RL MuJoCo suite show EDTD7 achieves strong convergence speed, stability, and competitive performance relative to TD7, EDAC, and other baselines, with insightful ablations validating the contributions of SALE, LAP, and the ensemble design. The work highlights the practicality of a simple, ensemble-based offline RL approach that balances stability and efficiency, and suggests future work on automating hyperparameter selection and exploring deeper interactions between ensemble methods and dataset structure.
Abstract
In this work, we build upon the offline reinforcement learning algorithm TD7, which incorporates State-Action Learned Embeddings (SALE) and a prioritized experience replay buffer (LAP). We propose a model-free actor-critic algorithm that integrates ensemble Q-networks and a gradient diversity penalty from EDAC. The ensemble Q-networks introduce penalties to guide the actor network toward in-distribution actions, effectively addressing the challenge of out-of-distribution actions. Meanwhile, the gradient diversity penalty encourages diverse Q-value gradients, further suppressing overestimation for out-of-distribution actions. Additionally, our method retains an adjustable behavior cloning (BC) term that directs the actor network toward dataset actions during early training stages, while gradually reducing its influence as the precision of the Q-ensemble improves. These enhancements work synergistically to improve the stability and precision of the training. Experimental results on the D4RL MuJoCo benchmarks demonstrate that our algorithm achieves higher convergence speed, stability, and performance compared to existing methods.
