Paper: 2607.08763 Authors: Xinyan Chen, Ziyu Guo, Renrui Zhang, Dongzhi Jiang, Hongsheng Li Categories: cs.CV, cs.AI

The Gap

Prior work has shown that Large Language Models (LLMs) can reason using a step-by-step textual “Chain-of-Thought” (CoT). Separately, video generation models have become excellent at predicting plausible future frames from a starting image. The gap is that video generation models are trained on general video prediction, not on explicit reasoning. They can show what happens next, but they aren’t explicitly trained to show the logical steps of solving a problem visually. This paper asks: can we teach a video model to generate a sequence of frames where each frame is a logical reasoning step, forming a “Chain-of-Frame” (CoF)?

Problem: Video generators are trained for plausibility, not logical reasoning.
 |
 v
Assumption: A temporal sequence of frames can represent a reasoning chain.
 |
 v
Method: Create a reasoning video dataset (OpenCoF-17K) and fine-tune a video model (Wan-CoF).
 |
 v
Evidence: Wan-CoF outperforms its base model on 4 reasoning benchmarks.
 |
 v
Conclusion: Explicit temporal supervision and dedicated reasoning tokens improve "Chain-of-Frame" behavior.

The Increment

One sentence: Before this paper, video generation was a tool for visual prediction; after, it’s a potential medium for multi-step visual reasoning.

Core Mechanism

The framework operates in two main stages. First, they construct the OpenCoF-17K dataset. This isn’t just a collection of videos; it’s a dataset of “reasoning videos.” For each of 11 task families (like math, puzzles, logic), they provide: an initial frame (the problem), a final frame (the answer), and a sequence of intermediate frames that represent the step-by-step reasoning process. This teaches the model that a video isn’t just motion, but a logical narrative.

Second, they take a powerful existing video generation model, Wan2.2-I2V-A14B, and fine-tune it on this reasoning data, creating Wan-CoF. The critical innovation happens here. They don’t just retrain the whole model; they introduce special reasoning tokens. There are two types:

  1. Visual Reasoning Tokens: These are embedded into the model’s latent space and are optimized to capture low-level, spatial details needed for the reasoning steps (e.g., the exact pixel change when drawing a line in a geometry proof).
  2. Textual Reasoning Tokens: These are high-level semantic tokens, almost like a hidden script, that guide the overall logical flow and temporal structure of the video (e.g., “now apply the Pythagorean theorem”).

During generation, these tokens are injected at various points in the model’s processing (at different denoising steps and spatial locations), helping to coordinate the visual output into a coherent reasoning chain.

Input: [Initial Frame (Problem)] + [Task Instruction]
 |
 v
[Wan-CoF Model]
 |-- Embeds input into latent space.
 |-- Inserts [Visual Reasoning Tokens] for spatial detail.
 |-- Inserts [Textual Reasoning Tokens] for semantic flow.
 |-- Iteratively denoises through decoder layers.
 |
 v
Output: [Frame 1 (Step 1)] -> [Frame 2 (Step 2)] -> ... -> [Frame N (Answer)]

Think of it like a detective team solving a case on a whiteboard.

  • The OpenCoF-17K dataset is the archive of past cases, each with a clear step-by-step evidence trail.
  • The base Wan model is a talented artist who can draw any scene you describe, but has never solved a case.
  • Wan-CoF is that artist *trained using the case archive.
  • The Visual Reasoning Tokens are the specific forensic tools the artist uses (magnifying glass for details, red string for connections).
  • The Textual Reasoning Tokens are the detective’s internal monologue and logic (“the suspect couldn’t have been here… therefore we check the alibi…”). During the investigation (generation), the artist uses both the tools and the monologue to draw each evidence board update (frame), leading logically to the solution (final frame).

Key Concepts

  • Chain-of-Frame (CoF): Imagine explaining how to solve a Rubik’s cube. In text (CoT), you’d write: “Rotate the top face clockwise, then the right face counterclockwise…” In CoF, you’d show a video where each frame is the cube *after one move, with the sequence of frames being the complete solution. The reasoning isn’t described; it’s demonstrated across time. This paper’s core bet is that vision models can learn this demonstration.

Framework Shift

Before (mainstream approach):          After (this paper):
Text Chain-of-Thought:                 Visual Chain-of-Frame:
[Question] -> [LLM] -> [Text Steps] -> [Answer]
 |                                      |
 v                                      v
"Let's think step by step"             "Let's see it step by step"
 |                                      |
 v                                      v
[Word1, Word2, ...]                    [Frame1, Frame2, ...]

From reasoning in language to reasoning in vision, the core shift is representing intermediate logical states as images, not words.

Expert Assessment

Problem choice: Excellent. This is a real and timely gap. As multimodal models get stronger, the question of how they *reason visually is fundamental. Moving beyond text CoT is a natural and important frontier.

Method maturity: Clever insight, but the implementation is somewhat brute-force. Creating a specialized dataset and fine-tuning a massive model is effective but costly. The reasoning token mechanism is the clever part, providing an architectural handle for the problem. Simpler approaches (like just prompting models) clearly fail, so this heavier lift seems justified.

Experimental integrity: The gains over the strong baseline are convincing (significant improvements on 4 benchmarks). However, the baselines are fair: they compare against the exact same model before fine-tuning. A slight red flag: the paper explores more advanced token mechanisms (visual + textual) empirively but the primary results are from the fine-tuned model alone. The ablations are there, but more stress-testing would be ideal.

Writing quality: Very clear and well-structured. The “gap -> solution -> exploration” flow is logical. The methodology section could be more detailed on how the OpenCoF-17K data was curated and annotated – that process is the foundation of the work. Strengthening this section would elevate the paper’s rigor.

Verdict: strong accept — It introduces a compelling new paradigm (CoF) with a concrete first-step framework (OpenCoF) and demonstrates its viability, opening a clear path for future work.

Takeaways

  1. Video as a Reasoning Medium: Stop thinking of video generation as just animation. It can be a structured, temporally-grounded reasoning process. This framing is highly transferable to robotics planning, procedural task tutorials, and scientific simulation.
  2. Data is the New Bottleneck for Reasoning: The key enabling factor is the OpenCoF-17K dataset. The takeaway is that to build new capabilities, you often need to engineer new datasets that explicitly supervise that capability, not just scrape more generic data.
  3. Token Specialization in Multimodal Models: The idea of injecting dedicated tokens (visual, textual) to steer different aspects of a model’s generation process is powerful. It’s a form of soft, learnable control that could be applied to other tasks like image editing or 3D generation to separate structure from texture or semantics from appearance.

论文: 2607.08763 作者: Xinyan Chen, Ziyu Guo, Renrui Zhang, Dongzhi Jiang, Hongsheng Li 分类: cs.CV, cs.AI

缺口

此前的研究已经表明,大语言模型(LLM)可以通过一步步的文字“思维链”(CoT)进行推理。 另一方面,视频生成模型已经非常擅长从起始图像预测可能的未来帧。 两者之间的缺口在于:视频生成模型是在通用视频预测上训练的,而非在显式推理上。 它们能展示“接下来会发生什么”,但并未被专门训练去展示解决问题的“逻辑步骤”。 本文提出的问题是:能否教会视频模型生成一个帧序列,其中每一帧都是一个逻辑推理步骤,从而形成一个“帧链”(CoF)?

问题:视频生成器为“合理性”训练,而非逻辑推理。
 |
 v
假设:帧的时间序列可以表示一个推理链。
 |
 v
方法:构建推理视频数据集(OpenCoF-17K)并微调视频模型(Wan-CoF)。
 |
 v
证据:Wan-CoF 在4个推理基准上超越其基础模型。
 |
 v
结论:显式的时间监督和专用的推理令牌能改善“帧链”行为。

增量

一句话: 在这篇论文之前,视频生成是视觉预测的工具;之后,它成为多步视觉推理的潜在媒介。

核心机制

该框架主要分两步运作。 首先,他们构建了 OpenCoF-17K 数据集。这不仅仅是一堆视频;它是一个“推理视频”数据集。 对于11个任务类别(如数学、谜题、逻辑),每个样本都包含:一帧初始图像(问题)、一帧最终图像(答案),以及一系列中间帧,这些中间帧代表了解决问题的逐步推理过程。 这教会模型,视频不只是运动,更是一个逻辑叙事。

其次,他们将一个强大的现有视频生成模型 Wan2.2-I2V-A14B 在这个推理数据上进行微调,创建了 Wan-CoF。 关键创新发生在这里。他们不只是重新训练整个模型;而是引入了特殊的推理令牌。有两种类型:

  1. 视觉推理令牌:嵌入模型的潜在空间,专门优化以捕捉推理步骤所需的低级空间细节(例如,在几何证明中画一条线时像素的精确变化)。
  2. 文本推理令牌:高级语义令牌,如同隐藏的脚本,引导视频的整体逻辑流和时间结构(例如,“现在应用勾股定理”)。 在生成过程中,这些令牌被注入到模型处理的不同位置(在不同的去噪步骤和空间位置),帮助协调视觉输出,形成连贯的推理链。
输入:[初始帧(问题)] + [任务指令]
 |
 v
[Wan-CoF 模型]
 |-- 将输入嵌入潜在空间。
 |-- 插入[视觉推理令牌]以处理空间细节。
 |-- 插入[文本推理令牌]以引导语义流。
 |-- 通过解码器层迭代去噪。
 |
 v
输出:[帧1(步骤1)] -> [帧2(步骤2)] -> ... -> [帧N(答案)]

可以把这个过程想象成一个侦探团队在白板上破解案件

  • OpenCoF-17K 数据集是历史案例档案,每个案例都有清晰的、分步骤的证据链。
  • 基础的 Wan 模型是一位才华横溢的画家,能画出任何你描述的场景,但从未破过案。
  • Wan-CoF是这位画家使用案例档案**训练*后的结果。
  • 视觉推理令牌是侦探使用的特定取证工具(放大镜看细节,红线连线索)。
  • 文本推理令牌是侦探的内心独白和逻辑推理(“嫌疑人不可能在这里…因此我们要查证不在场证明…”)。 在调查(生成)过程中,画家同时使用工具和独白来绘制每一块证据板的更新(每一帧),从而逻辑清晰地导向最终答案(最后一帧)。

关键概念

  • 帧链(CoF):想象一下解释如何解魔方。在文字思维链中,你会写:“顺时针转顶层,然后逆时针转右层…”在帧链中,你会展示一个视频,每一帧是完成一个动作**之后的魔方状态,整个帧序列就是完整的解决方案。推理不是被描述的,而是跨时间被演示*出来的。本文的核心赌注是,视觉模型可以学会这种演示。

框架转变

之前(主流方法):                  之后(本文方法):
文字思维链:                        视觉帧链:
[问题] -> [LLM] -> [文字步骤] -> [答案]
 |                                    |
 v                                    v
“让我们一步步思考”                  “让我们一步步看”
 |                                    |
 v                                    v
[词1, 词2, ...]                     [帧1, 帧2, ...]

用语言推理用视觉推理,核心转变是将中间逻辑状态表示为图像,而非文字。

专家评审

选题眼光: 优秀。这是一个真实且及时的缺口。 随着多模态模型日益强大,它们如何进行视觉推理是一个根本问题。 超越文字思维链是自然而重要的前沿领域。

方法成熟度: 巧妙的洞察,但实现上有些“大力出奇迹”的味道。 构建专用数据集并微调一个巨大模型,有效但成本高昂。 推理令牌机制是其中最巧妙的部分,为解决这个问题提供了架构上的抓手。 更简单的方法(如直接提示模型)显然会失败,因此这种更重的投入看起来是合理的。

实验诚意: 与强大基线的对比收益是令人信服的(在4个基准上显著提升)。 而且基线是公平的:他们与微调前的同一模型进行比较。 一个小小的警示是:论文探索了更高级的令牌机制(视觉+文本),但主要结果仅来自微调后的模型。 消融实验是有的,但更严苛的测试会更理想。

写作功力: 非常清晰,结构良好。“缺口 -> 解决方案 -> 探索”的逻辑流程很顺畅。 方法论部分关于 OpenCoF-17K 数据如何策划和标注的细节可以更详尽——这个过程是整个工作的基础。 强化这一部分会提升论文的严谨性。

判决: 强接收 — 它引入了一个引人注目的新范式(CoF),并提供了一个具体的第一步框架(OpenCoF),证明了其可行性,为未来工作开辟了清晰的道路。

要点总结

  1. 视频作为推理媒介:别再认为视频生成只是动画了。它可以是一个结构化的、具有时间基础的推理过程。这个思维框架可高度迁移至机器人规划、分步骤任务教程和科学模拟领域。
  2. 数据是推理的新瓶颈:关键促成因素是 OpenCoF-17K 数据集。其启示在于,要构建新能力,往往需要设计能够显式监督该能力的新数据集,而不仅仅是抓取更多通用数据。
  3. 多模态模型中的令牌专业化:注入专用令牌(视觉、文本)来引导模型生成过程的不同方面的想法非常强大。这是一种软性的、可学习的控制形式,可以应用于图像编辑或3D生成等其他任务,以将结构与纹理、语义与外观分离开来。