PG-Rainbow: Using Distributional Reinforcement Learning in Policy Gradient Methods
WooJae Jeon, KangJun Lee, Jeewoo Lee
TL;DR
PG-Rainbow addresses the sample inefficiency and distribution-insensitive nature of on-policy policy gradient methods by integrating distributional reinforcement learning into PPO. It connects an implicit quantile network (IQN) with a distillation network to transfer quantile information into PPO’s value head, producing a distribution-aware critic: $V_{\\psi}(s)=f_{\\psi}(V_{\\theta}(s) \\odot q_{\\phi}(s))$. Empirical results on Atari via ALE show that PG-Rainbow generally outperforms PPO, with ablations demonstrating that timely distillation, number of quantiles, and the chosen input form for the distillation network all critically affect performance. This hybrid approach leverages off-policy distributional information to boost on-policy learning, suggesting a practical path toward more data-efficient and robust reinforcement learning in discrete-action domains.
Abstract
This paper introduces PG-Rainbow, a novel algorithm that incorporates a distributional reinforcement learning framework with a policy gradient algorithm. Existing policy gradient methods are sample inefficient and rely on the mean of returns when calculating the state-action value function, neglecting the distributional nature of returns in reinforcement learning tasks. To address this issue, we use an Implicit Quantile Network that provides the quantile information of the distribution of rewards to the critic network of the Proximal Policy Optimization algorithm. We show empirical results that through the integration of reward distribution information into the policy network, the policy agent acquires enhanced capabilities to comprehensively evaluate the consequences of potential actions in a given state, facilitating more sophisticated and informed decision-making processes. We evaluate the performance of the proposed algorithm in the Atari-2600 game suite, simulated via the Arcade Learning Environment (ALE).
