World Action Models Enable Continual Imitation Learning with Recurrent Generative Replays

University of North Carolina at Charlotte

Abstract

Going beyond predicting robot actions, World Action Models (WAMs) can also generate future visual observations. We build on this generative capability to propose Recurrent Generative Replay (REGEN), a continual imitation learning framework that synthesizes pseudo-replay trajectories, enabling a robot policy to rehearse previously learned tasks without storing their original human demonstrations. During continual adaptation, REGEN recursively queries the WAM to synthesize pseudo-replay trajectories conditioned only on prior task instructions and current-task observations. Experiments in both simulation and real-world manipulation settings show that REGEN reduces catastrophic forgetting by up to 50% relative to sequential fine-tuning, while approaching the performance of privileged experience replay methods that require access to real replay data. Finally, we analyze the factors limiting generated replay, identifying long-horizon visual degradation and action-observation inconsistency as the primary bottlenecks. Our results establish WAMs as a promising foundation for continual robot learning without stored demonstrations.

TL;DR: REGEN leverages World Action Model's own generative capabilities to synthesize pseudo-demonstrations of previous tasks, eliminating the need for any stored replay buffer while substantially reducing catastrophic forgetting.

Method Overview

REGEN method overview

REGEN operates by leveraging a pretrained World Action Model (WAM) as its own replay mechanism. When adapting to a new task, REGEN generates pseudo-demonstrations for each previous task by conditioning the WAM on the prior task's language instruction and initializing the rollout from a real observation sampled from the current task's demonstrations.

REGEN involves two phases. First, an initialization phase seeds the rollout with one real action chunk from the current task. Second, a recurrent generation phase takes over: the model's own predicted future observations are fed back as inputs, producing a fully synthetic trajectory without any stored data. Generation terminates either at a maximum horizon or goal reward function is satisfied.

The resulting pseudo-trajectories are combined with the current task's demonstrations and used to fine-tune the policy via behavioral cloning. This allows the WAM to simultaneously acquire new skills and retain knowledge previously learned ones, using only its own generative replay as memory without storing the original demonstrations.

REGEN's Generated Pseudo-Demonstrations

REGEN synthesizes pseudo-demonstrations for previously learned tasks by recursively rolling out the WAM itself. These generated trajectories are then used as replays during continual learning adaptation.

Turn on the stove

Put the bowl on the plate

Push plate to front of stove

Pick the tomato sauce and place it in the basket

Pick black bowl on ramekin and place it on the plate

Put the carrot in the bowl

Put the carrot on the plate

Pick up the black bowl next to plate and place it on the plate

Continual Learning Performance

Libero Simulation Benchmark

We evaluate REGEN on three LIBERO benchmark suites against Sequential Fine-Tuning (Seq-FT), Seq-LoRA, Experience Replay (ER, upper bound), EWC, PackNet, and Rollouts-as-Replay (RAR). Higher FWT and AUC are better; lower NBT is better.

Method LIBERO-Object LIBERO-Goal
FWT ↑ NBT ↓ AUC ↑ FWT ↑ NBT ↓ AUC ↑
Seq-FT92.782.624.990.610010.3
Seq-LoRA93.599.911.18399.69.3
EWC94.987.525.183.699.49.9
PackNet95.599.711.59210010.5
ER95.74.893.494.07.292.4
RAR96.93.095.292.815.482.6
REGEN (Ours)95.326.165.590.644.940.8
Method LIBERO-Spatial
FWT ↑ NBT ↓ AUC ↑
Seq-FT87.499.810.8
Seq-LoRA8099.68.9
EWC86.499.910.3
PackNet87.210010.4
ER86.4-0.2887.8
RAR87-0.0285.8
REGEN (Ours)†87.217.676.9

† uses object configurations sampled from previous tasks during replay generation.

Real-World Manipulation

We evaluate continual learning performance of REGEN in real-world environment across three sequential pick-and-place tasks: Put carrot in bowl (T1), Put carrot on plate (T2), and Put eggplant in bowl (T3).

Method FWT ↑ NBT ↓ AUC ↑
Seq-FT5096.313.8
Ours (REGEN)8060.553.8

Qualitative Results

After adapting to a new task, we evaluate the updated policy on a previously learned task. Seq-FT policy on the previous task demonstrates catastrophic forgetting by executing the current task instead or failing to accomplish the previous task. Policy learned by REGEN successfully performs the previous task, retaining task-relevant behavior.

LIBERO-Goal

New Task

Seq-FT

REGEN (Ours)

Task: Open the middle drawer of the cabinet

LIBERO-Object

New Task

Seq-FT

REGEN (Ours)

Task: Pick up the cream cheese and place it in the basket

LIBERO-Spatial

New Task

Seq-FT

REGEN (Ours)

Task: Pick up the black bowl on the ramekin and place it on the plate

Real-World Environment

New Task

Seq-FT

REGEN (Ours)

Task: Pick up the carrot and place it in the plate

REGEN Analyses

We further analyze how REGEN preserves the policy's internal representations and behaviors throughout continual learning.

Action representation drift from the base policy

Action representation drift

XY-projection of predicted trajectories compared to ground truth

XY-projection of trajectories

Action representation drift. After the first continual learning stage, action representations under Seq-FT drift heavily from the base policy, consistent with catastrophic forgetting, while ER and REGEN keep representations close to the base, despite REGEN using only generated pseudo-trajectories.

Visualization of predicted actions. On a previously learned task, Seq-FT rollouts deviate sharply from ground-truth trajectories in the XY plane, while REGEN closely matches ground-truth in both shape and temporal progression.

Citation

@misc{govind2026worldactionmodelsenable,
  title={World Action Models Enable Continual Imitation Learning with Recurrent Generative Replays},
  author={Manish Kumar Govind and Dominick Reilly and Smit Patel and Hieu Le and Srijan Das},
  year={2026},
  eprint={2606.27374},
  archivePrefix={arXiv},
  primaryClass={cs.RO},
  url={https://arxiv.org/abs/2606.27374},
}