Skip to content
AI.info

Research

The Past Frames the Future: Memory for Autoregressive Video Generation

The Past Frames the Future: Memory for Autoregressive Video Generation — A Survey Overview Research area: Computer Vision — specifically autoregressive (AR) video generation, long-horizon video synthe

The Past Frames the Future: Memory for Autoregressive Video Generation
arXiv
2609.28466
Published
2026-09-23
Authors
Harold Haodong Chen, Rongjin Guo, Disen Lan, Wen-Jie Shu, Hongfei Zhang, Hanzhe Hu, Shengtao Yao, Zixin Zhang, Guibin Zhang, Zhefan Rao, Jinxiu Liu, Yexin Liu, Rui Peng, Yuhao Liu, Bin Ren, Shuai Yang, Yukang Chen, Salman Khan, Ying-Cong Chen, Ser-Nam Lim, Rynson W. H. Lau, Nicu Sebe, Yu Cheng, Ming-Hsuan Yang, Qifeng Chen

AI summary

The Past Frames the Future: Memory for Autoregressive Video Generation — A Survey

Overview

  • Research area: Computer Vision — specifically autoregressive (AR) video generation, long-horizon video synthesis, interactive world modeling, and generative memory architectures.
  • Technical level: Intermediate. The survey's taxonomy and failure-mode analysis are broadly accessible, but the formulation sections use formal notation (causal factorization, denoising/flow trajectories, KV caches, memory lifecycle operators).
  • Scope: A systematic review of memory mechanisms in autoregressive video generation, organized around five perspectives — Forms, Functions, Operations, Learning, and Evaluation.

What This Paper Is About

Autoregressive video generation builds video step by step, each new frame, clip, or chunk conditioned on what came before. In practice, models cannot keep the entire history in their active context because of bounded context windows, storage, and compute, so entities, layouts, motion states, and the consequences of past actions drop out of view long before they stop mattering. This survey argues that this retention problem is fundamentally a memory problem, and provides a unified framework, taxonomy, and evaluation lens for the mechanisms that address it.

Key Contributions

  1. A unified formulation of memory in AR video generation. The authors define a persistent memory state, distinct from the active local context, and formalize memory-conditioned generation as an approximation to full-history conditioning.
  2. A structured taxonomy of memory mechanisms. Memory is characterized by representational carriers (Forms: visual, implicit state, explicit state, adaptive parametric), generative responsibilities (Functions: identity, spatial, dynamic, semantic, causal), and operational lifecycles (Operations: writing, reading, updating, managing, integrating).
  3. A systematic review of learning and evaluation. The survey covers training objectives, memory-state distributions, memory-aware optimization, and the distinction between general video consistency measures and memory-revealing protocols that actually diagnose memory capability.
  4. A synthesis of trade-offs and open problems. The paper consolidates shared design tensions and identifies open challenges, including composable and resource-aware memory architectures, trustworthy state updating, self-rollout learning, and standardized evaluation.

Main Findings

  • Memory is defined operationally, not by module name. A state counts as memory when its removal or modification can affect later outputs after the originating evidence is no longer directly available in the immediate context. The boundary between "long context" and "memory" is therefore about how history is maintained and used, not about carrier type or window size.
  • AR generation spans two step-wise paradigms that share the same outer rollout. Discrete token autoregression (e.g., VideoGPT, VideoPoet, Emu3) predicts tokens within a unit; continuous frame- or chunk-wise generation (diffusion- and flow-based) synthesizes a whole frame or multi-frame chunk per step. They differ in inner synthesis but face the same long-horizon retention requirement.
  • Bounded access is structural, not incidental. Standard self-attention has quadratic sequence-length complexity, and even with sparse attention and IO-aware kernels such as FlashAttention, growing visual histories remain constrained by accelerator memory, KV-cache storage, and latency. Practical generators therefore condition on a bounded local context of the most recent W units.
  • Six recurring failure modes follow from memoryless rollouts. The paper catalogs: entity forgetting, appearance drift, spatial inconsistency, dynamics degradation, semantic drift, and causal or state inconsistency. The authors caution that these symptoms are not uniquely caused by missing memory and may also stem from imperfect dynamics modeling, control execution, or rendering.
  • Interactive and action-conditioned generation sharpens the problem. The survey separates observation-changing controls (such as camera or navigation commands in a static environment, which mainly stress spatial preservation) from state-changing interventions (which modify entities or the environment and require causal preservation of their persistent consequences).
  • Four carrier families organize the literature. Visual memory preserves observation-aligned evidence (further split into pixel-space and VAE-space forms); implicit state memory retains history in model-native latent states; explicit state memory uses structured variables such as entities, layouts, relations, and events; adaptive parametric memory encodes sequence-, instance-, or experience-specific information in designated parameters. Systems may combine all four.
  • A five-stage lifecycle describes memory operations. At each step, memory is queried, read, and integrated before generation, then a write candidate is extracted, the state is updated, and a management operator enforces a budget B through retention, compression, or revision.
  • Memory learning involves three distinct state distributions. The survey distinguishes memory states induced by ground-truth histories, by self-generated AR rollouts, and by perturbed histories, alongside output-level prediction, memory-state, memory-dynamics, and memory-aware objectives.
  • Evaluation must separate memory from general quality. The paper emphasizes distinguishing memory-revealing protocols from general measures of video quality or temporal consistency, and notes that attribution of failures to memory loss is discussed explicitly in the evaluation section.

Methodology in Plain English

This is a survey, so the "method" is conceptual organization rather than experiments. The authors start by writing down AR video generation as a causal, step-by-step rollout over generic visual units — tokens, frames, latents, clips, or chunks — so that discrete-token models and diffusion- or flow-based models can be described in one notation. They then separate the outer autoregressive rollout from the inner generation process (next-token prediction versus a denoising or flow trajectory).

Next, they observe that practical systems approximate the full-history conditional using only a bounded recent window, and introduce a persistent memory state alongside it. They define memory operationally, spell out a lifecycle of query, read, integrate, write, update, and manage operators, and use this formulation to name the ways bounded conditioning fails.

From there the paper builds its taxonomy: one pass organizes prior work by what carries memory (Forms), a second by what must be preserved (Functions), a third by the operational lifecycle (Operations). Separate passes examine how memory is trained under rollouts (Learning) and how it is evaluated (Evaluation). The authors state that the perspectives span three levels — system characterization, system construction, and evidential validation — and that the taxonomy is defined by the memory-bearing object, not by the goal it serves.

Why This Matters

Long-horizon video generation and interactive world models are moving from short clips toward open-ended, streaming, and controllable generation. The survey reframes the field's central bottleneck: the challenge is not temporal length alone, but temporal persistence under bounded historical access. Effort spent purely on local fidelity will not fix identity, layout, motion, semantics, and causal state, because the information needed later may already have left the context.

Real-world applications the paper's framing connects to:

  • Open-ended and streaming long-video generation, where models must keep extending visual sequences while preserving entities, layouts, motions, events, and long-range temporal commitments.
  • Interactive video world modeling and simulation, including action-conditioned generation where the effects of earlier interventions — moving an object, opening a door — must persist after the originating evidence leaves the context.
  • Controllable generation with camera trajectories and control commands, where spatial preservation is stressed by observation-changing controls.
  • Human-centric generation, where the paper notes that limited history often appears as drift in facial identity, body shape, or other instance-defining detail.

Industry relevance: the constraints are practical — accelerator memory, KV-cache storage, and latency — which is why efficiency-oriented strategies such as rolling windows, KV-cache retention, compressed latent states, and retrieval banks dominate current systems. The author list spans academic and industrial labs (including NVIDIA), and the paper maintains a public repository for community contributions, indicating the topic is an active engineering concern as well as a research one.

Future Directions

  • Composable and resource-aware memory architectures: designs that can combine multiple carrier types while respecting storage, compute, and retrieval budgets.
  • Trustworthy state updating: ensuring that updating and revising memory — especially for state-changing interventions — does not introduce or propagate unreliable world state.
  • Self-rollout learning: closing the gap between teacher-forced training and self-rolled-out inference, and training memory under the memory-state distribution the model actually encounters at deployment.
  • Standardized evaluation: developing memory-revealing protocols that diagnose genuine memory capability separately from general video quality and temporal consistency, including explicit attribution of failure causes.
  • Selective coverage of world-action models: the authors note that closely related world-action models are covered only where their memory mechanisms directly inform AR visual generation, rather than comprehensively — leaving that boundary as an open area.

Target Audience

Researchers and engineers working on video generation, diffusion and flow transformers, world models, and interactive or streaming generation — particularly those designing long-horizon consistency, KV-cache, retrieval, or structured scene-state mechanisms. It is also useful for graduate students entering the area who need a unified vocabulary, since the paper's stated motivation is that "memory" is currently used for mechanisms with substantially different objectives and assumptions, while functionally related mechanisms are described as context, cache, history, or state. Readers seeking a specific quantitative benchmark comparison will not find one here: this is a survey that establishes formulation, taxonomy, and evaluation paradigms rather than reporting new experimental numbers.

Note on sourcing: The paper content provided is truncated, so the detailed subsections covering Functions, Operations, Learning, and Evaluation are only partially available. Where section numbers for those parts appear in the source as incomplete placeholders, this summary refers to them by name rather than by number.

Authors’ abstract

Advances in generative models have improved video fidelity, enabling long-horizon generation, interactive world modeling, and evolving visual environments. Autoregressive (AR) video generation extends visual sequences through causal rollouts. However, a fundamental bottleneck emerges: as the generated sequence expands, practical models must operate under strictly bounded context windows, storage, and computational limits. Consequently, critical historical information, e.g., entity identities, dynamic states, and intervention-induced causal changes, often leaves the active context long before its relevance diminishes. Overcoming this limitation and maintaining temporal persistence constitutes a fundamental memory problem. We present a systematic and comprehensive review of memory mechanisms in AR video generation. We formulate memory operationally as persistent historical information maintained across outer AR steps, capable of influencing future generation even after the originating evidence is no longer locally accessible. Building upon this unified framework, we organize the literature through five complementary perspectives: (I) Forms, the representational carriers of history; (II) Functions, the specific semantic and physical information requiring preservation; (III) Operations, the lifecycle of writing, reading, updating, managing, and integrating memory; (IV) Learning, the optimization of memory behaviors under closed-loop rollouts; and (V) Evaluation, the paradigms for diagnosing genuine memory capabilities. We conclude by synthesizing open challenges, including composable and resource-aware memory architectures, trustworthy state updating, self-rollout learning, and standardized evaluation. By bridging representations, mechanisms, and learning paradigms, this paper establishes a structured foundation for developing reliable, memory-conditioned video generation systems.

Read the original paper