Paper: 2607.07675 Authors: Shuailei Ma, Jiaqi Liao, Xinyang Wang, Jingjing Wang, Chaoran Feng, Zijing Hu, Chong Bao, Zichen Xi, Yuqi Gan, Weisen Wang Categories: cs.CV
The Gap
Here’s the situation: video generation models have gotten impressively good at creating photorealistic content. Sora, Kling, and their cousins can produce stunning clips of people walking, objects moving, and scenes unfolding. But when you try to use these models for robot control—predicting what happens when a robot arm reaches for a cup, or when a robot navigates around furniture—they stumble badly. Why? Because they were optimized for the wrong things.
Prior video models are trained with rewards focused on visual aesthetics (does it look pretty?), prompt-following (did it match the text?), and motion consistency (are the frames smooth?). None of these capture what matters for embodied intelligence: physical realism (does gravity work right?), task completion (did the robot succeed?), and computational efficiency (can we run this in real-time on a robot?). The architecture compounds the problem—dense transformer models are expensive to run at inference time, which is a deal-breaker for real-time robotics applications.
Problem
|
v
Video models optimized for Embodied agents need:
content creation physical realism, efficiency,
(creativity > realism > speed) task completion
| |
v v
Domain mismatch: existing [Gap] No video foundation
models can't transfer to model designed specifically
robot control for embodied intelligence
|
v
Assumption
|
v
MoE architecture can decouple Specialized data + physical
capacity from compute cost, rewards can teach world
enabling efficient inference dynamics beyond aesthetics
|
v
Method
|
v
LingBot-Video: DiT + MoE + Multi-dimensional reward
robot-augmented data profiling system for physical alignment
|
v
Evidence
|
v
Competitive video generation + Efficient inference via
better physical understanding sparse expert activation
|
v
Conclusion
|
v
First open-source MoE video Bridges digital creativity
foundation model for embodied and physical actuation
intelligence
The Increment
One sentence: Before this paper, the video foundation model world and the embodied intelligence world were separate neighborhoods with no bridge between them; after LingBot-Video, there’s a purpose-built crossing designed from the ground up for robots, not tourists.
Core Mechanism
LingBot-Video builds on a Diffusion Transformer (DiT) backbone—a model that learns to generate video by iteratively removing noise from random frames. The key architectural twist is replacing the standard dense feed-forward layers with a Mixture-of-Experts (MoE) structure. In a dense model, every token in the video passes through every parameter in every layer. In MoE, a lightweight router network examines each token and sends it to only a small subset of specialized expert sub-networks. This means you can have a massive total parameter count (high capacity) while each inference step only activates a fraction of them (low compute).
The data pipeline is where the second innovation lives. Rather than training purely on internet video, the authors built a “data profiling engine” that systematically augments standard footage with robot-centric content: manipulation sequences (arms grasping and placing objects), navigation clips (robots moving through spaces), and egocentric views (what a robot’s camera actually sees). This isn’t just adding more data—it’s curating a curriculum that teaches the model about actions, cause-and-effect, and spatial reasoning from a robot’s perspective.
The training objective goes beyond standard video generation losses. They develop a multi-dimensional reward system that scores generated videos on physical rationality (do objects behave as they should under gravity and contact?) and task completion (if the video shows a robot picking up a cup, does the cup actually end up in the gripper?). These rewards are combined with the usual aesthetics and motion consistency signals, creating a richer feedback landscape.
Input Video Sequence
|
v
+---------------------+
| DiT Backbone |
| (Diffusion Process) |
+---------------------+
|
v
+---------------------+
| MoE Layer |
| +---Router---------+|
| | token -> experts ||
| +------------------+|
| | +-----+ +-----+ ||
| | |Exp 1| |Exp 2| ||
| | +-----+ +-----+ ||
| | +-----+ +-----+ ||
| | |Exp 3| |Exp N| ||
| | +-----+ +-----+ ||
| +------------------+|
+---------------------+
|
v
+---------------------+
| Multi-Dim Reward |
| - Physical realism |
| - Task completion |
| - Aesthetics |
| - Motion consistency|
+---------------------+
|
v
Generated Video
(embodied-ready)
Now, imagine you’re running a specialized hospital. In the old model (dense video generation), you have one general practitioner who sees every patient—coughs, broken bones, heart attacks, everything. They’re decent at most things but slow, and they miss nuances in specialized cases. The hospital (model) is expensive to run because that one doctor handles everything.
LingBot-Video reorganizes the hospital. There’s now a triage nurse at the entrance (the router)—she quickly assesses each patient (each video token) and routes them to the right specialist: an orthopedist for bone issues (manipulation tasks), a cardiologist for heart problems (navigation tasks), an ophthalmologist for eye issues (egocentric vision). Each specialist (expert) only handles their domain, so the hospital can have many specialists without requiring all of them to see every patient. The hospital is cheaper to run per patient visit, yet better at each specific condition.
The data profiling engine is like the hospital’s training program. Instead of only studying generic medical textbooks (internet videos), the new curriculum includes hands-on rotations in the emergency room (robot manipulation scenarios), the physical therapy ward (navigation), and the outpatient clinic where patients describe their own symptoms (egocentric perspectives). Doctors trained this way understand real patient needs, not just textbook cases.
The multi-dimensional reward system is the hospital’s quality review board. The old board only checked: “Did the waiting room look nice?” (aesthetics) and “Did we follow the patient’s appointment request?” (prompt-following). The new board also asks: “Did the treatment make medical sense?” (physical rationality) and “Did the patient actually get better?” (task completion). These harder questions force the hospital to improve in ways that matter for real outcomes.
Key Concepts
-
Mixture-of-Experts (MoE): Think of it like a company with many departments. In a traditional company (dense model), every employee sits in one big open-plan office and every task passes through everyone—it’s expensive and slow. In an MoE company, there’s a dispatcher (router) who reads each task and sends it to the right department (expert). The marketing team handles ads, engineering handles code, sales handles clients. Each task only uses a few specialists, so the company can have hundreds of employees (high capacity) while each task only involves five people (low compute). The total knowledge is huge, but the cost per task is small. For example, if your video shows a robot arm, the router sends those tokens to manipulation experts; if it shows a hallway, navigation experts get activated.
-
Data Profiling for Embodiment: Standard video models train on YouTube-style content—cinematic shots, vlogs, nature documentaries. That’s like learning to cook by watching cooking shows on TV: you learn plating and presentation, but not how it feels to actually chop an onion. Data profiling deliberately adds “first-person cooking experience” footage—robot cameras showing what the gripper sees when reaching for objects, what the world looks like from a robot’s navigation perspective, how objects respond to physical contact. This isn’t just more data; it’s qualitatively different data that teaches the model about actions and consequences, not just appearances.
-
Physical Reward Alignment: Most video models are rewarded for looking good—like a student graded only on handwriting neatness. Physical reward alignment adds grading criteria that matter: “Does gravity pull things down?”, “When the robot pushes a block, does the block move?”, “Is the motion physically achievable?” It’s like grading the student on both handwriting AND whether their math answers are correct. The model learns that a video of a floating coffee cup is wrong, even if it’s beautifully rendered.
Framework Shift
Before (mainstream approach): After (this paper):
+--------------------+ +--------------------+
| Dense Video Model | | MoE Video Model |
| (trained on web | | (robot-augmented |
| video, optimized | | data, physical |
| for aesthetics) | | rewards) |
+--------------------+ +--------------------+
| |
v v
+--------------------+ +--------------------+
| Try to fine-tune | | Foundation model |
| for robotics | | built for |
| (domain mismatch) | | embodiment from |
+--------------------+ | day one |
| +--------------------+
v |
Poor physical v
realism, slow Better physical
inference understanding,
efficient MoE
inference
From “repurposing content-creation video models for robotics” to “building a video foundation model explicitly for embodied intelligence from architecture to data to rewards,” the core shift is treating robotics not as a downstream fine-tuning task but as a first-class design constraint.
Expert Assessment
Problem choice: This is a genuine and well-timed gap. The robotics community has been borrowing video models from the generative AI world and struggling with the domain mismatch. Nobody has systematically built a video foundation model with embodied intelligence as the primary target. The question isn’t whether this gap is real—it clearly is—but whether the problem is mature enough that a foundation model is the right approach, or whether smaller task-specific solutions would be more practical at this stage.
Method maturity: The three-pillar approach (architecture, data, training) is methodologically sound but leans more on engineering scale than algorithmic novelty. MoE is well-understood from language models (Mixtral, Switch Transformers); applying it to DiT for video is incremental but sensible. The data profiling engine is likely the most impactful contribution—curating the right training distribution often matters more than architecture tweaks. The multi-dimensional reward system is interesting but the paper would benefit from ablations showing which reward dimensions actually matter. As for simpler approaches: someone could argue that simply training a dense model on better-curated data might achieve similar results with less complexity, but the efficiency argument for MoE is compelling for real-time robotics.
Experimental integrity: The evaluations validate the model as a “video foundation model” with standard metrics, but the benchmarks for embodied intelligence are less clear-cut. How well does physical rationality actually transfer to downstream robot tasks? The paper claims “comprehensive evaluations” but the real test would be deploying this model in actual robot control loops—something that’s mentioned but not deeply demonstrated. The comparison baselines need scrutiny: are they comparing against models of similar scale, or are they beating smaller models with brute-force size?
Writing quality: The abstract is dense but clear. The main weakness is likely the experimental section—papers like this often front-load architectural details and leave the evaluation feeling thin. The claim of being the “inaugural large-scale, open-source MoE video foundation model” is bold and verifiable, which is good. A rewrite of the related work section could elevate the paper by more precisely positioning against prior video-for-robotics work rather than just video generation generally.
Verdict: weak accept — The problem is real, the approach is systematic, and the open-source contribution has value, but the direct evidence for embodied intelligence transfer is thinner than the architecture effort warrants.
Takeaways
Three concrete ideas you can steal:
-
MoE for video is viable and practical: If you’re building any video model that needs to run efficiently (not just train efficiently), the MoE routing approach transfers directly. The router-and-experts pattern lets you scale capacity without scaling inference cost linearly. Even outside robotics, this applies to any real-time video application.
-
Data curation as a first-class engineering problem: The “data profiling engine” concept—systematically augmenting your training distribution with domain-specific footage rather than hoping the model generalizes—is a portable idea. If you’re training a model for medical imaging, don’t just use ImageNet; curate medical-specific data pipelines. The engineering of *what data to show the model often matters more than the architecture it’s shown through.
-
Multi-dimensional reward design: The idea of expanding your loss function beyond the obvious metrics (like aesthetics) to include domain-relevant signals (like physical plausibility) is broadly useful. If you’re training a code generation model, don’t just reward “looks like code”—add rewards for “actually compiles” and “passes tests.” The pattern of layering task-specific rewards on top of generic ones transfers to many domains.
论文: 2607.07675 作者: Shuailei Ma, Jiaqi Liao, Xinyang Wang, Jingjing Wang, Chaoran Feng, Zijing Hu, Chong Bao, Zichen Xi, Yuqi Gan, Weisen Wang 分类: cs.CV
缺口
视频生成模型这几年进步飞快——Sora、Kling们能生成令人惊叹的逼真视频。 但一旦把它们用到机器人控制上,问题就暴露了:预测机械臂抓杯子的结果、或者让机器人绕过家具导航,这些模型往往力不从心。 根本原因是训练目标错位。
此前的视频模型优化的是视觉美感(好不好看)、文本一致性(有没有跟着提示词走)、运动连贯性(帧与帧之间顺不顺)。 这些指标对内容创作很有用,但对具身智能来说几乎毫无意义。 机器人需要的是物理真实性(重力对不对)、任务完成度(机器人成没成功)、计算效率(能不能实时跑)。 架构上雪上加霜——稠密Transformer模型推理成本高,实时机器人场景根本用不起。
问题
|
v
视频模型为内容创作优化 具身智能需要:
(创意 > 真实 > 效率) 物理真实、效率、任务完成
| |
v v
领域错配:现有模型 [缺口] 没有专门为
无法迁移到机器人控制 具身智能设计的视频基础模型
|
v
假设
|
v
MoE架构可以解耦 专门的数据 + 物理
模型容量与推理计算量 奖励能教会模型
| 理解世界动态
v |
方法 v
| LingBot-Video:
v DiT + MoE + 机器人数据
LingBot-Video:DiT + MoE + 多维奖励系统
机器人视角数据 + 多维奖励
|
v
证据
|
v
视频生成质量有竞争力 + 稀疏专家激活
物理理解能力更强 推理更高效
|
v
结论
|
v
首个开源MoE视频基础模型 连接数字创意
专门面向具身智能 与物理执行
增量
一句话: 在这篇论文之前,视频生成和具身智能是两个互不来往的社区;LingBot-Video之后,有了一座从架构到数据到训练目标都为机器人量身定制的桥梁。
核心机制
LingBot-Video以扩散Transformer(DiT)为骨干——一个通过逐步去噪来生成视频的模型。 关键的架构改动是把标准的稠密前馈层替换成了混合专家(MoE)结构。 在稠密模型中,视频里的每一个token都要穿过每一层的全部参数。 在MoE中,一个轻量级路由器网络会检查每个token,然后只把它送到少数几个专家子网络中去。 这意味着模型总参数量可以很大(高容量),但每次推理只激活其中一小部分(低计算量)。
数据管线是第二个创新点。 团队没有只用互联网视频训练,而是构建了一个”数据剖析引擎”,系统性地用机器人视角的内容来增强标准数据:操作序列(机械臂抓取和放置物体)、导航片段(机器人在空间中移动)、自我中心视角(机器人摄像头实际看到的画面)。 这不是简单地加数据——而是在设计一套课程,从机器人视角教会模型理解动作、因果关系和空间推理。
训练目标也超越了标准的视频生成损失。 他们开发了一套多维奖励系统,对生成的视频在物理合理性(物体是否遵循重力和接触规律?)和任务完成度(如果视频展示机器人拿起杯子,杯子是否真的到了夹爪里?)上打分。 这些奖励和常规的美学、运动一致性信号结合在一起,形成了更丰富的反馈信号。
输入视频序列
|
v
+---------------------+
| DiT骨干 |
| (扩散过程) |
+---------------------+
|
v
+---------------------+
| MoE层 |
| +---路由器---------+|
| | token -> 专家 ||
| +------------------+|
| | +-----+ +-----+ ||
| | |专家1| |专家2| ||
| | +-----+ +-----+ ||
| | +-----+ +-----+ ||
| | |专家3| |专家N| ||
| | +-----+ +-----+ ||
| +------------------+|
+---------------------+
|
v
+---------------------+
| 多维奖励系统 |
| - 物理真实性 |
| - 任务完成度 |
| - 美学质量 |
| - 运动一致性 |
+---------------------+
|
v
生成视频
(面向具身智能)
打个比方,想象你在管理一家专科医院。 旧模式(稠密视频模型)就像只有一位全科医生——什么病人都找他看:骨折、心脏病、眼科、皮肤科,样样都要管。 他什么都会一点,但什么都不精通,而且因为每个病人都要从头问诊,效率极低,运营成本高。
LingBot-Video把医院重新组织了。 门口设了一位分诊护士(路由器)——她快速评估每位病人(每个视频token),然后分流到对的专科:骨科看骨折(操作任务)、心内科看心脏(导航任务)、眼科看眼睛(自我中心视觉)。 每位专科医生(专家)只看自己的领域,所以医院可以有很多专科医生,但每个病人只看几个。 医院运营成本降低了,专科水平反而更高了。
数据剖析引擎就像医院的培训项目。 以前只学通用医学教科书(互联网视频),现在加入了急诊室轮转(机器人操作场景)、康复科实践(导航训练)、门诊第一人称接诊(自我中心视角)。 接受过这种训练的医生,理解真实病人的需求,而不仅仅是教科书案例。
多维奖励系统是医院的质量评审委员会。 旧委员会只检查”候诊室装修好不好看”(美学)和”有没有按预约流程走”(提示词一致性)。 新委员会还问”治疗方案在医学上说得通吗?“(物理合理性)和”病人到底好了没有?“(任务完成度)。 这些更严格的问题迫使医院在真正重要的维度上提升。
关键概念
-
混合专家(MoE): 想象一家大公司,传统模式是所有人挤在一间大办公室,每项任务都要经过所有人——又慢又贵。 MoE模式是有个调度员(路由器),看完每项任务后分派给最合适的部门:市场部管广告、工程部管代码、销售部管客户。 每项任务只用几个人,但公司可以有几百号人。 总知识量很大,每项任务的成本却很低。 具体到视频模型:如果视频里是机械臂,路由器就把那些token送到操作专家;如果是走廊场景,导航专家被激活。 这样模型总参数可以做到万亿级,但推理时只用其中一小部分。
-
面向具身的数据剖析: 标准视频模型在YouTube风格的内容上训练——电影镜头、Vlog、自然纪录片。 这就像只看烹饪节目学做菜:学会了摆盘和镜头感,但不知道切洋葱是什么手感。 数据剖析刻意加入了”第一人称做菜”的素材——机器人摄像头看到的抓取画面、机器人导航时看到的世界、物体被物理接触后的真实反应。 这不是”更多数据”,而是”质的不同”——教会模型理解动作和后果,而不仅仅是外观。
-
物理奖励对齐: 大多数视频模型只因为”好看”被奖励,就像学生只因字迹工整得高分。 物理奖励对齐加入了真正重要的评分标准:“重力有没有让东西往下掉?""机器人推方块,方块动了吗?""这个动作在物理上做得到吗?” 这就像同时给字迹和数学答案正确性打分。 模型会学到:一个漂在空中的咖啡杯是错的,即使它渲染得很漂亮。
框架转变
之前(主流方法): 之后(本文方法):
+--------------------+ +--------------------+
| 稠密视频模型 | | MoE视频模型 |
| (互联网视频训练, | | (机器人数据增强, |
| 优化美学效果) | | 物理奖励信号) |
+--------------------+ +--------------------+
| |
v v
+--------------------+ +--------------------+
| 尝试微调用于 | | 从第一天就为 |
| 机器人领域 | | 具身智能构建的 |
| (存在领域错配) | | 基础模型 |
+--------------------+ +--------------------+
| |
v v
物理真实性差, 物理理解更好,
推理速度慢 MoE推理高效
从”把内容创作视频模型勉强用于机器人”到”从架构、数据、训练目标三个维度为具身智能从零构建视频基础模型”,核心转变是把机器人需求从下游微调任务提升为顶层设计约束。
专家评审
选题眼光: 这是一个真实且时机恰当的缺口。 机器人社区一直在借用生成式AI的视频模型,但领域错配的问题人人心知肚明。 还没有人系统性地把具身智能作为首要目标来构建视频基础模型。 真正的问题不在于缺口是否存在——显然存在——而在于这个领域是否成熟到需要基础模型的程度,还是说小型专用方案在当前阶段更实用。
方法成熟度: 三管齐下的方法论(架构、数据、训练)在工程上是扎实的,但更多依赖规模堆叠而非算法创新。 MoE在语言模型领域(Mixtral、Switch Transformers)已经很成熟;把它用到DiT上做视频是合理的增量贡献,但算不上突破性想法。 数据剖析引擎可能是最有影响力的部分——训练数据分布的选择往往比架构微调更重要。 多维奖励系统有新意,但论文应该做消融实验,展示各个奖励维度分别贡献了多少。 更简单的方案?有人可能会说,单纯用更好的数据训练一个稠密模型,效果可能差不多且更简单,但MoE在推理效率上的优势对实时机器人场景确实有说服力。
实验诚意: 评估部分在”视频基础模型”的标准指标上做得不错,但面向具身智能的基准测试不够清晰。 物理理解能力到底能多好地迁移到下游机器人任务?论文声称”全面评估”,但真正的考验是在实际机器人控制回路中部署——这一点提到了但没有深入展示。 对比基线需要审视:是在跟同等规模的模型比,还是用体量碾压小模型?
写作功力: 摘要信息密度高但表述清晰。 主要弱点可能在实验部分——这类论文往往把架构细节堆在前面,评估部分显得单薄。 声称自己是”首个大规模开源MoE视频基础模型”很大胆且可验证,这是好事。 如果重写相关工作部分,更精准地定位此前的”面向机器人的视频”工作(而不是泛泛地对比视频生成),整篇论文的定位会更清晰。
判决: 弱接收 — 问题真实、方法系统、开源贡献有价值,但具身智能迁移的直接证据比架构投入所承诺的要薄。
要点总结
三个可以”偷”走的具体想法:
-
MoE用于视频是可行且实用的: 如果你在构建任何需要高效运行的视频模型(不只是训练高效),MoE的路由模式可以直接迁移。 路由器加专家的模式让你可以在不线性增加推理成本的前提下扩展容量。 这不限于机器人——任何实时视频场景都适用。
-
数据策划是一等公民级的工程问题: “数据剖析引擎”的概念——系统性地用领域特定素材增强训练分布,而不是指望模型自己泛化——是一个可移植的想法。 如果你训练医学影像模型,别只用ImageNet;构建专门的医学数据管线。 给模型”看什么数据”的工程,往往比”用什么架构”更重要。
-
多维奖励设计: 在损失函数中加入领域相关信号(比如物理合理性),而不仅仅优化显而易见的指标(比如美感),这个思路很通用。 如果你训练代码生成模型,别只奖励”看起来像代码”——加上”能编译通过”和”测试通过”的奖励。 在通用奖励之上叠加任务特定奖励的模式,可以迁移到很多领域。