paper-with-me

홈 › Papers

Robust Policy Optimization in Deep Reinforcement Learning

2022-12-14 · Md Masudur Rahman, Yexiang Xue

The policy gradient method enjoys the simplicity of the objective where the agent optimizes the cumulative reward directly. Moreover, in the continuous action domain, parameterized distribution of action distribution allows easy control of exploration, resulting from the variance of the representing distribution. Entropy can play an essential role in policy optimization by selecting the stochastic policy, which eventually helps better explore the environment in reinforcement learning (RL). However, the stochasticity often reduces as the training progresses; thus, the policy becomes less exploratory. Additionally, certain parametric distributions might only work for some environments and require extensive hyperparameter tuning. This paper aims to mitigate these issues. In particular, we propose an algorithm called Robust Policy Optimization (RPO), which leverages a perturbed distribution. We hypothesize that our method encourages high-entropy actions and provides a way to represent the action space better. We further provide empirical evidence to verify our hypothesis. We evaluated our methods on various continuous control tasks from DeepMind Control, OpenAI Gym, Pybullet, and IsaacGym. We observed that in many settings, RPO increases the policy entropy early in training and then maintains a certain level of entropy throughout the training period. Eventually, our agent RPO shows consistently improved performance compared to PPO and other techniques: entropy regularization, different distributions, and data augmentation. Furthermore, in several settings, our method stays robust in performance, while other baseline mechanisms fail to improve and even worsen the performance.

📄 PDF Abstract BibTeX arXiv:2212.07536

Code (1)

vwxyzjn/cleanrl/blob/master/cleanrl/rpo_continuous_action.py 공식 구현 jax

Tasks

continuous-controlContinuous ControlData AugmentationDeep Reinforcement LearningOpenAI Gymreinforcement-learningReinforcement LearningReinforcement Learning (RL)

Methods 이 논문이 사용한 방법론

fail 설명 없음
Entropy Regularization 설명 없음
PPO Proximal Policy Optimization, or PPO, is a policy gradient method for reinforcement learning. The motivation was to have an algorithm with the data efficiency and reliable…

Similar Papers 제목 키워드 기반

Natural Policy Gradients In Reinforcement Learning Explained

2022-09-05 · W. J. A. van Heeswijk

Traditional policy gradient methods are fundamentally flawed. Natural gradients converge quicker and better, forming the foundation of contemporary Reinforcement Learning such as Trust Region Policy Optimization (TRPO) a…

Policy Gradient Methodsreinforcement-learningReinforcement LearningReinforcement Learning (RL)

Reflective Policy Optimization

2024-06-06 · Yaozhong Gan, Renye Yan, Zhe Wu, Junliang Xing

On-policy reinforcement learning methods, like Trust Region Policy Optimization (TRPO) and Proximal Policy Optimization (PPO), often demand extensive data per update, leading to sample inefficiency. This paper introduces…

reinforcement-learningReinforcement Learning

Hindsight Experience Replay Accelerates Proximal Policy Optimization

2024-10-29 · Douglas C. Crowder, Darrien M. McKenzie, Matthew L. Trappett, Frances S. Chance

Hindsight experience replay (HER) accelerates off-policy reinforcement learning algorithms for environments that emit sparse rewards by modifying the goal of the episode post-hoc to be some state achieved during the epis…

reinforcement-learningReinforcement Learning

Convergent Policy Optimization for Safe Reinforcement Learning

2019-10-26 · NeurIPS 2019 12 · Ming Yu, Zhuoran Yang, Mladen Kolar, Zhaoran Wang

We study the safe reinforcement learning problem with nonlinear function approximation, where policy optimization is formulated as a constrained optimization problem with both the objective and the constraint being nonco…

Multi-agent Reinforcement Learningreinforcement-learningReinforcement LearningReinforcement Learning (RL)+1

Batch Reinforcement Learning with Hyperparameter Gradients

2020-01-01 · ICML 2020 1 · Byung-Jun Lee, Jongmin Lee, Peter Vrancx, Dongho Kim 외

We consider the batch reinforcement learning problem where the agent needs to learn only from a fixed batch of data, without further interaction with the environment. In such a scenario, we want to prevent the optimized …

continuous-controlContinuous Controlreinforcement-learningReinforcement Learning+1