Cooperative Multi-Agent Reinforcement Learning

Definition

Cooperative multi-agent reinforcement learning studies teams of learning agents that optimize a shared or aligned objective while acting through separate observations, policies, and action channels.

Why It Matters

Cooperative MARL is the baseline layer beneath many safe-MARL questions. Safety mechanisms, shields, constraints, and reward-machine decompositions are difficult to judge unless they are compared against strong unconstrained cooperative learners such as Value Decomposition Networks and Multi-Agent PPO.

Recent benchmark work also makes this a measurement issue: a method that performs well on one cooperative suite may not handle sparse rewards, collision dynamics, high-dimensional observations, or task families that require stronger Multi-Agent Coordination.

Formalism / Key Objects

  • A common shared-reward model is a DEC-POMDP

where n agents choose a joint action A=A_1 x ... x A_n, observe local signals, and optimize a discounted team objective.

  • The team objective is typically
  • Centralized training with decentralized execution uses global information during learning but deploys local policies at execution time.
  • Major algorithm families include independent learners, centralized critics, value factorization, communication, population-based training, and explicit coordination through task specifications.
  • Cooperative MARL Baseline Formalisms keeps the reusable DEC-POMDP, VDN, MAPPO, and IPPO equations together.
  • Cooperative MARL Benchmarking tracks whether baseline comparisons cover enough task families, observation modalities, and training-time costs.

Connections

Common Confusions

  • Cooperative does not mean fully observable: many cooperative benchmarks are partially observed even with a shared reward.
  • Centralized training does not imply centralized deployment.
  • Shared reward does not remove credit assignment; it can make local contribution harder to identify.
  • Strong performance on one benchmark family does not establish general cooperative competence.

Key Sources