Close Menu
    Facebook X (Twitter) Instagram
    • Privacy Policy
    • Terms Of Service
    • Social Media Disclaimer
    • DMCA Compliance
    • Anti-Spam Policy
    Facebook X (Twitter) Instagram
    Deep Tech Ledger
    • Home
    • Crypto News
      • Bitcoin
      • Ethereum
      • Altcoins
      • Blockchain
      • DeFi
    • AI News
    • Stock News
    • Learn
      • AI for Beginners
      • AI Tips
      • Make Money with AI
    • Reviews
    • Tools
      • Best AI Tools
      • Crypto Market Cap List
      • Stock Market Overview
      • Market Heatmap
    • Contact
    Deep Tech Ledger
    Home»AI News»Ant Group’s Robbyant Unveils LingBot-VA 2.0: A Causal Video-Action Model Built Natively for Physical AI
    Ant Group's Robbyant Unveils LingBot-VA 2.0: A Causal Video-Action Model Built Natively for Physical AI
    AI News

    Ant Group’s Robbyant Unveils LingBot-VA 2.0: A Causal Video-Action Model Built Natively for Physical AI

    July 11, 20266 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email
    kraken


    Robbyant, the embodied AI unit inside Ant Group, has released the LingBot-VA 2.0.The first embodied-native foundation model. It describes a video-action foundation model for generalist robot manipulation. The research team pretrains the whole stack for embodiment instead of fine-tuning a video generator.

    What is LingBot-VA 2.0?

    Most video-action models reuse two components built for digital content creation. One is a reconstruction-oriented VAE. The other is a bidirectional video-diffusion backbone, with an action module attached.

    This creates three limitations. Pixel-reconstruction latents preserve appearance but carry limited physical structure. Iterative denoising over video tokens is too slow for closed-loop control. Generic video objectives never teach how actions reshape the world.

    A fourth mismatch is structural. Backbones use bidirectional attention, while control unfolds strictly forward in time. LingBot VA Version 1.0 finetuned that stack into a causal model. Version 2.0 pretrains a causal DiT natively.

    aistudios
    https://github.com/Robbyant/lingbot-va/blob/main/LingBot_VA2_paper.pdf

    Version 1: The Semantic Visual-Action Tokenizer

    Building on that motivation, stage one replaces the compression-only VAE. Following RepWAM, the tokenizer adds two objectives to reconstruction.

    Semantic alignment pulls visual latents toward a frozen Perception Encoder teacher. A latent-action objective extracts compact transition variables between consecutive latents. An inverse dynamics model predicts each latent action. A forward dynamics model decodes it into a transport map plus residual.

    World states and actions now share one latent space. Unlabeled web video therefore carries action-relevant supervision.

    Version 2: A Causal DiT With a Sparse MoE Video Stream

    On top of that space, version 2 pretrains a causal DiT. It keeps the Mixture-of-Transformers layout of version 1.0. A video expert and an action expert share one causal self-attention. Each owns a separate feed-forward pathway.

    The two streams scale asymmetrically. The video expert replaces its dense FFN with a sparse MoE routed layer. That layer holds 128 routed SwiGLU experts, top-8 routing, one shared expert. Load balancing follows the auxiliary-loss-free Loss-Free Balancing strategy. The action expert keeps a dense FFN at hidden dimension 768.

    The video backbone is roughly 13.0B parameters, about 1.9B active. With the action expert and MCP heads, training covers about 15.3B parameters. Roughly 2.5B activate per token at inference. Training uses a rectified-flow objective with a hybrid Muon plus AdamW optimizer.

    Where the Training Signal Comes From

    Beyond architecture, two objectives shape what the model learns.

    Multi-chunk prediction (MCP) fixes myopic supervision. Teacher forcing supervises only the next chunk, so the model can cut loss by copying appearance. MCP attaches three lightweight modules predicting the next three chunks. In ablation it matched the baseline’s 45k-step accuracy in 20k steps, a 2.3x training speedup.

    Meanwhile, five objectives are co-trained rather than staged: T2I, T2V, TI2VA, ICL, and human-robot co-training. Sampling follows a coarse-to-fine schedule, from appearance grounding to video-action control. Keeping every objective alive avoids forgetting the earlier priors.

    Hierarchical Planning

    Chunk-level control cannot sequence long-horizon goals. Above the policy therefore sits a VLM planner, LoRA-finetuned with a frozen vision tower. It emits structured JSON: done, instruction, generation_instruction, local_scene_description. It runs at about 2 Hz behind an asynchronous shared buffer. The policy reads it at each chunk boundary, so planner latency never blocks execution.

    Foresight Reasoning

    Even with a sparse backbone, deployment hits a serial bottleneck. If the robot waits, model latency becomes control latency.

    Foresight Reasoning therefore runs prediction and execution as asynchronous streams. While the robot executes chunk a_t, the video expert imagines its outcome. The action expert decodes a_{t+1} from that.

    Running ahead risks drift. So each returning observation is encoded into the true latent z_{t+1}, overwriting the imagined one. A forward-dynamics grounding loss trains the video expert for this role.

    # Pseudocode for the asynchronous rollout (Sec. 2.3.7, Eq. 29).
    # Not runnable: policy, executor and encode() are placeholders.

    C = init_kv_cache(encode(obs_0)) # feedback-grounded cache C_t
    a = policy.action_expert(C) # cold start: first action chunk a_0

    while not done:
    executor.start(a) # execution stream, non-blocking

    C_tmp = C + [a] # prediction stream: C_t u {a_t}
    z_hat = policy.video_expert(C_tmp) # forward dynamics -> imagined z_{t+1}
    a_next = policy.action_expert(C_tmp + [z_hat])

    obs = executor.wait() # real observation of a_t returns
    C = overwrite(C_tmp, z_hat, encode(obs)) # re-ground: z_hat <- true z_{t+1}
    a = a_next

    Performance

    Consequently, evaluation covers simulation and real hardware. On RoboTwin 2.0, every model trains on 2,500 clean plus 25,000 randomized demonstrations, across 50 tasks.

    https://technology.robbyant.com/lingbot-va-v2
    MethodCleanRandomizedAvg.X-VLA72.972.872.9π0.582.776.879.8Motus88.787.087.9LingBot-VA92.991.692.2LingBot-VA 2.093.893.493.6
    Acceleration techniqueInference time (ms/chunk)Async HzBF16 PyTorch async rollout baseline92735+ Consistency distillation46669+ Low-precision compiled execution36987+ Long-horizon attention optimization272118+ Runtime overhead reduction142225

    Distillation cuts the video sampler from 5 steps to 2, and the action sampler from 10 to 2. FP8 TensorRT engines, a paged/ragged KV cache with FlashInfer attention, and host-side overhead removal supply the rest.

    # Reproduces Table 3 of the report exactly. Runnable as-is.
    K = 32 # low-level control steps inside one generated chunk

    stack = [(“BF16 PyTorch async rollout baseline”, 927),
    (“+ Consistency distillation”, 466),
    (“+ Low-precision compiled execution”, 369),
    (“+ Long-horizon attention optimization”, 272),
    (“+ Runtime overhead reduction”, 142)]

    for name, ms in stack:
    print(f”{name:40s} {ms:4d} ms {round(1000 / ms * K):4d} Hz”)

    print(“end-to-end speedup:”, round(927 / 142, 1), “x”)

    Version 1.0 vs Version 2.0

    DimensionLingBot-VALingBot-VA 2.0TokenizerWan2.2 VAE (reconstruction)Semantic visual-action tokenizer, 96 latent channelsBackbone originFinetuned from a bidirectional generatorCausal DiT pretrained from scratchVideo FFNDenseSparse MoE, 128 experts, top-8Extra supervisionNot usedMCP, in-context learning, human-robot co-trainingInferenceAsync execution, KV cacheForesight Reasoning with observation re-groundingPeak async controlNot reported in the version 2.0 report225 Hz

    The tokenizer ablation isolates row one. Swapping the WAN2.2 VAE for the semantic tokenizer lifts a 1.3B model from 78.0 to 86.6.

    Use Cases and Examples

    Beyond benchmarks, four deployment shapes stand out.

    • Few-shot onboarding: The report states the model adapts from 10 to 15 demonstrations. Real-world evaluation uses 20 teleoperated demos per task. One multi-task checkpoint covers all four evaluated tasks.
    • Demonstration-conditioned control: In-context learning lets a human demonstration video replace the text instruction. After finetuning on four seen tasks, the policy executed unseen compositions. One example: “put the calabash into the green plate.”
    • Cheap data scaling: Human-robot co-training retargets hand poses into the robot action space. Each hand becomes a virtual parallel gripper. The egocentric corpus spans 65.4k episodes.
    • Reactive control: Demonstrations include Air Hockey and a conveyor belt, where the policy anticipates moving objects.

    Key Takeaways

    • Pretrains a causal video-action DiT from scratch instead of adapting a video generator.
    • A semantic tokenizer puts world states and latent actions in one aligned space.
    • Sparse MoE video stream: ~2.5B of ~15.3B parameters activate per token.
    • Foresight Reasoning overlaps prediction with execution, re-grounded on every real observation.
    • Chunk latency 927 ms to 142 ms; async control 35 Hz to 225 Hz.

    Interactive Dynamic Explainer

    Check out the Paper and Project Page. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

    Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

    Note:Thanks to the Ant Research team for the thought leadership/ Resources for this article. Ant Research team has supported this content/article for promotion.



    Source link

    binance
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    CryptoExpert
    • Website

    I’m someone who’s deeply curious about crypto and artificial intelligence. I created this site to share what I’m learning, break down complex ideas, and keep people updated on what’s happening in crypto and AI—without the unnecessary hype.

    Related Posts

    OpenClaw Releases OpenClaw 2.0: Guided Model Setup, 575 ms Control UI Startup, and One Trust Boundary Per Gateway

    August 31, 2026

    Looking beyond natural sequences | MIT News

    August 30, 2026

    The three layers of agentic AI security: A defense-in-depth architecture for autonomous agents

    August 29, 2026

    a quarter of next year’s business

    August 28, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    bybit
    Latest Posts

    Helius CEO Secures Last-Minute Votes to Slash Solana Inflation

    August 31, 2026

    OpenClaw Releases OpenClaw 2.0: Guided Model Setup, 575 ms Control UI Startup, and One Trust Boundary Per Gateway

    August 31, 2026

    Robinhood Chain App Revenue Beats Ethereum, Hyperliquid

    August 31, 2026

    Microsoft Certified Generative AI and Agentic AI Course | With Production Grade Projects and AI Labs

    August 31, 2026

    Which AI Teeth Hacks Cause Cavities!?

    August 30, 2026
    Customgpt
    LEGAL INFORMATION
    • Privacy Policy
    • Terms Of Service
    • Social Media Disclaimer
    • DMCA Compliance
    • Anti-Spam Policy
    Top Insights

    Ontology halts mainnet transactions as technical team investigates potential security issue

    August 31, 2026

    Bitmine Extends Ether Buying Streak to 65 Weeks

    August 31, 2026
    Customgpt
    Facebook X (Twitter) Instagram Pinterest
    © 2026 DeepTechLedger.com - All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.