Mitigating Suboptimality of Deterministic Policy Gradients in Complex Q-functions
Ayush Jain, Norio Kosaka, Xinhu Li, Kyung-Min Kim, Erdem Bıyık, Joseph J. Lim
TL;DR
This work tackles suboptimality in deterministic policy gradients caused by non-convex Q-landscapes. It introduces SAVO, a plug-in actor-architecture that trains multiple gradient-based actors and uses successive surrogate Q-functions to prune low-value regions, thereby guiding gradient ascent toward higher-value actions. Across restricted locomotion, dexterous manipulation, and large discrete-action recommender tasks, SAVO reduces local optima and outperforms single-actor baselines and related multi-actor or sampling-based methods. The approach preserves TD3/SAC sample efficiency while improving final performance, suggesting a practical, scalable path to robust policy optimization in complex control and decision-making settings.
Abstract
In reinforcement learning, off-policy actor-critic methods like DDPG and TD3 use deterministic policy gradients: the Q-function is learned from environment data, while the actor maximizes it via gradient ascent. We observe that in complex tasks such as dexterous manipulation and restricted locomotion with mobility constraints, the Q-function exhibits many local optima, making gradient ascent prone to getting stuck. To address this, we introduce SAVO, an actor architecture that (i) generates multiple action proposals and selects the one with the highest Q-value, and (ii) approximates the Q-function repeatedly by truncating poor local optima to guide gradient ascent more effectively. We evaluate tasks such as restricted locomotion, dexterous manipulation, and large discrete-action space recommender systems and show that our actor finds optimal actions more frequently and outperforms alternate actor architectures.
