RL without TD learning
In this post, I'll introduce a reinforcement learning (RL) algorithm based on an "alternative" paradigm: divide and conquer. Unlike traditional methods, this algorithm is not based on temporal difference (TD) learning (which has scalability challenges), and scales well to long-horizon tasks. Our problem setting is off-policy RL. Let's briefly review what this means. There are two classes of algorithms in RL: on-policy RL and off-policy RL. On-policy RL means we can only use fresh data collected by the current policy. In other words, we have to throw away old data each time we update the policy. Algorithms like PPO and GRPO (and policy gradient methods in general) belong to this category.[1] Off-policy RL means we don't have this restriction: we can use any kind of data, including old experience, human demonstrations, Internet data, and so on. So off-policy RL is more general and flexible than on-policy RL (and of course harder!). Q-learning is the most well-known off-policy RL algorith
RL without TD learning RL without TD learning Seohong Park UC Berkeley October 2025 \( \definecolor{myblue}{RGB}{89, 139, 231} \definecolor{plgray}{RGB}{153, 153, 153} \) In this post, I'll introduce a reinforcement learning (RL) algorithm based on an "alternative" paradigm: divide and conquer . Unlike traditional methods, this algorithm is not based on temporal difference (TD) learning (which has scalability challenges ), and scales well to long-horizon tasks. We can do RL based on divide and conquer, instead of TD learning. Problem setting: off-policy RL Our problem setting is off-policy RL
Explore this link on the map →saved by
related reading
- Seohong Park on X: "We scaled up an "alternative" paradigm in RL: *divide and conquer*. Compared to Q-learning (TD learning), divide and conquer can naturally scale to much longer horizons. Blog post: https://t.co/xtXBzya0bI Paper: https://t.co/nqYkLucsWu ↓ https://t.co/XCdgUzaLxF" / Xx.com
- RL without TD learning – The Berkeley Artificial Intelligence Research Blogbair.berkeley.edu
- [1606.05312] Successor Features for Transfer in Reinforcement Learningarxiv.org
- Q-learning is not yet scalableseohong.me
- A (Long) Peek into Reinforcement Learning | Lil'Loglilianweng.github.io
- Scaling Laws for Value-Based RLvalue-scaling.github.io
- Part 1: Key Concepts in RL - Spinning Up documentationspinningup.openai.com
- The Promise of Hierarchical Reinforcement Learningthegradient.pub
- Part 2: Kinds of RL Algorithms - Spinning Up documentationspinningup.openai.com
- An Updated Introduction to Reinforcement Learning | Sri's Blogsrianumakonda.com
- RUDDER - Reinforcement Learning with Delayed Rewards | rudderml-jku.github.io
- Policy Gradient Algorithms | Lil'Loglilianweng.github.io