CHORUS: Decentralized Multi-Embodiment Collaboration with One VLA Policy
- 01A Single Policy Can Run an Entire Heterogeneous Robot Fleet Without Inter-Robot Communication
- 02Pretrained Visuomotor Priors Transfer to Multi-Robot Settings Despite Zero In-Distribution Training Data
- 03Weight-Sharing Across Robots Creates Implicit Theory-of-Mind, Not Just Efficiency
- 04Decentralization Beats Centralization in Practice, Even Though Centralization Has More Information
- 05The System Scales to Larger Teams with No Architectural Changes
Stanford University | arXiv:2606.12352 | June 2026
1. Key Themes
A Single Policy Can Run an Entire Heterogeneous Robot Fleet Without Inter-Robot Communication
The core technical achievement here is deceptively simple: one fine-tuned VLA model, running independently on each robot, coordinates a team without any robots talking to each other at runtime. Each robot gets a "who you are and what you do" prompt, sees only its own cameras, and acts. The system still achieves 90% success on a 3-robot coordinated task (door-opening + basket transport through a doorway). As the authors state in Section 1: "No cameras, proprioceptive states, or communication channels are shared among robots, making CHORUS more deployable than centralized alternatives and cheaper to train than per-robot decentralized policies." For operators running multi-robot deployments, this eliminates an entire class of infrastructure headaches — shared networks, synchronized message buses, and latency management between robots.
Pretrained Visuomotor Priors Transfer to Multi-Robot Settings Despite Zero In-Distribution Training Data
Every major VLA pretraining dataset is single-robot. CHORUS fine-tunes on multi-robot data, but the pretrained backbone provides priors that dramatically outperform training from scratch. The margin is not incremental — it's decisive. From Section 4.1: "Both VLA-based methods significantly outperform decentralized diffusion by a wide margin, with CHORUS leading by 64 percentage points in mean task success rate." This is meaningful because it confirms that foundation model investment compounds beyond the original single-robot use case — a critical datapoint for anyone funding or building on top of models like π0.5, OpenVLA, or RT-2.
Weight-Sharing Across Robots Creates Implicit Theory-of-Mind, Not Just Efficiency
The paper's most counterintuitive finding is that training one policy on all robots' perspectives — rather than separate policies per robot — doesn't just save compute. It makes each robot better at anticipating and reacting to teammates. In the perturbation experiment (Section 4.2), when one robot was deliberately displaced laterally during a handover, the weight-shared CHORUS recovered successfully 17/20 times versus 9/20 for the per-robot version. The authors explain: "Training on all robots' perspectives of every interaction should induce a shared representation that models the teammates' actions, whereas the per-robot policies, each trained only on its own robot's data, have no representational incentive to do so." In deployment terms: you're getting implicit teammate modeling for free, without designing it explicitly.
Decentralization Beats Centralization in Practice, Even Though Centralization Has More Information
This is the result that should challenge architectural assumptions at many robotics companies. A centralized policy — which sees all cameras from all robots simultaneously — was outperformed by CHORUS across three real-world tasks (Figure 6), despite having strictly more information. The authors trace this to distribution shift: "Adapting π0.5 for centralized collaboration requires us to push it further away from its pretraining distribution... π0.5 is pretrained with four camera slots tied to a single mobile manipulator's front, back, base, and wrist views. Centralized coordination instead requires populating these slots with two top views and two wrist views of different robots, breaking the semantic correspondence learned during pretraining." The practical upshot: architectures that try to give a model everything may underperform architectures that keep inputs closer to the pretraining distribution.
The System Scales to Larger Teams with No Architectural Changes
Adding a third robot required no changes to the model architecture — just collecting data for three robots and adjusting the sampling weights during training. From Section 4.4: "CHORUS attains a 90% success rate, demonstrating how our training recipe scales to more robots without modification." The three-robot task was deliberately hard: one robot (YAM-1) had no rear camera and couldn't directly observe whether the door was clear, requiring it to infer timing from a teammate's behavior alone. It succeeded. This is a proof of concept that the framework is operationally extensible without retraining from scratch.
2. Contrarian Perspectives
More Information Is Not Always Better — Centralized Observation Hurt Performance
Conventional wisdom in multi-robot systems says: give the policy everything and let it figure out what's relevant. CHORUS contradicts this directly. The centralized baseline, conditioned on the full joint observation of both robots, was beaten by a policy that only sees one robot's cameras at a time. The authors in Section 4.3 argue this isn't just a VLA quirk — it's consistent with known behavior cloning failure modes: "These shifts are consistent with prior findings that behavior cloning performance can degrade as the input dimension grows." For companies designing observation pipelines for multi-robot systems, this is an argument for keeping each robot's policy input compact and close to the pretraining distribution, rather than maximizing information richness.
You Don't Need a Communication Stack for Multi-Robot Coordination — You Need Better Priors
The multi-robot systems industry has largely assumed that coordination requires communication: shared state, synchronized clocks, message-passing protocols. CHORUS challenges this at the policy level. From the abstract: "Our key insight is that the visuomotor priors of pretrained vision-language-action (VLA) models should enable reactive, decentralized collaboration from each robot's local observations alone, without inference-time assumptions." The practical implication is that as foundation models improve, the marginal value of complex communication infrastructure for coordination tasks decreases — and the marginal value of better visual priors increases. Companies investing heavily in inter-robot communication middleware for coordination should pay attention to this tradeoff.
Small Multi-Robot Datasets (25–45 Demos) Are Sufficient When Building on Strong Pretrained Backbones
The dominant narrative in robotics is that data is the bottleneck. CHORUS achieves 90% task success on a 3-robot coordination task with only 34 demonstrations (and only 18 clean demos for one robot, due to data corruption). From Appendix B: "The Kinova trains on only 18, as a portion of the door-opening data was corrupted. Note that this asymmetry is another reason why decentralized training is more desirable: a centralized policy would have to discard the extra YAM demonstrations to match the Kinova at 18 demos." This directly challenges the assumption that multi-robot coordination requires large, carefully balanced datasets. For operators, this suggests that bootstrapping new robot configurations onto existing VLA backbones is far more tractable than building coordination policies from scratch.
3. Companies Identified
Physical Intelligence (π)
- Description: SF-based robotics foundation model company, creators of the π0 and π0.5 VLA models
- Why relevant: CHORUS is built directly on top of π0.5 as its backbone VLA. Every result in the paper is a downstream validation of π0.5's pretrained priors. The paper cites: "We build on the π0.5 pretrained VLA backbone" (Section 3) and "We finetune the π0.5 policy with LoRA adapters on both the vision-language backbone and the action expert" (Appendix A). CHORUS is essentially a showcase for how π0.5's generalization extends to a domain (multi-robot coordination) it was never trained on.
- Quote: "Intelligence et al. [2025] π0.5: A Vision-Language-Action Model with Open-World Generalization" (References)
Google DeepMind (RT-2 / Robotics)
- Description: Developed RT-2, one of the foundational VLA models that established the paradigm CHORUS builds on
- Why relevant: RT-2 is cited as a primary precedent for cross-embodiment VLA generalization. The paper positions CHORUS as extending the VLA paradigm from single-robot to multi-robot domains. "Vision-language-action (VLA) models, trained on diverse robots and data, have demonstrated such priors, albeit in single-robot domains" (Section 1).
- Quote: "Zitkovich et al. [2023] RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control" (References)
Stanford University (TidyBot++ Platform)
- Description: Open-source holonomic mobile manipulator developed at Stanford, used as the hardware platform throughout all CHORUS experiments
- Why relevant: All real-world experiments use TidyBot++ robots (Kinova, ARX, and YAM variants). The teleoperation interface is used for data collection. "We collect training data on single-robot mobile manipulators via the TidyBot++ teleoperation interface" (Section 3.1). This platform is also used by other Stanford Physical AI research, making it an emerging reference hardware stack for academic multi-robot research.
- Quote: "Wu et al. [2025] TidyBot++: An Open-Source Holonomic Mobile Manipulator for Robot Learning" (References)
4. People Identified
Ria Doshi
- Lab/Institution: Stanford University (Bohg Lab / Finn Lab)
- Why notable: Lead author; also co-authored the Scaling Cross-Embodied Learning paper (Doshi et al., 2025), which demonstrated one policy for manipulation, navigation, locomotion, and aviation. Doshi is building a coherent research thread around single-policy control across radically different embodiments and tasks — directly relevant to anyone building generalizable robot intelligence.
- Quote: "Scaling Cross-Embodied Learning: One Policy for Manipulation, Navigation, Locomotion and Aviation" (References, Doshi et al. 2025)
Chelsea Finn
- Lab/Institution: Stanford University
- Why notable: One of the most cited researchers in meta-learning and robot learning; co-PI on CHORUS and co-creator of key infrastructure (Mobile ALOHA, OpenVLA). Her lab's consistent focus is on generalizable, data-efficient robot learning. Finn's involvement signals this is not a one-off result but part of a sustained research program on foundation models for physical AI.
- Quote: Co-author listed on CHORUS; also cited as co-author on OpenVLA, Mobile ALOHA, and π0.5 backbone (References)
Jeannette Bohg
- Lab/Institution: Stanford University (Interactive Perception and Robot Learning Lab)
- Why notable: Senior co-PI; her lab focuses on robot perception and manipulation under uncertainty. Her presence on this paper connects CHORUS to a broader program on how robots should perceive and act under partial observability — the core challenge CHORUS addresses.
- Quote: Listed as co-author; also co-author on TidyBot++ hardware platform used throughout experiments
Tian Gao and Annie Chen
- Lab/Institution: Stanford University
- Why notable: Co-authors who contributed to implementation and experiments; part of the next generation of Physical AI researchers at Stanford working at the intersection of foundation models and multi-robot systems.
- Quote: Listed as co-authors on arXiv:2606.12352
5. Operating Insights
Robot Identity Prompting Is a Lightweight, Deployable Solution to the Multi-Embodiment Policy Problem
The engineering solution here is worth stealing directly. Rather than training separate models per robot or building complex routing infrastructure, CHORUS uses a text prompt that specifies the robot's name, physical embodiment type, and role — prepended at every timestep. From Section 3.2: "The prompt names the embodiment (<ARX>, <Kinova>, etc.), specifies its role, and allows us to condition the forward pass on a known robot identity rather than forcing the policy to infer it from the observation." For a CTO deploying a mixed fleet, this means a single model checkpoint can serve multiple robot types with a configuration change, not a retraining run. The operational implication: model management and versioning become dramatically simpler when you're maintaining one policy instead of N.
Asynchronous Control Rate Handling Is Solved by Scaling Chunk Size, Not Synchronizing Clocks
A perennial deployment headache in multi-robot systems is that robots run at different control frequencies. CHORUS addresses this without synchronization infrastructure. From Section 3.3: "For teams with varying control rates, we scale each robot's chunk size proportionally to its control rate; this ensures all robots plan over the same time horizon. For example, since the YAM runs at double the Kinova's rate (30Hz vs. 15Hz), we double the YAM's chunk size at execution." In practice, this means a 30Hz robot executes 40-step action chunks while a 15Hz robot executes 20-step chunks — both covering the same real-world time horizon. Engineers building multi-robot systems should consider this chunk-scaling approach before reaching for hardware synchronization solutions.
Data Collection Asymmetry Is No Longer a Blocker for Multi-Robot Training
In the three-robot task, data corruption left the Kinova with only 18 usable demonstrations while both YAMs had 34. A centralized policy would have had to discard the extra YAM data to maintain a balanced joint dataset. CHORUS didn't. From Appendix B: "Note that this asymmetry is another reason why decentralized training is more desirable: a centralized policy would have to discard the extra YAM demonstrations to match the Kinova at 18 demos." For operators running real-world data collection campaigns — where hardware failures, operator errors, and environmental interruptions routinely create imbalanced datasets — this is a meaningful operational advantage. You don't need to re-collect; you just train on what you have per robot.
6. Overlooked Insights
The Dominant Failure Mode of From-Scratch Policies Is Timing Mismatch, Not Perception — and VLA Priors Fix This Directly
Most people would assume the gap between VLA-based CHORUS and diffusion-from-scratch comes from better object recognition or scene understanding. The paper reveals the actual failure is behavioral coordination timing. From Section 4.1: "Across all three tasks, the diffusion policies exhibit a characteristic mismatch pattern in which one robot proceeds with its half of the interaction before the other has caught up: on basket lifting, for example, the Kinova grabs its handle and begins to move before the ARX has grasped the other handle, causing the basket to slip." This is a critical diagnostic for anyone running multi-robot manipulation deployments: if you're seeing timing mismatches rather than grasp failures, the problem is likely your policy's lack of behavioral priors about teammates, not your perception stack. The fix is not more cameras or better object detection — it's a policy architecture that has seen coordinated behavior in pretraining.
The Community Multi-Robot Data Gap Is the Real Scaling Bottleneck — and No One Is Filling It
Buried in the limitations section is a statement with large strategic implications for the field. From Section 5: "Existing large-scale manipulation datasets are overwhelmingly single-robot; a shared community effort to collect collaborative data would unlock significant progress in scaling multi-embodiment collaboration." Open X-Embodiment (cited as reference [33]) contains contributions from dozens of institutions — but almost none of it is multi-robot. CHORUS achieves strong results with 25–45 demos per task, but the ceiling on what's possible is set by pretraining diversity. The first organization to build and open-source a large-scale multi-robot coordination dataset — analogous to what DROID or Open X-Embodiment did for single-robot manipulation — will have an outsized influence on the trajectory of this entire subfield. This is a white space that is explicitly unoccupied and explicitly called out by researchers at one of the leading Physical AI labs in the world.