Generative Actor Critic
Aoyang Qin, Deqian Kong, Wei Wang, Ying Nian Wu, Song-Chun Zhu, Sirui Xie
TL;DR
The paper addresses offline-to-online RL by moving from expected-return optimization to learning a joint distribution over trajectories and returns, p(τ,y), and performing test-time inference for policy improvement. It introduces Generative Actor-Critic (GAC), a latent-variable framework with a continuous latent plan z and factorization p(τ,y,z)=p(τ|z)p(y|z)p(z), enabling exploitation through gradient-based latent optimization and exploration through sampling z conditioned on optimistic targets y^+. Trained with an ELBO objective using variational Bayes, GAC achieves strong offline performance and substantially better offline-to-online improvement on Gym-MuJoCo and Maze2D compared with baselines, even when step-wise rewards are absent. The work reveals emergent latent-space structure, including implicit world-modeling and cognitive-map-like organization, suggesting that modeling the full trajectory-return distribution can underpin robust planning in complex environments.
Abstract
Conventional Reinforcement Learning (RL) algorithms, typically focused on estimating or maximizing expected returns, face challenges when refining offline pretrained models with online experiences. This paper introduces Generative Actor Critic (GAC), a novel framework that decouples sequential decision-making by reframing \textit{policy evaluation} as learning a generative model of the joint distribution over trajectories and returns, $p(τ, y)$, and \textit{policy improvement} as performing versatile inference on this learned model. To operationalize GAC, we introduce a specific instantiation based on a latent variable model that features continuous latent plan vectors. We develop novel inference strategies for both \textit{exploitation}, by optimizing latent plans to maximize expected returns, and \textit{exploration}, by sampling latent plans conditioned on dynamically adjusted target returns. Experiments on Gym-MuJoCo and Maze2D benchmarks demonstrate GAC's strong offline performance and significantly enhanced offline-to-online improvement compared to state-of-the-art methods, even in absence of step-wise rewards.
