Papers
Topics
Authors
Recent
Search
2000 character limit reached

LingBot-Video: Embodied Video Pretraining

Updated 14 July 2026
  • LingBot-Video is a DiT-based video pretraining paradigm designed for embodied intelligence, using a sparse Mixture-of-Experts architecture and action-aligned rewards.
  • It integrates a specialized data profiling engine that augments standard internet videos with robot-oriented footage to enhance manipulation, navigation, and egocentric reasoning.
  • The model demonstrates state-of-the-art performance with up to 120B parameters and over 3× faster inference, supporting efficient physical world modeling and control.

Searching arXiv for the cited LingBot-Video and closely related papers to ground the article. First, locate the main LingBot-Video paper. Searching for (Ma et al., 8 Jul 2026) and title keywords. LingBot-Video is a DiT-based video pretraining paradigm specifically tailored for embodied intelligence. It is presented as a response to a domain mismatch in which video generative models have primarily focused on content creation, with design choices that prioritize visual fidelity and creativity over computational efficiency and physical realism. To address that mismatch, LingBot-Video combines a sparse Mixture-of-Experts architecture, a data profiling engine that augments standard internet videos with robot-oriented footage, and a multi-dimensional reward system that enforces alignment regarding physical rationality and task completion. The model is described as the inaugural large-scale, open-source MoE video foundation model in this domain (Ma et al., 8 Jul 2026).

1. Conceptual scope and design objective

LingBot-Video is defined around embodied intelligence rather than generic text-to-video generation. Its stated target is a video foundation model that can support manipulation, navigation, and egocentric reasoning, while retaining the scale and generative breadth associated with large video pretraining (Ma et al., 8 Jul 2026).

A central claim in the LingBot line is that video world modeling can serve as an independent foundation for robot learning because it provides the ability to imagine the near future by understanding the causality between actions and visual dynamics. In the control-oriented branch of the same ecosystem, LingBot-VA is introduced as an autoregressive diffusion framework that learns frame prediction and policy execution simultaneously, and LingBot-VA 2.0 further argues that repurposing video generative models designed for digital content creation is inherently inadequate for physical environments (Li et al., 29 Jan 2026, Zhang et al., 9 Jul 2026). Taken together, these papers position LingBot-Video as the broad video-pretraining substrate, with downstream control models specializing that substrate for closed-loop actuation.

This framing distinguishes LingBot-Video from long-video comprehension systems whose primary goal is question answering or captioning over extended temporal context. A plausible implication is that LingBot-Video is intended less as a retrieval-heavy analytic interface and more as a physically grounded generative prior for embodied prediction, planning, and simulation.

2. Architectural structure and scaling strategy

The core architecture is a Single-Stream Diffusion Transformer that processes both visual patches and multimodal conditions as a unified sequence. Instead of a conventional fully dense transformer, LingBot-Video replaces the default feed-forward network in each transformer block with a Sparse Mixture-of-Experts block. The design includes shared experts, which are always active for all tokens, and routed experts, which are selected token-wise using a sigmoid gate and dynamic bias for online load-balancing (Ma et al., 8 Jul 2026).

At the level of routing, the paper specifies the MoE output for token tt as

m(ut)=i=1NsEi(s)(ut)+jRb(ut)gt,jEj(r)(ut),m(\mathbf{u}_t) = \sum_{i=1}^{N_s} E_i^{(s)}(\mathbf{u}_t) + \sum_{j \in \mathcal{R}_{\mathrm{b}(\mathbf{u}_t)}} g_{t,j} E_j^{(r)}(\mathbf{u}_t),

with routing affinity

αt,j=sigmoid(utrj),\alpha_{t,j} = \text{sigmoid}(\mathbf{u}_t^\top \mathbf{r}_j),

and an online bias update

bjbjηsign(njnˉ).b_j \leftarrow b_j - \eta\, \operatorname{sign}(n_j - \bar{n}).

These details are used to support a capacity-compute decoupling claim: total parameters can be large, while per-token computation remains efficient (Ma et al., 8 Jul 2026).

The scaling regime is unusually aggressive. The reported model family reaches up to 120B parameters, and the paper states that MoE 30B-A3B runs over 3x faster than dense 30B at long sequences, matches 3B dense inference speed, and still delivers scaling-law improvements. The same section reports a cascaded refiner that upsamples from 480p to 1080p using a conditional flow-based upsampler, with the base model preserving semantics and the refiner focusing on spatial detail (Ma et al., 8 Jul 2026).

The architectural argument is therefore twofold. First, sparse routing is used to expand model capacity without proportional inference cost. Second, the entire stack is oriented toward world modeling under physical constraints rather than unconstrained visual novelty. This suggests that the MoE design is not merely a throughput optimization, but also an attempt to preserve headroom for diverse physical scenarios, embodiments, and action-conditioned dynamics.

3. Data profiling engine and embodied data curation

LingBot-Video couples model architecture with a large curation pipeline. The data profiling engine analyzes each image or video sample along multiple axes. Structural annotation includes resolution, frame rate, duration, shot boundary detection via TransNetV2, and clip segmentation. Semantic annotation includes tags, foreground and background objects, world knowledge, visual styles, and text. Motion annotation combines VLM-based labels for camera and subject motion with geometric motion scoring through LocoTrack. Camera and cinematic attributes include shot size, angle, lens, composition, and lighting, while visual quality analysis uses HPSv3, OmniAID, and artifact flags such as watermarks, blur, clarity, and exposure (Ma et al., 8 Jul 2026).

Beyond internet video, the corpus is explicitly augmented with robot-oriented data. The paper lists three emphasized categories: manipulation video, navigation, and egocentric views. Manipulation data covers robot arms, grippers, multi-arm settings, and both real and simulated scenes. Navigation includes first-person and third-person video from indoor and outdoor settings. Egocentric sources emphasize hand-object, body-object, and tool use from first-person perspectives, including human wearable datasets such as Ego4d (Ma et al., 8 Jul 2026).

The curation stack is not limited to raw collection. LingBot-Video also constructs a semantic-action world-knowledge graph. The semantic tree is reported to contain 50k leaf and 1k intermediate concepts, while the action tree contains hundreds of canonical action nodes built by clustering normalized, description-grounded action tags. Sampling is distribution-aware and is used to upsample long-tail and challenging concepts, including rare manipulations and long-horizon tasks, with prioritization informed by graph statistics and empirical model loss per node (Ma et al., 8 Jul 2026).

A further layer is dense structured captioning. Each sample is annotated with a hierarchical JSON caption that includes entities, actions with timestamps, and camera attributes. In the control-oriented extension LingBot-VLA 2.0, a related data program curates around 60,000 hours of data for pretraining, including 50,000 hours of robot trajectories spanning 20 robot configurations and 10,000 hours of egocentric human videos, transformed into a unified 55-dimensional canonical action/state vector (Wu et al., 7 Jul 2026). This broader ecosystem evidence indicates that LingBot-Video’s data regime is designed to be interoperable with downstream robot learning rather than isolated within pure video generation.

4. Reward-aligned pretraining and post-training

A distinctive aspect of LingBot-Video is the use of a multi-dimensional reward system. The paper argues that scalar alignment criteria such as aesthetics or prompt following are insufficient for embodied settings, and therefore introduces six reward components: Vision Quality, Text-Video Alignment, Dynamic Degree, Motion Coherence, Human-Motion Consistency, and Physical Plausibility (Ma et al., 8 Jul 2026).

The physical orientation of the reward design is explicit. Text-Video Alignment is action-centric and temporal, implemented through parsed VQA questions about actions and entity states at specific frames or timesteps. Motion Coherence is framed as physical frame-rate estimation, intended to penalize unrealistic slow-motion artifacts. Human-Motion Consistency scores anatomical correctness, including topology, limb count, and hand or facial distortion. Physical Plausibility evaluates whether objects exhibit credible motion causality, non-penetration, object permanence, material and kinematic realism, and whether the final state matches the task goal (Ma et al., 8 Jul 2026).

The reward aggregation is specified as

A^(i)=rwrRr(0(i),c)μrσr+δ.\hat{A}^{(i)} = \sum_r w_r \frac{R_r(_0^{(i)}, c) - \mu_r}{\sigma_r + \delta}.

Optimization is described as GRPO/Flash-GRPO-based, with single-step stochastic exploration at a selected denoising step and coefficient-preserving sampling for clean marginals. The paper also introduces negative-aware finetuning with real video, in which real video or clip is treated as positive and generated video as negative, using a DPO-style loss together with a regularizer that keeps the model close to the pretrained policy (Ma et al., 8 Jul 2026).

This reward program is central to the model’s identity. Rather than treating physical realism as an emergent byproduct of scale, LingBot-Video encodes it as an optimization target. A plausible implication is that the model is intended to bridge imitation, generation, and evaluation: the same video prior can be used not only to synthesize futures but also to score whether those futures satisfy physically meaningful constraints.

5. Empirical performance and efficiency

The evaluation suite spans internal benchmarks, robotics-oriented benchmarks, physics benchmarks, user studies, and action-conditioned settings. On the internal benchmark, LingBot-Video ranks #1 in both General Quality and Embodied Domain for TI2V, and for T2V it is reported as second in general quality while outperforming all models in embodied domain (Ma et al., 8 Jul 2026).

On RBench, the paper reports an Avg. score 0.620, identifying LingBot-Video as open-source #1, with state-of-the-art performance in Manipulation, Spatial, Long-horizon, Single-arm, Dual-arm, Quadruped, and Humanoid subtasks. On Physics-IQ Verified, the reported score is 40.4, again marked as open-source #1, surpassing Cosmos3 at 39.5 and exceeding HunyuanVideo 1.5 and Wan 2.2 A14B by a larger margin (Ma et al., 8 Jul 2026).

Benchmark or criterion Reported result
Internal benchmark, TI2V #1 in both General Quality and Embodied Domain
RBench Avg. score 0.620, open-source #1
Physics-IQ Verified 40.4, open-source #1
Inference efficiency MoE 30B-A3B is >3× faster than dense 30B at 1M tokens

The user study is summarized as showing strong preferences for LingBot-Video over all open-source models, especially in TI2V, and the model is described as highly competitive against commercial systems. In EgoDex/DreamDojo action-conditioned video generation, it is reported to outperform DreamDojo in action following and object permanence for egocentric robotic tasks (Ma et al., 8 Jul 2026).

These results should be read alongside the efficiency claims. The same paper emphasizes that sparse scaling is not only a modeling choice but a deployment constraint: at 1M tokens, MoE 30B-A3B is more than 3x faster than dense 30B. The significance of that claim becomes clearer in downstream control settings, where latency directly bounds achievable control frequency.

6. Relation to downstream world-action models and open questions

LingBot-Video sits within a broader stack of LingBot systems that progressively specialize video priors into robot control. LingBot-VA introduces a shared latent space that integrates vision and action tokens, a closed-loop rollout mechanism, and an asynchronous inference pipeline for efficient control (Li et al., 29 Jan 2026). In a later robustness study, world action models are reported to achieve strong robustness under perturbation, with LingBot-VA reaching 74.2% success rate on RoboTwin 2.0-Plus and Cosmos-Policy achieving 82.2% on LIBERO-Plus, while top VLA systems remain competitive on some axes but typically require more elaborate training with diverse robotic datasets and varied learning objectives (Zhang et al., 23 Mar 2026).

Several later papers address bottlenecks exposed by this world-model route. Flash-WAM targets the denoising cost of joint video-action generation and reports that, on RoboTwin 2.0, distillation reduces per-chunk latency from 8.1 seconds to 348 ms on NVIDIA L40S, a 23× speedup, while preserving strong task success relative to naive consistency distillation (Akbari et al., 3 Jun 2026). Next Forcing addresses myopic supervision in causal world modeling through multi-chunk prediction; at 50 fps it reports a 93.1% relative improvement over LingBot-VA at 5k training steps, 2.3x faster convergence, and 2x inference acceleration when auxiliary MCP modules are retained at test time (Xu et al., 9 Jun 2026). WorldKV addresses persistent world memory in autoregressive video diffusion, reporting that on Matrix-Game-2.0 and LingBot-World-Fast it matches or exceeds full-KV memory fidelity at roughly 2x the throughput without fine-tuning (Yi et al., 21 May 2026).

A related control-specific successor, LingBot-VA 2.0, argues for native video-action pretraining rather than adaptation from generic content-generation models. Its four design principles are a semantic visual-action tokenizer, causal pretraining from scratch, a sparse MoE backbone, and an enhanced asynchronous inference scheme that predicts future latents in parallel with action execution while re-grounding each rollout on the latest observation via learned forward dynamics (Zhang et al., 9 Jul 2026). This continuity matters for interpreting LingBot-Video itself: it is not an endpoint, but the video-pretraining layer of a larger attempt to bridge digital creativity and physical actuation.

The main open question in this lineage is not whether large-scale video pretraining is useful for robotics—the provided studies consistently treat it as useful—but how that prior should be adapted. One side emphasizes adaptation of strong generic video generators; another emphasizes native embodiment-oriented design from tokenizer through inference. The LingBot-Video paper takes the latter position at the pretraining level, and the downstream LingBot-VA 2.0 paper extends the same position to the full video-action stack (Ma et al., 8 Jul 2026, Zhang et al., 9 Jul 2026).

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to LingBot-Video.