RL without TD learning
Lab/vendor primary source
#216
- Topic
- Post-Training
- First seen
- 2026-07-16 19:08:00
- Last seen
- 2026-07-16 19:08:00
Source raw items (1)
- Blog / Newsletter2026-07-16 19:07:20RL without TD learning
<!-- twitter --> <p>In this post, I’ll introduce a reinforcement learning (RL) algorithm based on an “alternative” paradigm: <strong>divide and conquer</strong>. Unlike traditional methods, this algorithm is <em>not</em> based on temporal difference (TD) learning (which has <a href="https://seohong.me/blog/q-learning-is-not-yet-scalable/">scalability challenges</a>), and scales well to long-horizon tasks.</p> <p style="text-align: center;"> <img alt="" src="https://bair.berkeley.edu/static/blog/rl-without-td-learning/teaser_short.png" width="100%" /> <br /> <i style="font-size: 0.9em;">We can do Reinforcement Learning (RL) based on divide and conquer, instead of temporal difference (TD) learning.</i> </p> <!--more--> <h2 id="problem-setting-off-policy-rl">Problem setting: off-policy RL</h2> <p>Our problem setting is <strong>off-policy RL</strong>. Let’s briefly review what this means.</p> <p>There are two classes of algorithms in RL: on-policy RL and off-policy RL. On-