Goal-Space Planning with Subgoal Models
Chunlok Lo, Kevin Roice, Parham Mohammad Panahi, Scott Jordan, Adam White, Gabor Mihucz, Farzane Aminmansour, Martha White
TL;DR
Goal-Space Planning (GSP) introduces subgoal-conditioned, local models to enable efficient background planning in online RL. It constructs an abstract MDP over a predefined set of subgoals, performs value iteration to compute subgoal values, and projects these values back to the original state space via potential-based shaping to guide learning without altering the optimal policy. Across multiple domains, GSP accelerates value propagation and learning, showing robustness to moderate model inaccuracies and a clear dependence on subgoal placement. Unlike Dyna-style approaches that learn full transition dynamics, GSP focuses planning on a compact, temporally abstract space for computational efficiency and faster adaptation.
Abstract
This paper investigates a new approach to model-based reinforcement learning using background planning: mixing (approximate) dynamic programming updates and model-free updates, similar to the Dyna architecture. Background planning with learned models is often worse than model-free alternatives, such as Double DQN, even though the former uses significantly more memory and computation. The fundamental problem is that learned models can be inaccurate and often generate invalid states, especially when iterated many steps. In this paper, we avoid this limitation by constraining background planning to a set of (abstract) subgoals and learning only local, subgoal-conditioned models. This goal-space planning (GSP) approach is more computationally efficient, naturally incorporates temporal abstraction for faster long-horizon planning and avoids learning the transition dynamics entirely. We show that our GSP algorithm can propagate value from an abstract space in a manner that helps a variety of base learners learn significantly faster in different domains.
