Rethinking what the policy predicts
The previous lesson left behavior cloning with two wounds: errors compound quadratically with task length, and DAgger's fix demands an expert in the loop. This lesson takes a different route. Instead of collecting more data at the states the policy visits, it changes what the policy predicts and how it represents actions, so that a policy trained by plain behavior cloning becomes far more robust.
Two advances, both from 2023, carry most of the weight. The first, action chunking, attacks compounding error by having the policy commit to a short burst of future actions at once. The second, Diffusion Policy, changes how actions are generated so the model can represent the many equally-valid ways to perform a task. They are complementary, and together they are why imitation learning went from fragile demos to reliable manipulation. We take them in turn.

