Enhancing Control Policy Smoothness by Aligning Actions with Predictions from Preceding States
Kyoleen Kwak, Hyoseok Hwang
TL;DR
The paper tackles high-frequency action oscillations in DRL control by introducing ASAP, a loss-based action smoothing method that defines similar states from the transition distribution $\text{sim}(s_t)=P(\cdot|s_{t-1})$ and couples a spatial loss with a temporal second-order penalty. A composite Lipschitz constraint on the actor via the transition function $T$ yields a principled, data-driven loss $L$ that aligns current actions with predictions from preceding states, while a predictor head enables the $L_P$ term to guide these predictions. The ASAP objective $J^{\text{ASAP}}_{\pi_\phi} = J_{\pi_\phi} + \lambda_S L_S + \lambda_P L_P + \lambda_T L_T$ balances smoothness and performance, demonstrated across Gymnasium and Isaac-Lab with PPO and SAC against baselines like CAPS, L2C2, and GRAD. Results show ASAP achieves substantially smoother actions (lower $Sm$) while preserving or improving cumulative returns, and it remains compatible with architectural approaches, suggesting strong practical applicability for real-world robotics and controlled environments.
Abstract
Deep reinforcement learning has proven to be a powerful approach to solving control tasks, but its characteristic high-frequency oscillations make it difficult to apply in real-world environments. While prior methods have addressed action oscillations via architectural or loss-based methods, the latter typically depend on heuristic or synthetic definitions of state similarity to promote action consistency, which often fail to accurately reflect the underlying system dynamics. In this paper, we propose a novel loss-based method by introducing a transition-induced similar state. The transition-induced similar state is defined as the distribution of next states transitioned from the previous state. Since it utilizes only environmental feedback and actually collected data, it better captures system dynamics. Building upon this foundation, we introduce Action Smoothing by Aligning Actions with Predictions from Preceding States (ASAP), an action smoothing method that effectively mitigates action oscillations. ASAP enforces action smoothness by aligning the actions with those taken in transition-induced similar states and by penalizing second-order differences to suppress high-frequency oscillations. Experiments in Gymnasium and Isaac-Lab environments demonstrate that ASAP yields smoother control and improved policy performance over existing methods.
