CSE510 Deep Reinforcement Learning (Lecture 24)
Cooperative Multi-Agent Reinforcement Learning (MARL)
This lecture introduces cooperative multi-agent reinforcement learning, focusing on formal models, value factorization, and modern algorithms such as QMIX and QPLEX.
Multi-Agent Coordination Under Uncertainty
In cooperative MARL, multiple agents aim to maximize a shared team reward. The environment can be modeled using a Markov game or a Decentralized Partially Observable MDP (Dec-POMDP).
A transition is defined as:
Parameter explanations:
- : current global state.
- : next global state.
- : action taken by agent .
- : environment transition function.
The shared return is:
Parameter explanations:
- : discount factor.
- : horizon length.
- : shared team reward at time .
CTDE: Centralized Training, Decentralized Execution
Training uses global information (centralized), but execution uses local agent observations. This is critical for real-world deployment.
Joint vs Factored Q-Learning
Joint Q-Learning
In joint-action learning, one learns a full joint Q-function:
Parameter explanations:
- : joint value for the entire team.
- : joint action vector across agents.
Problem:
- The joint action space grows exponentially in .
- Learning is not scalable.
Value Factorization
Instead of learning directly, we factorize it into individual utility functions:
Parameter explanations:
- : joint action vector.
- : mixing network combining individual Q-values.
The goal is to enable decentralized greedy action selection.
Individual-Global-Max (IGM) Condition
The IGM condition enables decentralized optimal action selection:
Parameter explanations:
- : search for best joint action.
- : best local action for agent .
- : individual utility for agent .
IGM makes decentralized execution optimal with respect to the learned factorized value.
VDN (Value Decomposition Networks)
VDN assumes:
Parameter explanations:
- : value of agent ‘s action.
- : linear sum over agents.
Pros:
- Very simple, satisfies IGM.
- Fully decentralized execution.
Cons:
- Limited representation capacity.
- Cannot model non-linear teamwork interactions.
QMIX: Monotonic Value Factorization
QMIX uses a state-conditioned mixing network enforcing monotonicity:
Parameter explanations:
- : gradient of global Q w.r.t. individual Q.
- : ensures monotonicity required for IGM.
The mixing function is:
Parameter explanations:
- : neural network with non-negative weights.
- : global state conditioning the mixing process.
Benefits:
- More expressive than VDN.
- Supports CTDE while keeping decentralized greedy execution.
Theoretical Issues With Linear and Monotonic Factorization
Limitations:
- Linear models (VDN) cannot represent complex coordination.
- QMIX monotonicity limits representation power for tasks requiring non-monotonic interactions.
- Off-policy training can diverge in some factorizations.
QPLEX: Duplex Dueling Multi-Agent Q-Learning
QPLEX introduces a dueling architecture that satisfies IGM while providing full representation capacity within the IGM class.
QPLEX Advantage Factorization
QPLEX factorizes:
Parameter explanations:
- : positive mixing coefficients.
- : individual utility.
- : per-agent baseline value.
- : maximization over joint actions.
QPLEX Properties:
- Fully satisfies IGM.
- Has full representation capacity for all IGM-consistent Q-functions.
- Enables stable off-policy training.
QPLEX Training Objective
QPLEX minimizes a TD loss over :
Parameter explanations:
- : shared team reward.
- : discount factor.
- : next state.
- : next joint action evaluated by TD target.
- : QPLEX global value estimate.
Role of Credit Assignment
Credit assignment addresses: “Which agent contributed what to the team reward?”
Value factorization supports implicit credit assignment:
- Gradients into each act as counterfactual signals.
- Dueling architectures allow each agent to learn its influence.
- QPLEX provides clean marginal contributions implicitly.
Performance on SMAC Benchmarks
QPLEX outperforms:
- QTRAN
- QMIX
- VDN
- Other CTDE baselines
Key reasons:
- Effective realization of IGM.
- Strong representational capacity.
- Off-policy stability.
Extensions: Diversity and Shared Parameter Learning
Parameter sharing encourages sample efficiency, but can cause homogeneous agent behavior.
Approaches such as CDS (Celebrating Diversity in Shared MARL) introduce:
- Identity-aware diversity.
- Information-based intrinsic rewards for agent differentiation.
- Balanced sharing vs agent specialization.
These techniques improve exploration and cooperation in complex multi-agent tasks.
Summary of Lecture 24
Key points:
- Cooperative MARL requires scalable value decomposition.
- IGM enables decentralized action selection from centralized training.
- QMIX introduces monotonic non-linear factorization.
- QPLEX achieves full IGM representational capacity.
- Implicit credit assignment arises naturally from factorization.
- Diversity methods allow richer multi-agent coordination strategies.