Ant Group’s Robbyant has launched LingBot-VLA 2.0, an open-source Vision-Language-Action model designed to let robots manipulate objects across different physical bodies. The release includes an Apache-2.0 codebase and a 6B parameter checkpoint. The team aims to close the gap between models that work well in labs and those that function in real-world deployments. The update focuses on three areas: generalisation, an expanded action space, and predictive dynamics modeling.
In this article
What is LingBot-VLA 2.0?
The system is a generalist robot policy built on a vision-language backbone. It takes camera feeds and text instructions to generate robot movements. The public model, lingbot-vla-v2-6b, is a 6B parameter checkpoint using native depth. It relies on Qwen3-VL-4B-Instruct as its visual-language model. Training is supervised by two teacher models, LingBot-Depth and DINO-Video, through a distillation process.
A single inference call takes approximately 130 ms on an NVIDIA GeForce RTX 4090D. This figure uses 10 denoising steps. The action expert employs a Mixture-of-Experts design to manage scaling.
Data pipeline: 60,000 hours across 20 configurations
Generalisation begins with data. The research team curated roughly 60,000 hours of pre-training data. This covers 50,000 hours of robot trajectories and 10,000 hours of egocentric human videos. The robot data spans 20 robot configurations, ranging from single-arm rigs to full humanoids. The raw pool is larger: about 90,000 robot hours and 20,000 egocentric hours. A redesigned pipeline filters noisy samples down to the high-quality set.
Filtering is explicit and measurable. The team computes third-order jerk alongside velocity and acceleration Z-scores per embodiment. Episodes with abnormal smoothness or over 95% static signals are removed. Videos are checked against replayed states using each robot’s URDF. Annotators remove blur, occlusion, dropped frames, and multi-view misalignment. Egocentric clips pass a VLM filter, then egocentric SLAM and MANO hand-pose reconstruction.
Annotation is automated with a vision-language model. Qwen3.6-27B segments each video into temporally contiguous subtasks. Each subtask receives an atomic action from a closed vocabulary of 18 categories. That vocabulary holds 15 primitive actions plus transit, idle, and other. Across the corpus, move and transit dominate by frequency.
Unified action representation
Different robots expose different joints, so LingBot-VLA 2.0 unifies them. It uses a 55-dimensional canonical vector for both states and actions. The layout is fixed across every embodiment in the dataset.
Each arm end-effector pose uses XYZ coordinates plus a rotation quaternion, giving 7 dimensions per arm. Robots that lack a body part simply pad the corresponding dimensions. This lets one model control arms, hands, grippers, waists, heads, and mobile bases.
| Component | Dimensions |
| Arm joint position | 14 |
| End-effector pose | 14 |
| Gripper position | 2 |
| Hand joint position | 12 |
| Waist position | 4 |
| Head position | 2 |
| Mobility signal | 3 |
| Reserved | 4 |
MoE action expert
The action expert replaces its feed-forward network with sparse MoE layers. Each MoE layer keeps one shared expert along with several routed experts. Only the top-K routed experts activate per token, so active compute stays bounded. Each expert is a SwiGLU MLP with a smaller intermediate width.
Routing follows a sigmoid-based, auxiliary-loss-free strategy inspired by DeepSeek-V3. A per-expert bias corrects load imbalance without adding a load-balancing loss. Routing confidence still comes from the model’s original, unbiased affinity scores. Under matched active parameters, the MoE model reaches lower training loss than a dense baseline. It also reaches lower validation action error on GM-100 tasks.
Dual-query distillation for predictive dynamics
Real execution needs anticipation, not just reaction to the current frame. LingBot-VLA 2.0 appends two learnable queries to the visual and text tokens. Qt targets the current observation, and Qt+T targets a future observation. The horizon T equals the action chunk size.
Two teachers supervise these queries. LingBot-Depth supplies explicit geometric cues through depth prediction. DINO-Video supplies temporally grounded semantic priors. DINO-Video is built on the DINOv3 backbone with block-wise causal temporal attention and 3D-RoPE. It is trained on 5M video clips spanning internet, egocentric, and robotic data. On the LARYBench evaluation, DINO-Video leads on three of four metrics.
Benchmark results
Robbyant evaluates the model in a generalist setting on the GM-100 (Great March 100) bimanual benchmark. A single policy is jointly trained on nine tasks per embodiment. Results are reported as progress score / success rate.
| Platform | GR00T N1.7 | π0.5 | LingBot-VLA-1.0 | LingBot-VLA-2.0 |
| AgileX Cobot Magic | 36.3 / 17.8 | 59.1 / 32.2 | 58.2 / 30.0 | 66.2 / 34.4 |
| Galaxea R1Pro | 16.4 / 5.6 | 27.4 / 8.9 | 32.7 / 15.6 | 34.6 / 15.6 |
On long-horizon mobile manipulation, the model is tested under two settings. In-domain (ID) uses the training distribution, while OOD perturbs pose and objects.
| Embodiment | Task | Setting | LingBot-VLA-2.0 | π0.5 |
| Astribot S1 | Refrigerator sorting | In-domain | 77.1 / 60.0 | 65.3 / 46.7 |
| Astribot S1 | Refrigerator sorting | OOD | 37.0 / 13.3 | 30.3 / 6.7 |
| Cobot Magic-ARX X5 | Stove cleaning | In-domain | 84.3 / 66.7 | 79.9 / 60.0 |
| Cobot Magic-ARX X5 | Stove cleaning | OOD | 67.5 / 40.0 | 62.5 / 33.3 |
Gains are largest on tasks needing accurate object grounding. On Agilex Retrieve keychain, success moves from 60.0 to 100.0 versus version 1.0. Some tasks still show a gap between progress and success. That gap points to failures at the final precise placement or release step.
Getting started
The repository ships install, download, and deployment scripts. The example below downloads the released weights.
# Environment: Python 3.12, PyTorch 2.8.0, flash-attn 2.8.3
python3 scripts/download_hf_model.py --repo_id robbyant/lingbot-vla-v2-6b --local_dir lingbot-vlaReal-robot deployment runs the policy server with compiled inference.
export QWEN3VL_PATH=path_to_Qwen3-VL-4B-Instruct
python -m deploy.lingbot_vla_v2_policy \
--model_path path_to_posttraining_ckpt \
--use_compile \
--use_length 25 \
--port portPost-training uses LeRobot v2.1 or v3.0 datasets. The provided example fine-tunes on RoboTwin 2.0 across 50 tasks. Routing can use sequence-wise auxiliary loss with z-loss, or a loss-free setup. The config also exposes the Muon optimizer, with AdamW as the default.
Use cases with examples
The expanded action space maps to concrete deployment scenarios.
- Kitchen mobile manipulation: Astribot S1 sorts fruits and drinks into a refrigerator. This needs base movement, door opening, and object placement together.
- Surface cleaning: Cobot Magic-ARX X5 wipes foam off a stove with a sponge. This chains grasping, wiping, and tool repositioning.
- Bimanual packing and sorting: GM-100 tasks include egg packing, tool packing, and block sorting.
- Dexterous-hand control: Unitree G1, Fourier GR-2, and AgiBot A2 use 12-DoF hands, not grippers.
Interactive Dynamic Explainer
Source Read original →




