Paper: 2609.02886 Authors: Junchao Huang, Guian Fang, Shengju Qian, Xianghao Kong, Zhuoran Zhao, Wei Huang, Yihua Du, Zixin Zhang, Justin Cui, Yuchao Gu, Yukang Chen, Xinting Hu, Tianyu He, Shaoshuai Shi, Zhuotao Tian, Xin Wang, Mike Zheng Shou, Li Jiang Categories: cs.CV

The Gap

Interactive video world models are trained on aggregated data from many sources and built on many different video backbones, and that combination is harder than it looks. Datasets differ in temporal scale, camera geometry, visual quality, motion, and captioning styles. Video generators use distinct representations and architectures. So two failures compound: naive data mixing produces inconsistent supervision — the same field means different things in different sources — and model-specific implementations make results difficult to reproduce and compare.

This is a reproducibility problem with a specific cause. It is not that the individual contributions are wrong; it is that the coupling between data processing and model architecture means every new combination re-derives its own conventions. The field ends up with results that cannot be compared because the pipelines that produced them are not the same pipeline.

   AGGREGATED DATA  x  MANY BACKBONES
   domain: interactive VIDEO WORLD MODELS

   DATASETS differ in:
     temporal scale | camera geometry | visual quality
     motion | captioning styles

   VIDEO GENERATORS use:
     distinct representations and architectures
        |
        v
   TWO FAILURES COMPOUND
     [1] NAIVE DATA MIXING -> INCONSISTENT SUPERVISION
           the same field means different things across sources
     [2] MODEL-SPECIFIC IMPLEMENTATIONS -> results hard to
           REPRODUCE and hard to COMPARE
        |
        v
   [GAP] a REPRODUCIBILITY problem with a specific cause:
         data processing and model architecture are COUPLED,
         so every new combination re-derives its own conventions
         -> results cannot be compared, because the pipelines
            that produced them are not the same pipeline

The Increment

One sentence: Before this paper, video world-model results could not be compared across backbones; after it, a reconfigurable data engine and a backbone-native adaptation framework instantiate four 5B-33B models under shared interfaces and release the whole pipeline.

Core Mechanism

The contribution is infrastructure, and it is deliberately split along the axis the gap identified — data processing on one side, model adaptation on the other.

A reconfigurable multi-source data engine. It converts 1.43 million canonical clips from 10 datasets into a unified, frame-aligned contract covering visual observations, metric camera geometry, captions, quality metadata, selection decisions, and provenance. Two words carry the design. Frame-aligned means the temporal convention is fixed across sources, which is what makes mixing consistent. And the engine decouples source processing from mixture construction — so a new dataset is added by processing it into the contract, not by rewriting the mixer, and a new mixture is a configuration rather than a code change.

A backbone-native adaptation framework. Under shared camera-conditioning, training, and inference interfaces, the work instantiates four models of 5B-33B based on Wan2.2, LTX-2.5 and MiniMax-H3, while preserving their native representations and objectives. That last clause is the important design choice: rather than forcing all backbones into one representation — which is what makes comparison impossible in the first place — the framework keeps each backbone native and unifies the interfaces instead. Comparison then happens at the interface, where it is meaningful.

A unified three-stage recipe: bidirectional adaptation, teacher-forced autoregressive initialization, and distribution matching distillation. The stages correspond to a recognisable progression — adapt the model to the data, give it a usable autoregressive starting point, then distil toward efficient sampling.

Then the result that explains why the infrastructure matters. The resulting causal models enable real-time interaction over rollouts ranging from minutes to hours, having been trained on only 5-second sequences. So the horizon capability is not bought with long training clips; it comes from the recipe and the causal formulation. That is the kind of finding a shared pipeline makes checkable, since the same recipe was applied across four backbones of different sizes and origins.

And the paper releases the data, pipeline, recipes, weights and framework — which is the necessary final step for a contribution whose argument is that reproducibility was the problem.

   DESIGN: SPLIT ALONG THE AXIS THE GAP IDENTIFIED

   [DATA SIDE] RECONFIGURABLE MULTI-SOURCE DATA ENGINE
     1.43M canonical clips from 10 datasets
       -> a UNIFIED, FRAME-ALIGNED CONTRACT covering:
            visual observations
            metric camera geometry
            captions
            quality metadata
            selection decisions
            provenance
     KEY: DECOUPLES source processing from mixture construction
       -> adding a dataset = processing it into the contract
       -> a new mixture = a CONFIGURATION, not a code change

   [MODEL SIDE] BACKBONE-NATIVE ADAPTATION FRAMEWORK
     under SHARED camera-conditioning / training / inference
     interfaces, instantiate FOUR models, 5B-33B, based on
       Wan2.2 | LTX-2.5 | MiniMax-H3
     while PRESERVING their NATIVE representations and objectives
       <- crucially, backbones are NOT forced into one representation
          (that is exactly what makes comparison impossible)
       -> unify the INTERFACES, compare at the interface

   UNIFIED THREE-STAGE RECIPE
     bidirectional adaptation
     teacher-forced autoregressive initialization
     distribution matching distillation

   RESULT
     causal models enable REAL-TIME INTERACTION over rollouts
       from MINUTES to HOURS
     after training on ONLY 5-SECOND sequences
       -> horizon capability comes from the recipe and the causal
          formulation, not from long training clips

   RELEASED: data, pipeline, recipes, weights, framework

Think of it as a standards body for shipping containers rather than a better ship. Individual shipping lines were already good at their own routes. The problem was that a container packed for one line could not be loaded onto another, so every combination needed its own packing rules and nothing could be compared across carriers. The fix is a contract — one frame, one set of fields, decided once — plus keeping each carrier’s own vessel rather than forcing everyone onto the same hull. The payoff is that a route’s performance becomes measurable against another’s, because the cargo and the interfaces are the same.

Key Concepts

  • The frame-aligned contract: a single specification covering observations, metric camera geometry, captions, quality metadata, selection decisions and provenance. Fixing the field meanings across sources is what makes mixture construction consistent, and provenance makes the result auditable.
  • Decoupling source processing from mixture construction: adding data means processing into the contract, and changing a mixture means changing a configuration. It is what stops each new dataset from requiring a pipeline rewrite.
  • Backbone-native adaptation: preserving each backbone’s representations and objectives while unifying interfaces. Forcing a single representation would have reproduced the comparability failure, so the design choice is the opposite one.
  • Shared interfaces as the comparison surface: camera conditioning, training and inference specified once. It relocates comparison from “our pipeline versus yours” to a shared protocol, which is the precondition for reproducible numbers.
  • Horizon from recipe, not from data: minute-to-hour rollouts after training on 5-second clips. It is a capability finding that the shared pipeline makes checkable across four backbones of different sizes.

Framework Shift

Before (per-combination pipelines):
  mix heterogeneous datasets naively -> inconsistent supervision
  implement per backbone -> results not comparable
  -> each new combination re-derives its own conventions
  -> the field cannot compare numbers

After (contract plus shared interfaces):
  1.43M clips -> frame-aligned contract, source processing
    decoupled from mixture construction
  four 5B-33B backbones kept NATIVE, adapted to SHARED interfaces
  three-stage recipe applied uniformly
  -> minutes-to-hours rollouts after 5-second training clips
  -> data, pipeline, recipes, weights, framework released

From results that could not be compared because every combination had its own pipeline, to a shared contract and interface set under which four different backbones are measured alike, the core shift is that reproducibility in this area is an engineering artifact built from data contracts and interface discipline rather than a property that follows from good models.

Expert Assessment

Problem choice: Excellent, and the framing is unusually clear-eyed. Treating the coupling between data processing and model architecture as the root cause — rather than as an inconvenience — is what makes the fix structural instead of per-project, and the release of the whole stack is the right conclusion for a reproducibility argument.

Method maturity: The split of the contribution along the gap’s own axis is what gives the design its logic: a data engine on one side to make mixing consistent, an adaptation framework on the other to make comparison possible. The decision to keep backbones native and unify interfaces rather than force a common representation is the substantive engineering judgement, and it is exactly the choice that distinguishes this from a framework that quietly standardises away the differences it was meant to study.

Experimental integrity: The breadth is the evidence — ten datasets, 1.43M clips, and four backbones spanning 5B to 33B from three different families, so the recipe’s uniformity is demonstrated rather than asserted. The 5-second-training to multi-hour-rollout result is striking and is the kind of claim a shared pipeline makes checkable, since the same recipe produced it across four backbones. The limitation is that all four backbones are video-generation architectures, so the contract’s generality for other model classes is untested, and the paper is careful to scope its claims to this domain.

Writing quality: The abstract lists the sources of heterogeneity concretely — temporal scale, camera geometry, visual quality, motion, captioning styles — which makes the problem tangible rather than abstract, and the contract’s fields are enumerated so a reader can see what unification required. Because the practical value is in adoption, a short section on what it costs to bring a new dataset or a new backbone into the contract would help others judge whether they can use it.

Verdict: strong accept — it identifies a structural reproducibility failure in video world-model research, fixes it with a data contract and interface discipline, and demonstrates the result across four backbones from three families.

Takeaways

  • When results cannot be compared, look for coupling between data processing and model code. Unifying interfaces while keeping models native is usually the fix that preserves comparability.
  • Define the data contract explicitly, including provenance. Frame alignment makes mixing consistent; provenance makes the result auditable.
  • Decouple ingestion from mixture construction. Adding a dataset should mean conforming it to the contract, not rewriting the pipeline.
  • Check whether a capability comes from data or from the recipe. Multi-hour rollouts from 5-second training clips is a recipe result, and it only becomes visible when one recipe is applied across many backbones.

论文: 2609.02886 作者: Junchao Huang, Guian Fang, Shengju Qian, Xianghao Kong, Zhuoran Zhao, Wei Huang, Yihua Du, Zixin Zhang, Justin Cui, Yuchao Gu, Yukang Chen, Xinting Hu, Tianyu He, Shaoshuai Shi, Zhuotao Tian, Xin Wang, Mike Zheng Shou, Li Jiang 分类: cs.CV

缺口

交互式视频世界模型,是用来自许多来源的聚合数据训练的,又建立在许多不同的视频主干之上,而这个组合比它看上去更难。 数据集在时间尺度、相机几何、视觉质量、运动与标注风格上各不相同。 视频生成器使用彼此不同的表示与架构。 于是两种失效叠加:朴素的数据混合会产生不一致的监督——同一个字段在不同来源里意味着不同的事;而针对特定模型的实现让结果难以复现、难以比较

这是一个原因很具体的可复现性问题。 不是各项单独贡献有错,而是数据处理与模型架构之间的耦合,意味着每一种新组合都要重新推导自己的一套约定。结果是:这个领域拿到的是”无法比较的结果”,因为产生它们的流水线并不是同一条流水线

   聚合数据  x  众多主干
   领域:交互式「视频世界模型」

   数据集在以下方面不同:
     时间尺度 | 相机几何 | 视觉质量
     运动 | 标注风格

   视频生成器使用:
     彼此不同的表示与架构
        |
        v
   两种失效叠加
     [1] 朴素数据混合 -> 「监督不一致」
           同一字段在不同来源里意味着不同的事
     [2] 针对特定模型的实现 -> 结果难以
           「复现」、难以「比较」
        |
        v
   [缺口] 一个原因具体的「可复现性」问题:
         数据处理与模型架构相互「耦合」,
         于是每种新组合都要重新推导自己的一套约定
         -> 结果无法比较,因为产生它们的流水线
            并不是同一条流水线

增量

一句话: 在这篇论文之前,视频世界模型的结果无法跨主干比较;在这篇论文之后,一个可重配置的数据引擎加上一个”主干原生”的适配框架,在共享接口下实例化了四个 5B~33B 模型,并把整条流水线公开。

核心机制

贡献是基础设施,而且是沿着缺口所指出的那条轴刻意拆开的——一侧是数据处理,另一侧是模型适配。

一个可重配置的多源数据引擎。 它把来自 10 个数据集的 143 万条规范片段转换成一份统一的、帧对齐的契约,覆盖视觉观测、度量相机几何、标注文本、质量元数据、选择决策、以及来源信息。 有两个词承载了设计。“帧对齐”意味着时间约定在各来源之间被固定——这正是让混合变得一致的东西。而该引擎把”来源处理”与”混合物构造”解耦——因此新增一个数据集,是把它处理进契约,而不是重写混合器;而换一个新的数据混合,是一次配置,而不是一次代码改动。

一个”主干原生”的适配框架。共享的相机条件化、训练与推理接口之下,工作实例化了基于 Wan2.2、LTX-2.5 与 MiniMax-H3 的四个 5B~33B 模型,同时保留它们各自原生的表示与目标函数。 最后这句才是关键的设计选择:它没有把所有主干强行塞进同一种表示——而那恰恰是最初让比较变得不可能的事情——而是让每个主干保持原生,改为统一接口。于是比较发生在接口处,而那里才是有意义的地方。

一套统一的三阶段配方双向适配教师强制的自回归初始化、以及分布匹配蒸馏。三个阶段对应一段可辨认的推进——先把模型适配到数据,再给它一个可用的自回归起点,最后蒸馏到高效采样。

接着是解释”为什么这套基础设施要紧”的结果:最终得到的因果模型能够在数分钟到数小时的展开时长上支持实时交互,而它们只用了 5 秒片段来训练。 也就是说,长时域能力不是用长训练片段买来的,而是来自那套配方与因果化的形式。这正是”共享流水线”让事情变得可核查的那类发现——因为同一套配方被应用到了四个规模与出身都不同的主干上。

而论文公开了数据、流水线、配方、权重与框架——对一项”论点就是可复现性”的贡献来说,这是必要的一步。

   设计:沿缺口所指的那条轴拆开

   [数据侧] 可重配置的多源数据引擎
     来自 10 个数据集的 143 万条规范片段
       -> 一份「统一的、帧对齐的契约」,覆盖:
            视觉观测
            度量相机几何
            标注文本
            质量元数据
            选择决策
            来源信息
     关键:「把来源处理与混合物构造解耦」
       -> 新增数据集 = 把它处理进契约
       -> 新的数据混合 = 一次「配置」,不是代码改动

   [模型侧] 主干原生的适配框架
     在「共享的」相机条件化 / 训练 / 推理「接口」下
     实例化「四个」模型,5B~33B,基于
       Wan2.2 | LTX-2.5 | MiniMax-H3
     同时「保留各自原生的表示与目标函数」
       <- 关键是:主干「不」被强行塞进同一种表示
          (那恰恰是让比较不可能的原因)
       -> 统一「接口」,在接口处比较

   统一的三阶段配方
     双向适配
     教师强制的自回归初始化
     分布匹配蒸馏

   结果
     因果模型在「数分钟到数小时」的展开上
       支持「实时交互」
     而只用「5 秒」片段训练
       -> 长时域能力来自配方与因果化形式,
          而不是来自长训练片段

   已公开:数据、流水线、配方、权重、框架

可以用**“做集装箱的标准,而不是做更好的船”来理解这件事: 各家航运公司本来就很擅长自己的航线。问题是:为某一家打包好的集装箱,装不上另一家的船;于是每一种组合都需要自己的一套打包规则,而各家之间的运输表现无从比较**。 解法是一份契约——一种箱型、一套字段,一次定清——同时保留各家自己的船,而不是强迫所有人用同一种船体。 回报是:某条航线的表现终于可以拿去与另一条对比,因为货物与接口都一致了。

关键概念

  • 帧对齐契约: 一份统一规范,覆盖观测、度量相机几何、标注、质量元数据、选择决策与来源。把字段含义在各来源之间固定下来,才让混合物构造一致;而来源信息让结果可被审计。
  • 把来源处理与混合物构造解耦: 加数据就是”处理进契约”,换混合就是”改配置”。正是它阻止了”每加一个数据集就要重写一次流水线”。
  • 主干原生适配: 保留每个主干各自的表示与目标函数,同时统一接口。强行统一表示反而会复现”无法比较”的失效,因此这里的设计选择是相反方向的那一个。
  • 以共享接口作为比较面: 相机条件化、训练与推理只规定一次。它把比较从”我们的流水线 vs 你们的流水线”挪到一个共享协议上——这是数字可复现的前提。
  • 长时域来自配方而非数据: 用 5 秒片段训练,得到分钟到小时的展开。这是共享流水线让”跨四个不同规模主干”变得可核查的一项能力发现。

框架转变

之前(每种组合一条流水线):
  朴素混合异构数据集 -> 监督不一致
  针对每个主干分别实现 -> 结果不可比
  -> 每种新组合都要重新推导自己的约定
  -> 这个领域无法比较数字

之后(契约 + 共享接口):
  143 万片段 -> 帧对齐契约,
    来源处理与混合物构造「解耦」
  四个 5B~33B 主干保持「原生」,适配到「共享接口」
  三阶段配方统一施加
  -> 用 5 秒训练片段得到分钟到小时的展开
  -> 数据、流水线、配方、权重、框架全部公开

从”因为每种组合都有自己的流水线、所以结果无法比较”,转变为”在一套共享契约与接口之下、四种不同主干被同样地测量”,核心转变在于:在这个领域,可复现性是一件由数据契约与接口纪律建成的工程产物,而不是”模型做得好就自然具备”的性质。

专家评审

选题眼光: 极好,而且视角异常清醒。 把”数据处理与模型架构之间的耦合”当作根因、而不是一个麻烦,才让修复是结构性的、而不是逐个项目的;而把整套栈公开,是对一个”可复现性”论证的正确收尾。

方法成熟度: 沿缺口自身那条轴来拆分贡献,是设计具有内在逻辑的原因:一侧是数据引擎,让混合变一致;另一侧是适配框架,让比较变可能。 而”保持主干原生、统一接口、而不是强推一种共同表示”是实质性的工程判断——正是这个选择把它与那些”悄悄把自己本要研究的差异标准化掉”的框架区分开。

实验诚意: 广度就是证据——十个数据集、143 万片段、以及横跨三个家族、从 5B 到 33B 的四个主干,因此配方的”统一适用”是被展示出来的,而不是被声称的。 “用 5 秒训练得到多小时展开”相当醒目,而且是共享流水线让它可以被核查的那类主张——因为同一套配方在四个主干上都产出了它。局限在于四个主干都是视频生成架构,因此该契约对其他模型类别的普适性未被检验,而论文也谨慎地把主张限定在这个领域内。

写作功力: 摘要把异构来源具体列出——时间尺度、相机几何、视觉质量、运动、标注风格——这让问题变得可触,而不是抽象;契约的字段也被逐一枚举,读者能看到”统一”要求了什么。 由于实际价值在于被采纳,若能补一小节讲清”把一个新数据集或一个新主干纳入契约要付多少成本”,会帮助别人判断自己能否用得上。

判决: 强接收(Strong Accept) — 它识别出视频世界模型研究中一处结构性的可复现失败,用一份数据契约与接口纪律修好它,并在来自三个家族的四个主干上演示了结果。

要点总结

  • 当结果无法比较时,去找数据处理与模型代码之间的耦合。统一接口、同时保持模型原生,通常才是既修好问题、又保住可比性的做法。
  • 数据契约显式定义出来,并包含来源信息。帧对齐让混合一致;来源信息让结果可审计。
  • 数据接入与混合物构造解耦。新增一个数据集,应当是让它符合契约,而不是重写流水线。
  • 判断一项能力来自数据还是来自配方。“用 5 秒训练片段得到多小时展开”是一个配方层面的结果,而只有当同一套配方被施加到许多主干上时,它才变得可见。