Prioritized Generative Replay
Renhao Wang, Kevin Frans, Pieter Abbeel, Sergey Levine, Alexei A. Efros
TL;DR
The paper tackles sample efficiency in online reinforcement learning by addressing limitations of uniform replay through a parametric memory built from conditional diffusion models. It introduces Prioritized Generative Replay (pgr), which densifies past experience and guides generation via relevance functions, with curiosity emerging as a robust default cue to promote diverse, informative transitions. Empirical results across state-based and pixel-based tasks show that curiosity-guided pgr delivers consistent gains in data efficiency and performance, and scales effectively with larger policies and higher synthetic data budgets. The approach offers a flexible, scalable path to leveraging synthetic data in online RL while mitigating overfitting to generated samples and enabling higher update-to-data ratios.
Abstract
Sample-efficient online reinforcement learning often uses replay buffers to store experience for reuse when updating the value function. However, uniform replay is inefficient, since certain classes of transitions can be more relevant to learning. While prioritization of more useful samples is helpful, this strategy can also lead to overfitting, as useful samples are likely to be more rare. In this work, we instead propose a prioritized, parametric version of an agent's memory, using generative models to capture online experience. This paradigm enables (1) densification of past experience, with new generations that benefit from the generative model's generalization capacity and (2) guidance via a family of "relevance functions" that push these generations towards more useful parts of an agent's acquired history. We show this recipe can be instantiated using conditional diffusion models and simple relevance functions such as curiosity- or value-based metrics. Our approach consistently improves performance and sample efficiency in both state- and pixel-based domains. We expose the mechanisms underlying these gains, showing how guidance promotes diversity in our generated transitions and reduces overfitting. We also showcase how our approach can train policies with even higher update-to-data ratios than before, opening up avenues to better scale online RL agents.
