Research Papers 论文研究 4d ago Updated 3d ago 更新于 3天前 44

When to Communicate: Belief Distributions and KL Divergence for Principled Gating in Multi-Agent RL 何时通信:基于信念分布与KL散度的多智能体强化学习原则性门控方法

Proposes a principled communication gating mechanism for multi-agent RL using KL divergence between belief distributions instead of learned binary gates via REINFORCE Agents maintain belief distributions over latent world states via softmax over LSTM hidden states, communicating only when disagreement exceeds a fixed threshold On the harder Predator-Prey 20×20 benchmark, KL-belief with ε=0.5 outperforms IC3Net by 1.47 average steps and 11 percentage points in success rate with tighter variance T 提出基于KL散度的原则性门控机制,解决多智能体强化学习中"何时通信"的决策问题 每个智能体维护基于LSTM隐藏状态的信念分布,仅当信念分歧超过阈值时才触发通信 在Predator-Prey 20×20复杂环境中,KL散度门控(ε=0.5)以42%成功率超越IC3Net的31%,步数差距1.47步 信念头机制具有正交贡献:既提供可解释的门控决策,又独立提升潜在表征质量,在MPE任务中将方差降低26倍

55
Hot 热度
72
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • Proposes a principled communication gating mechanism for multi-agent RL using KL divergence between belief distributions instead of learned binary gates via REINFORCE
  • Agents maintain belief distributions over latent world states via softmax over LSTM hidden states, communicating only when disagreement exceeds a fixed threshold
  • On the harder Predator-Prey 20×20 benchmark, KL-belief with ε=0.5 outperforms IC3Net by 1.47 average steps and 11 percentage points in success rate with tighter variance
  • The belief head provides two orthogonal benefits: principled gating when beliefs diverge, and improved latent representations that boost coordination even when gating is inactive
  • On MPE simple_spread, the approach improves mean reward by 12 points and reduces variance by 26× compared to baselines

Why It Matters

This work addresses a fundamental gap in multi-agent RL—deciding when to communicate—by replacing high-variance, uninterpretable learned gating with a mathematically grounded KL divergence criterion. For practitioners building multi-agent systems, this offers a more stable and interpretable alternative to REINFORCE-based communication gates, with demonstrated gains in both performance and training consistency on standard benchmarks.

Technical Details

  • Each agent maintains a belief distribution over a latent world state, computed as a softmax over its LSTM hidden state; communication is triggered when the KL divergence between co-agents' belief distributions exceeds a fixed threshold ε
  • The approach is evaluated on the Predator-Prey benchmark from IC3Net (10×10 and 20×20 grids) with 5 seeds each, and on the MPE simple_spread environment, comparing against IC3Net, CommNet, and an independent controller
  • Threshold ablation over ε ∈ {0.1, 0.3, 0.5, 1.0} reveals an inverted U-shape performance curve, with ε=0.5 optimal on PP 20×20 (73.84 avg steps, 42% success vs. IC3Net's 75.31 steps and 31%)
  • On MPE, the belief head improves mean reward by 12 points and reduces variance by 26× even when gating is inactive, indicating the representation learning benefit is orthogonal to the gating mechanism
  • The method eliminates the high-variance policy gradient signal inherent in IC3Net's learned binary gate, replacing it with a deterministic, threshold-based communication decision

Industry Insight

  • The inverted U-shape in threshold ablation suggests that optimal communication frequency is non-trivial and environment-dependent; practitioners should treat the KL threshold as a critical hyperparameter requiring careful tuning rather than a fixed constant
  • The dual benefit of improved representations plus principled gating implies that adding belief heads to existing multi-agent architectures may yield performance gains even without activating communication gating, making this a low-risk modification
  • As multi-agent systems scale to more complex, sparse-communication scenarios, deterministic gating based on belief divergence offers a more deployable alternative to gradient-based gates, which suffer from instability and lack interpretability in production settings

TL;DR

  • 提出基于KL散度的原则性门控机制,解决多智能体强化学习中"何时通信"的决策问题
  • 每个智能体维护基于LSTM隐藏状态的信念分布,仅当信念分歧超过阈值时才触发通信
  • 在Predator-Prey 20×20复杂环境中,KL散度门控(ε=0.5)以42%成功率超越IC3Net的31%,步数差距1.47步
  • 信念头机制具有正交贡献:既提供可解释的门控决策,又独立提升潜在表征质量,在MPE任务中将方差降低26倍

为什么值得看

该研究为多智能体通信机制提供了可解释且低方差的替代方案,解决了现有REINFORCE门控方法不稳定、不可解释的核心痛点。对从事多智能体协作、通信协议设计的AI研究者具有直接参考价值。

技术解析

  • 核心架构:每个智能体维护一个关于潜在世界状态的信念分布,通过LSTM隐藏状态的softmax计算得出,通信门控由信念分布间的KL散度决定
  • 门控机制:设定固定阈值ε,仅当KL散度超过阈值时触发信息交换,阈值搜索空间为{0.1, 0.3, 0.5, 1.0}
  • 评估基准:Predator-Prey(IC3Net基准,10×10和20×20两种规模,5个随机种子)和MPE simple_spread任务
  • 对比方法:IC3Net、CommNet、独立控制器(Independent Controller)
  • 关键发现:PP 10×10简单环境中IC3Net全面占优;PP 20×20复杂环境呈现倒U形阈值响应曲线;MPE任务中信念头即使门控不激活也能提升12分奖励并降低26倍方差

行业启示

  • 多智能体通信设计应从"连续通信"转向"按需通信",KL散度等统计度量可提供可解释的门控依据
  • 复杂环境(如20×20 Predator-Prey)中原则性门控机制的优势更明显,提示高维度协作场景值得优先探索
  • 信念表征与通信门控的正交性表明,改进潜在状态建模本身即可带来性能增益,无需依赖通信触发机制

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 Agent Agent