Extremum-Seeking Action Selection for Accelerating Policy Optimization
Ya-Chien Chang, Sicun Gao
TL;DR
This work addresses slow learning in continuous-control RL caused by exploration with high-entropy Gaussian policies in unstable dynamics. It introduces Extremum-Seeking Action Selection (ESA), which per-sample perturbs actions using $u(t)=v(t)+K\sin(\omega t)$, evaluates $Q(s,a_t+u(t))$, and updates $v(t+1)=v(t)+\alpha \sin(\omega t)\mathbb{H}[Q(s,a_t+u(t))]$, applying the refined action $a_t+v(t)$ to the environment. ESA is designed as a drop-in augmentation for PPO and SAC, demonstrated to yield faster learning and higher final performance on MuJoCo tasks and quadrotor simulations, with ablations on perturbation magnitude $K$, frequency $\omega$, and decay. The results indicate that ESC-based per-sample refinement offers a practical path to data-efficient, robust learning in challenging continuous-control scenarios, by tracking local optima without explicit models and while preserving base policy gradients.
Abstract
Reinforcement learning for control over continuous spaces typically uses high-entropy stochastic policies, such as Gaussian distributions, for local exploration and estimating policy gradient to optimize performance. Many robotic control problems deal with complex unstable dynamics, where applying actions that are off the feasible control manifolds can quickly lead to undesirable divergence. In such cases, most samples taken from the ambient action space generate low-value trajectories that hardly contribute to policy improvement, resulting in slow or failed learning. We propose to improve action selection in this model-free RL setting by introducing additional adaptive control steps based on Extremum-Seeking Control (ESC). On each action sampled from stochastic policies, we apply sinusoidal perturbations and query for estimated Q-values as the response signal. Based on ESC, we then dynamically improve the sampled actions to be closer to nearby optima before applying them to the environment. Our methods can be easily added in standard policy optimization to improve learning efficiency, which we demonstrate in various control learning environments.
