Robots are easy to imagine as individuals. A quadruped walks. A drone flies. A warehouse arm picks. The business slide is usually kind enough to show one machine, one task, one satisfying arrow from input to output.

Reality is less polite.

A quadruped is not one decision-maker. It is a committee of limbs negotiating with gravity. A multi-drone system is not one policy with four propellers. It is a moving argument about timing, local perception, shared goals, and what not to crash into. A factory cell with multiple robotic agents is even worse: every local action changes the environment other agents are trying to understand.

That is the problem behind Diffusing to Coordinate: Efficient Online Multi-Agent Diffusion Policies, a February 2026 paper by Zhuoran Li, Hai Zhong, Xun Wang, Qingxin Xia, Lihua Zhang, and Longbo Huang.1 The paper proposes OMAD, an online off-policy multi-agent reinforcement learning framework using diffusion policies. The claim is not merely that diffusion models are expressive. We already know diffusion models are expressive; at this point, saying so is like saying spreadsheets can make tables. Technically true, not yet insight.

The actual contribution is more interesting: OMAD tries to make diffusion policies usable for online decentralized multi-agent control, where agents must learn from fresh interaction data, coordinate through a shared objective during training, and still execute independently later.

The mechanism matters because the obvious shortcut is wrong. A reader may assume that if Gaussian policies are too simple, replacing them with diffusion policies should solve coordination. The paper’s evidence says otherwise. Naive diffusion extensions still struggle. Expressive action generation helps only when it is coupled with tractable exploration, centralized value guidance, synchronized policy updates, and adaptive control of randomness.

In other words: diffusion gives the agents a richer vocabulary. OMAD tries to teach them to speak in the same sentence.

The coordination problem is not just exploration; it is synchronized exploration

Multi-agent reinforcement learning has an old compromise: centralized training with decentralized execution, usually abbreviated as CTDE.

During training, the system may use global information: joint states, joint actions, shared rewards, and a critic that sees the whole group. During execution, each agent must act from its own local policy. This is useful because production systems rarely want every drone, robot limb, or autonomous unit to query a giant central brain before moving. Latency, resilience, and deployment constraints tend to object. Loudly.

The tension is simple:

Requirement Why it matters Why it is hard
Decentralized execution Agents must act locally after deployment Local policies can become misaligned
Centralized training The system needs a global coordination signal Centralized models can violate deployment assumptions
Efficient exploration Agents must discover useful joint behaviors Multi-agent environments are non-stationary
Expressive policies Coordination may require multiple action modes Expressive policies are harder to train online

Traditional online MARL methods often use Gaussian or similarly unimodal policies. That keeps training manageable, but it can force policies toward mean-seeking behavior. In a multi-agent locomotion task, “average” is not always safe. The average between two valid gaits may simply be a fall. Elegant, if your business KPI is floor inspection.

Diffusion policies are attractive because they can represent complex, multimodal action distributions. Instead of choosing one smooth Gaussian bump over actions, a diffusion policy generates actions through iterative denoising. It can, in principle, represent multiple plausible modes of behavior: different gait rhythms, different evasive maneuvers, different ways for agents to divide a task.

But the word “in principle” is doing a lot of unpaid labor here.

Online reinforcement learning needs exploration. Maximum entropy RL encourages policies to remain stochastic enough to avoid premature collapse into bad deterministic behavior. For ordinary policy distributions, entropy can be computed or approximated conveniently. Diffusion policies do not offer such convenient likelihoods. Their action distribution is implicit, produced through a denoising process, and exact likelihood computation is generally intractable.

So the first blocker is not that diffusion policies cannot produce rich actions. They can. The blocker is that online RL needs a way to reward useful stochasticity, and diffusion models hide the very likelihood terms that standard entropy regularization wants to use.

This is where OMAD starts.

OMAD’s first move is to replace exact entropy with a usable lower bound

The paper’s core theoretical bridge is an entropy lower bound for decentralized diffusion policies. OMAD assumes the joint policy factorizes across agents:

$$ \pi_\theta(a|s) = \prod_{i=1}^{N} \pi_{\theta_i}(a_i|s) $$

This factorization is essential for decentralized execution. Each agent has its own diffusion policy and generates its own action. But the exact joint entropy remains difficult because each policy is diffusion-based.

The paper derives a tractable variational lower bound:

$$ H(\pi_\theta(a|s)) \geq \sum_{i=1}^{N} l_{\pi_{\theta_i}}(a_i|s) $$

The practical translation: OMAD does not compute the true diffusion policy entropy. It uses a sum of individual evidence lower bounds, or ELBO terms, as a surrogate for joint entropy.

This is not a cosmetic mathematical substitution. It changes what can be optimized. Without this lower bound, maximum entropy online learning with diffusion policies is awkward at best. With it, the algorithm can encourage exploration using a tractable proxy.

There is a subtle but important boundary here. OMAD has not magically made diffusion likelihoods easy. It has made a workable entropy-regularized objective available under a factorized decentralized policy structure. That is enough to build an algorithm, but it is not the same as exact entropy control.

This distinction matters for business interpretation. If a team reads the paper as “diffusion solves exploration,” they will overgeneralize. The safer reading is: when exact entropy is unavailable, a carefully designed variational surrogate can preserve enough of the exploration incentive to make online diffusion-policy learning practical in the tested environments.

The mechanism is less glamorous than “AI agents learn to coordinate.” It is also more useful.

The critic is where coordination re-enters

At first glance, factorizing the policy across agents sounds like coordination is being weakened. Each agent samples actions independently through its own denoising process. If we stopped there, OMAD would risk becoming a collection of expressive soloists, which is a polite way to describe a bad orchestra.

The coordination signal comes back through centralized training.

OMAD uses a centralized joint distributional critic. Instead of estimating only an expected Q-value for a joint state-action pair, the critic models a distribution over returns. The paper adapts a CrossQ-style design with batch normalization and stop-gradient mechanics to improve data efficiency and stabilize value learning.

The important move is that the critic evaluates the joint action, not each agent’s local action in isolation. It also includes the entropy-surrogate terms in its target. So the critic is not merely asking, “Did these agents get a high reward?” It is asking, “Did this joint action look valuable under a reward-plus-exploration objective?”

That makes the architecture easier to understand:

OMAD component Technical role Coordination role
Decentralized diffusion actors Generate each agent’s action through denoising Preserve deployable local execution
Factorized entropy lower bound Makes entropy-style exploration tractable Keeps stochasticity from collapsing too early
Centralized distributional critic Scores joint state-action behavior Reintroduces global coordination guidance
Synchronized policy objective Updates all diffusion policies under one shared loss Prevents agents from optimizing fragmented local objectives
Adaptive temperature Tunes exploration pressure automatically Reduces manual entropy-coefficient search

The key design choice is not “decentralized or centralized.” OMAD uses both, but in different places. Execution is decentralized. Evaluation and learning are centralized. This is the CTDE bargain, upgraded for diffusion policies.

And this is why the paper’s misconception is worth taking seriously. Diffusion policies alone do not coordinate. The coordination comes from the joint critic and the synchronized training objective. Diffusion supplies the policy class; the critic supplies the shared direction.

Synchronized updates matter because diffusion policies move through trajectories, not single actions

A standard policy can often be treated as a direct mapping from state to action distribution. A diffusion policy is more like a small internal process: it begins from noise and repeatedly denoises until an action emerges.

That creates another coordination problem. Multi-agent control already has temporal coupling: one agent’s action changes what the others experience next. Diffusion policies add generation-time coupling: each action is produced through multiple denoising steps. If each agent’s diffusion process is optimized separately, the system may fail to align the final joint behavior.

OMAD addresses this by deriving a synchronized policy objective. The paper frames policy improvement as aligning the joint policy with a target distribution induced by the learned critic. Since exact diffusion likelihood is intractable, it uses an upper-bound surrogate over diffusion trajectories. The result is a shared objective through which all agents are updated together.

This is the part where “multi-agent diffusion” stops being a branding exercise. The algorithm does not merely place a diffusion model inside each agent. It builds a training signal that treats the agents’ denoising policies as parts of one coordinated joint policy.

That is also why the appendix matters. The derivation clarifies that OMAD uses factorized entropy for tractability, but relies on the centralized distributional critic to enforce coordination. This prevents a common misreading: factorized policies do not mean independent learning. They mean decentralized execution with centralized guidance.

For product teams, the distinction is not academic. A deployed system may need local autonomy, but training can still use a simulator, shared replay buffer, and centralized critic. If the training pipeline cannot access joint state-action data, OMAD’s mechanism becomes harder to apply. The method assumes the training phase can see the group.

The evidence supports a mechanism stack, not a single magic ingredient

The experiments use two benchmark families: Multi-Agent Particle Environments and Multi-Agent MuJoCo. The tasks include Cooperative Navigation, Physical Deception, HalfCheetah, Ant, Walker2d, and Swimmer variants. The baselines include strong online MARL methods, HATD3 and HASAC, plus multi-agent extensions of single-agent diffusion-policy methods, MADPMD and MASDAC.

The paper reports results over five random seeds. The headline is that OMAD reaches stronger final returns and improves sample efficiency by roughly 2.5x to 5x across the tested continuous-control tasks. In lower-dimensional MPE tasks, the paper reports up to a 5x reduction in training steps to reach baseline peaks. In higher-dimensional MuJoCo tasks, it reports a consistent 2.5x to 5x sample-efficiency speedup.

The more important reading is how the evidence is layered.

Evidence type Likely purpose What it supports What it does not prove
Main learning curves across 10 tasks Main comparative evidence OMAD learns faster and often reaches higher returns than tested baselines Production readiness in real robots
State coverage in Ant 2x4 Exploration evidence OMAD explores broader state regions early in training That all exploration is useful or safe
Table 3 asymptotic returns Extended comparison with longer baseline training OMAD remains competitive or better despite fewer training steps Universal dominance across all MARL settings
Ablation on distributional critic settings Sensitivity and implementation evidence Critic support and atom count affect performance That one hyperparameter setting transfers everywhere
Denoising-step ablation Efficiency trade-off evidence Eight denoising steps balance return and cost in the tested setting That eight steps is universally optimal
Entropy coefficient study Ablation of exploration control Auto-tuning is more robust than fixed entropy pressure That entropy tuning is solved in all environments
Qualitative locomotion visualization Behavioral sanity check Learned policies produce coordinated movement patterns Mechanistic proof of why coordination emerges

The state coverage result is especially useful because it links the mechanism to behavior. In the Ant 2x4 task after 250,000 training steps, the authors discretize a two-dimensional state space into 1,368 bins. OMAD covers 934 bins, or 68.3%. HATD3 covers 662 bins, or 48.4%. HASAC covers 753 bins, or 55.0%. The paper reports this as a 41% relative improvement over HATD3 and 24% over HASAC.

This does not prove that OMAD always explores better. It does show that in this setting, the entropy-regularized diffusion policy visits a broader portion of the state space early in training. That supports the mechanism: expressiveness plus entropy surrogate can expand exploration, rather than merely making the policy prettier in a latent space.

Table 3 gives another useful boundary. OMAD’s asymptotic returns are strongest or effectively tied across most tasks, even though baselines are trained for a longer horizon: 10 million steps for baselines versus 3 million for OMAD, with an exception for HalfCheetah 6x1 where diffusion models are evaluated at 1 million steps.

Selected examples:

Task Strongest reported baseline OMAD Interpretation
Cooperative Navigation, 3 agents HASAC: -25.1 ± 1.3 -23.9 ± 1.1 OMAD improves a low-dimensional coordination task
Physical Deception, 2 agents HASAC: 45.4 ± 3.1 45.1 ± 4.1 Essentially tied under the paper’s within-1% rule
Ant 2x4d MASDAC: 6936.2 ± 309.7 7449.3 ± 169.3 Clear gain in a difficult locomotion variant
HalfCheetah 2x3 MASDAC: 10540.7 ± 963.8 14368.5 ± 1166.0 Large gain where multimodal gait control plausibly matters
Walker2d 2x3 MASDAC: 8154.4 ± 322.5 8180.4 ± 803.5 Near tie in mean, higher OMAD variance
Swimmer 2x1 MASDAC: 149.3 ± 12.6 162.0 ± 22.5 Improvement, but with visible variance

The Physical Deception row is a useful reminder not to turn the paper into a victory parade. HASAC’s mean is slightly higher than OMAD’s, although the paper treats results within a 1% gap as optimal. Walker2d also deserves a careful reading: OMAD has the highest mean, but the reported standard deviation is large. The correct interpretation is not “OMAD crushes everything everywhere.” The correct interpretation is that OMAD is consistently strong, especially in continuous-control settings where coordinated multimodal behavior matters.

That is already meaningful. No need to add confetti.

The ablations say OMAD is engineered, not merely inspired

The ablation section is where the paper becomes more operationally useful.

First, the distributional critic needs an adequate value support and discretization. On Ant 2x4, low support values such as $V_{\max}=200$ truncate returns and damage performance. Performance stabilizes around $V_{\max}=1000$, and the authors adopt $V_{\max}=1200$ with 100 intervals. This is not a philosophical point. If the critic’s support cannot represent the returns the task actually produces, the policy receives distorted guidance.

Second, diffusion denoising steps create a cost-performance trade-off. The paper tests 2, 4, 8, 12, and 16 denoising steps. Performance saturates at 8 steps, with roughly 6000 return, matching 12- and 16-step models. The 2- and 4-step versions underperform, below roughly 4500. Increasing from 8 to 16 steps raises training time from about 22 hours to 26 hours and adds about 3 seconds of latency in the reported setup.

That is the kind of result business teams should actually read. The lesson is not “more diffusion steps are better.” The lesson is that generative-policy expressiveness has an operational price, and there may be a sweet spot where most control performance is captured before inference cost becomes tedious.

Third, the entropy coefficient is sensitive. A fixed large coefficient, $\alpha=0.1$, injects too much stochasticity and destabilizes denoising. Smaller fixed values can work, but require tuning. Auto-tuning reaches about the same peak performance as the best fixed settings, around 6000 return, while reducing the need for exhaustive hyperparameter search.

This matters because in real automation settings, the cost of a method is not just GPU time. It is also engineer time. A method that performs only after delicate hand-tuning may be less attractive than a slightly less elegant method that behaves predictably across tasks. OMAD’s auto-tuning is therefore not a decorative module. It is part of the practical case.

What this means for business: cheaper coordinated learning, not instant autonomous teams

The business relevance is clearest in domains where interaction data is expensive and coordination failures are costly.

Think of robotic locomotion, warehouse fleets, multi-arm manipulation, autonomous inspection drones, simulated traffic agents, and digital twins for manufacturing operations. In these settings, the economic question is not whether an AI policy can eventually learn. Given enough simulation time and enough hardware, many things eventually become possible. The question is whether it can learn coordinated behavior efficiently enough to justify the development cycle.

OMAD’s reported 2.5x to 5x sample-efficiency gains matter because sample efficiency translates into fewer simulator steps, fewer real-world trials, faster iteration, and less time spent watching agents discover surprisingly creative ways to fail.

Still, the paper directly shows benchmark performance, not deployment ROI. The business interpretation should be layered:

Layer What the paper directly shows Cognaptus interpretation Boundary
Algorithmic OMAD improves online MARL performance on MPE and MAMuJoCo benchmarks Diffusion policies can be made practical for online multi-agent continuous control when paired with centralized value guidance Simulated benchmarks only
Operational OMAD reaches strong returns with fewer training steps than baselines Faster coordination learning could reduce experimentation cost in robotics and autonomous systems Wall-clock efficiency still needs optimization
Design Naive diffusion baselines underperform OMAD Expressive policies need training architecture, not just richer generators Does not prove OMAD is the best architecture
Product Decentralized execution remains compatible with centralized training Useful pattern for deployable multi-agent systems trained in simulation Requires access to joint training data
Risk Entropy, denoising steps, and critic settings are sensitive Implementation discipline matters; this is not plug-and-play automation Hyperparameter transfer remains uncertain

The most valuable takeaway is that OMAD reframes diffusion policies from “better action samplers” into “coordination learners with a training scaffold.” For a business team, that scaffold is the productizable part: a training pipeline that can use centralized simulation data, evaluate joint behavior, tune exploration, and then export decentralized policies.

That is much more concrete than saying “AI agents coordinate better.” It also sounds less like a vendor webinar, which is a mercy.

Where the result should not be overextended

The paper is careful enough to give us useful boundaries.

First, the evidence is from simulation benchmarks. MPE and MAMuJoCo are standard and informative, but they are not production factories, roads, ports, or hospitals. The tested agents do not face messy sensor degradation, adversarial human behavior, maintenance schedules, regulatory audits, or procurement committees. The last one is often the true benchmark.

Second, the method is focused on continuous control. The authors explicitly note that extending the framework to discrete action spaces is future work. This matters because many enterprise multi-agent systems involve discrete decisions: assign, route, bid, approve, reject, escalate. OMAD is most directly relevant to continuous physical control, not every multi-agent business process.

Third, the ELBO approximation is a real theoretical boundary. OMAD uses a variational lower bound because exact diffusion entropy is intractable. The appendix notes that the approximation gap is difficult to quantify during training and that tighter lower bounds remain a valuable direction. For applied teams, this means the entropy surrogate should be treated as an engineering approximation, not a perfect measurement of exploration.

Fourth, wall-clock efficiency remains open. The denoising-step ablation shows that action generation cost rises with more diffusion steps. OMAD performs well within the tested setup, and the authors report favorable time-performance behavior versus HATD3 and HASAC, but diffusion-based agents still carry computational overhead. A system that saves simulator samples but increases inference latency may or may not be attractive, depending on the deployment setting.

Finally, OMAD assumes a cooperative training setup with a shared reward structure and centralized critic. This is a strong fit for coordinated robotics and simulated control systems. It is a weaker fit for strategic multi-agent environments where agents have conflicting incentives, private objectives, or limited willingness to share training data. In those cases, the phrase “centralized critic” may be less an architecture and more a political fantasy.

The deeper lesson: expressive policies need disciplined training signals

The paper’s best contribution is not that it imports diffusion into MARL. The field already has enough imports. Some even clear customs.

The deeper lesson is that expressiveness without alignment can make coordination harder. A unimodal policy may be limited, but it is at least simple. A diffusion policy can represent richer possibilities, but those possibilities need to be shaped by a global objective, stabilized through value estimation, and regulated through exploration pressure.

OMAD’s mechanism can be summarized as a four-step chain:

  1. Diffusion policies provide multimodal action generation.
  2. A variational entropy lower bound makes online entropy-regularized exploration tractable.
  3. A centralized distributional critic evaluates joint behavior and provides richer value guidance.
  4. Synchronized updates align decentralized diffusion actors toward coordinated control.

That chain is why the mechanism-first reading is better than a benchmark summary. The paper is not saying, “Diffusion is better.” It is saying, “Diffusion becomes useful for online multi-agent control only after the training objective is rebuilt around its inconvenient mathematics.”

For Cognaptus readers, especially those thinking about autonomous operations, robotics, or simulation-trained agents, the practical message is straightforward: do not buy “agent coordination” as a feature label. Ask what the training signal sees, how exploration is regulated, whether local policies are updated under a shared objective, and whether sample efficiency survives the move from benchmark to deployment.

Coordination is not what happens when every agent becomes smarter in isolation. Coordination is what happens when their learning process gives them a reason to become useful together.

That is the quiet point in OMAD. The robots do not just learn to move. They learn, approximately and imperfectly, to breathe in rhythm.

Cognaptus: Automate the Present, Incubate the Future.


  1. Zhuoran Li, Hai Zhong, Xun Wang, Qingxin Xia, Lihua Zhang, and Longbo Huang, “Diffusing to Coordinate: Efficient Online Multi-Agent Diffusion Policies,” arXiv:2602.18291, 2026. https://arxiv.org/html/2602.18291 ↩︎