Research
Multi-Agent Decision-Focused Learning via Value-Aware Sequential Communication
Overview Research area: Multi-agent reinforcement learning (MARL), specifically learned inter-agent communication and decision-focused learning (predict-and-optimize). Technical level: Advanced. The p
- arXiv
- 2604.08944
- Published
- 2026-04-10
- Authors
- Benjamin Amoh, Geoffrey Parker, Wesley Marrero
AI summary
Overview
Research area: Multi-agent reinforcement learning (MARL), specifically learned inter-agent communication and decision-focused learning (predict-and-optimize).
Technical level: Advanced. The paper assumes familiarity with Dec-POMDPs, value decomposition methods like QMIX, bilevel optimization, the Implicit Function Theorem, and information-theoretic bounds.
Scope: The paper proposes SeqComm-DFL, a framework that trains multi-agent communication channels end-to-end for downstream decision quality rather than for information-theoretic or reconstruction proxies, and validates it on hospital coordination and StarCraft benchmarks.
What This Paper Is About
When multiple agents must cooperate under partial observability—each seeing only a slice of the world—they need to share information. But most existing communication methods train agents to maximize a proxy objective such as mutual information or message reconstruction accuracy, not the actual team reward. This paper argues that this is the same "objective mismatch" that plagues model-based RL, and proposes to fix it by optimizing messages directly for how much they improve the receiver's decisions, combined with a sequential leader-follower protocol for action selection.
Key Contributions
-
Value-aware message generation. The authors define a decision-value metric, ΔQ_j(m_i), which measures how much agent j's best achievable Q-value improves when receiving a message from agent i. Messages are trained to maximize this quantity across all receivers, directly aligning communication with downstream task performance. They show via the Envelope Theorem that this objective emerges naturally from a decision-focused loss.
-
Sequential Stackelberg conditioning with guidance potential. Instead of agents acting simultaneously, they act in a priority order determined by "guidance potential"—a prosocial measure of how much each agent can improve team outcomes by leading. Followers condition on messages and committed actions from higher-priority agents, breaking symmetry and enabling Pareto-superior equilibria. This connects to the information-theoretic notion of a "coordination information gap."
-
Decision-focused world model learning with QMIX factorization. The authors extend Optimal Model Design (OMD) to a communication-augmented setting: a bilevel optimization where the inner loop trains a critic on model-rolled-out predictions and the outer loop evaluates it on real environment data. They add a "message-awareness" hinge loss to prevent the critic from ignoring messages (a failure mode they call inner-loop apathy).
-
Theoretical guarantees. Theorem 5.1 gives a lower bound on the performance gain from communication in terms of the coordination information gap. Proposition 5.2 shows the DFL formulation yields a tighter Q* approximation than MLE-trained models. Theorem 5.3 proves the bilevel optimization converges to a stationary point of the true loss at O(1/√T), despite implicit differentiation and conjugate-gradient approximations.
Main Findings
-
Large reward gains in healthcare coordination: On a 3-specialist, 100-patient hospital simulation with specialty-gated observations, SeqComm-DFL achieves episode rewards between −70 and −30 versus OMD's plateau near −200, a 4–6× improvement. Severity improvement rises to 0.2 from 0.05.
-
13%+ win rate improvement on SMAC: The framework also outperforms baselines on the StarCraft Multi-Agent Challenge, with win-rate gains above 13%.
-
Ablations confirm each component's importance: Removing the value-aware loss drops performance by 12%, removing Stackelberg conditioning by 9.1%, and removing guidance potential by 5.4%.
-
Communication is provably necessary in the hospital environment: A proposition shows the no-communication performance gap is Ω(Σ E[h_c] · P(ξ ≠ σ))—linear in hidden risk magnitude—so the gap is inherent to the information structure, not an artifact of learning.
-
Decision-focused training beats prediction-focused training: Because the outer loop optimizes Bellman error rather than dynamics/reward prediction error, value-irrelevant prediction mistakes do not degrade the final policy.
Methodology in Plain English
The core idea is to treat the communication module as a "predictor" and the MARL policy as the "optimizer," then train the predictor end-to-end so it produces messages that make teammates decide better.
Three stages drive coordination each step:
- Negotiation. Score each agent by how much the team would benefit if that agent acted first, and sort agents by this score to form a priority order.
- Launching. The top-priority agent picks an action using only its own observation and commits. Each subsequent agent sees the messages (and choices) of everyone ahead of it and picks its action accordingly. This is a Stackelberg leader-follower structure.
- Regularization. Two auxiliary losses keep messages useful: one rewards messages that raise receivers' Q-values (value-aware loss), and one rewards messages that change receivers' behavior (counterfactual influence, measured by KL divergence).
For training the world model, the authors use a bilevel scheme. The inner loop fits a critic to Bellman targets generated by the learned model. The outer loop evaluates that critic on real environment data and updates the model parameters. Rather than backpropagating through thousands of inner steps, they use the Implicit Function Theorem to differentiate the inner optimum directly, and a conjugate-gradient solver to invert the Hessian efficiently. A QMIX-style factorization keeps the joint value function scalable across agents. A warmup phase uses Monte-Carlo rollouts to ground the ΔQ estimates before the critic is reliable.
Why This Matters
Impact on research. This is the first framework to extend decision-focused learning to multi-agent communication with endogenous uncertainty—where messages actively change other agents' behavior and create feedback loops absent from standard predict-and-optimize settings. It unifies three previously separate threads: learned MARL communication, model-based RL, and DFL.
Real-world applications:
- Intensive care coordination. Specialists (cardiology, pulmonology, neurology) each see partial patient data; communication-aware policies can avoid adverse drug interactions and blind-treatment penalties.
- Multi-robot teams. Warehouse or search-and-rescue fleets where each robot observes only its local surroundings but actions must complement teammates' choices.
- Traffic signal control. Intersections with local cameras coordinating to smooth flow across a network.
- Distributed energy or resource allocation. Agents with partial grid telemetry coordinating dispatch decisions.
Industry relevance. Any system with bandwidth-limited communication between cooperating decision-makers—autonomous fleets, clinical decision support, industrial control—can benefit from messages optimized for decision impact rather than data fidelity. The bilevel training machinery is also reusable wherever a learned model feeds a downstream optimizer.
Future Directions
-
Scaling to larger agent populations. The current experiments use small teams (3 specialists, standard SMAC squads). It is unclear how guidance potential ordering and Stackelberg conditioning scale when the priority-order search is over dozens of agents.
-
Relaxing the sequential assumption. Real-time systems may not tolerate strictly sequential action selection. Investigating asynchronous or batched Stackelberg variants, and their theoretical guarantees, would broaden applicability.
-
Robustness to adversarial or faulty messages. The framework assumes cooperative agents; how value-aware training behaves under noisy, delayed, or deceptive communication is untested.
-
Bridging to real-world deployment. Transferring from simulated hospital and SMAC environments to clinical logs or physical robot teams requires handling off-policy data, safety constraints, and partial-credit rewards that differ from the clean shared-reward setting.
Target Audience
Researchers and graduate students working on multi-agent reinforcement learning, learned communication protocols, or decision-focused/predict-and-optimize methods. Practitioners building cooperative multi-agent systems under bandwidth constraints will find the value-aware messaging principle directly applicable. Readers without background in bilevel optimization or Dec-POMDPs will find the theoretical sections demanding, though the architectural contributions—guidance potential, Stackelberg sequencing, and the value-aware loss—are conceptually accessible on their own.
Authors’ abstract
Multi-agent coordination under partial observability requires agents to share complementary private information. While recent methods optimize messages for intermediate objectives (e.g., reconstruction accuracy or mutual information), rather than decision quality, we introduce \textbf{SeqComm-DFL}, unifying the sequential communication with decision-focused learning for task performance. Our approach features \emph{value-aware message generation with sequential Stackelberg conditioning}: messages maximize receiver decision quality and are generated in priority order, with agents conditioning on their predecessors. The \emph{guidance potential} determined by their prosocial ordering. We extend Optimal Model Design to communication-augmented world models with QMIX factorization, enabling efficient end-to-end training via implicit differentiation. We prove information-theoretic bounds showing that communication value scales with coordination gaps and establish $\mathcal{O}(1/\sqrt{T})$ convergence for the bilevel optimization, where $T$ denotes the number of training iterations. On collaborative healthcare and StarCraft Multi-Agent Challenge (SMAC) benchmarks, SeqComm-DFL achieves four to six times higher cumulative rewards and over 13\% win rate improvements, enabling coordination strategies inaccessible under information asymmetry.