AIAny
Icon for item

Parallelized Autoregressive Decoding for Omni-Modal Dense Video Captioning

Generates temporally grounded captions for dense multi-event videos by restructuring autoregressive token dependencies to enable lossless parallel decoding; introduces a latent global planning module and event-factorized parallel decoding to improve grounding accuracy and achieve large decoding speedups.

Introduction

Most dense video captioning systems rely on strict token-by-token autoregressive decoding, which becomes a bottleneck as videos grow longer and contain more events. This paper's key insight is that tokens across distinct temporal events often exhibit weak dependencies, so the causal graph can be restructured: preserve sequential decoding within events but decode across events in parallel, guided by compact event-level plans.

Key Findings
  • Parallelized autoregressive pipeline: a two-stage approach first autoregressively generates compact global event tokens to capture inter-event causality, then decodes event-conditioned token subchains in parallel while retaining intra-event sequential coherence. This keeps global causality without full token-level serialization.
  • Empirical gains: matches or surpasses recent SOTA in temporally grounded captioning metrics while delivering substantial inference speedups (reported ≈3.7–3.8× wall-time decoding speedup versus a competitive omni-modal LLM baseline) and strong generalization across related temporal grounding tasks.
  • Lightweight implementation choices: built on a 3B omni-LLM backbone with targeted training (LoRA on subset data) and modular audio–visual alignment, demonstrating that model-scale reduction can be offset by architectural decoding changes.
Who it's for and trade-offs

Great fit if you need denser, temporally grounded natural-language summaries of long videos where decoding latency matters (e.g., large-batch offline captioning, event retrieval pipelines). Look elsewhere if your application demands strictly online token streaming with minimal buffering across events or if extreme simplicity matters—restructuring the dependency graph and training the latent planner adds design complexity and some supervision needs.

Method snapshot

The method hinges on (1) a latent global planning mechanism that autoregressively emits a small sequence of event tokens G^1...G^K to encode event-level ordering and aggregated AV semantics, and (2) an event-factorized parallel decoder that blocks cross-event token attention but grants all subchains access to the shared global tokens, enabling independent parallel generation of per-event captions while preserving inter-event context.

Information

  • Websitearxiv.org
  • OrganizationsNational University of Singapore
  • AuthorsWenzheng Zeng, Siyi Jiao, Chen Gao, Hwee Tou Ng, Mike Zheng Shou
  • Published date2026/07/03

More Items

Personalizes subject-driven videos to preserve human identity and accurate human–object interactions by integrating multimodal references and MLLM-derived semantics. Introduces global multimodal guidance in self-attention and modality-reference embeddings to align MLLM features with VAE tokens, supporting both inter- and intra-subject inputs (e.g., OCR, multi-view).

Evaluates whether video models reason according to physical laws by treating generated videos as visible reasoning traces and using a three-stage Perception–Formulation–Deduction protocol. Includes Orchard (400 mechanics videos), chain-of-frames prompting on annotated first frames, and a hybrid MLLM-plus-objective scoring suite for stage-resolved diagnostics.

Predicts variable-cardinality sets of evidence intervals in videos to temporally ground queries using multimodal large language models. Combines caption-derived multi-span supervision, a temporal Wasserstein matching-free reward, and temporal IoU, yielding strong mIoU gains across multiple benchmarks.