Pith. sign in

REVIEW 4 major objections 5 minor 45 references

GTDE: Grouped Training with Decentralized Execution for Multi-agent Actor-Critic

T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read The paper proposes GTDE, a training paradigm in which each agent learns from a small, self-chosen group of other agents, and reports that it beats both the full-centralized and fully-decentralized baselines in large-scale multi-agent tasks.

desk verdict GTDE's adaptive grouping is a plausible new idea, but the paper's CTDE baselines are too weak to support the claim that it beats centralized training at scale. read the letter →

arxiv 2501.10367 v1 pith:2WNRTXGE submitted 2024-12-12 cs.MA cs.AI

classification cs.MAcs.AI
keywords multi-agentreinforcementlearningcentralizedtrainingdecentralizedexecutionandgroupedactor-criticGumbel-Sigmoidlarge-scalecooperationadaptivegrouping
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that the two standard training schemes for multi-agent reinforcement learning—centralized training with decentralized execution (CTDE), which uses all agents' information, and decentralized training and execution (DTDE), which uses only each agent's own information—both lose effectiveness as the number of agents grows. It proposes a middle path, grouped training with decentralized execution (GTDE), in which each agent selects a small set of other agents to share information with during training, and the set is chosen from its own observation history rather than from global knowledge. The authors support the proposal with experiments showing a 382% average total-reward gain over the DTDE baseline IAC in a 495-agent cooperative gathering scenario, a 100% win rate against both CTDE and DTDE representatives in a 64-agent competitive battle, and win rates on a 20-agent StarCraft benchmark that match or exceed CTDE. If correct, GTDE would make actor-critic training feasible at scales where a centralized critic is untrainable.

What carries the argument

The central object is the directed graph $G^t=(V^t,E^t)$ whose edge $\langle v_i, v_j\rangle$ means agent $i$ uses agent $j$'s information at step $t$; the group $g(v_i)$ of an agent is its set of out-neighbors. The argument is carried by the adaptive grouping module, a network that maps each agent's observation history $\tau_i$ to an $n$-variate Bernoulli distribution over possible links and samples it with Gumbel-Sigmoid to preserve differentiability, and by the group information aggregation module, which merges the histories of linked agents using either matrix multiplication with the adjacency matrix or graph attention. Together they make GTDE a spectrum that contains the prior paradigms as extremes: CTDE is recovered when all agents are pairwise linked (the complete graph), and DTDE is recovered when each agent is linked only to itself (the self-loop graph). The critic is trained on the aggregated group history $\tau'_{g(v_i)}$, while the actor uses only $\tau_i$.

What would settle it

Run GTDE on the two-button task described in the paper, where a reward is obtained only when two agents separated by a large distance press two buttons at the same time; if the two relevant agents fail to learn a link and performance stays at DTDE levels, the grouping module's assumption of inferring links from observation history alone would be falsified.

Watch

Extended reading notes

Core claim

The paper's central claim is that the information an agent needs for value estimation can be represented as a directed graph of links to other agents, and that training on the local subgraph—not the complete graph (CTDE) and not the self-loop graph (DTDE)—is both sufficient and more scalable. GTDE learns these links end-to-end: an adaptive grouping network outputs, for each agent and each other agent, a Bernoulli probability of linkage based on the agent's observation history; Gumbel-Sigmoid sampling converts this into a differentiable adjacency matrix. A group information aggregation module then combines the observation histories of linked agents, either by matrix multiplication or by masked graph attention, and the actor's value function is trained on the aggregated group trajectory. Execution remains fully decentralized because at action time each policy sees only its own observation. The paper reports that this single framework improves on both paradigms across three benchmarks, and that ablations with fixed or random grouping confirm the learned links, not the aggregation mechanism, drive the gains.

Load-bearing premise

The load-bearing premise is that an agent's own observation history is enough to infer which other agents it should coordinate with; if the relevant collaborators are far away and invisible in local observations, the learned groups become arbitrary and the reported gains would disappear, and the paper provides only empirical evidence rather than a theoretical guarantee for this step.

Editorial extensions

If this is right

  • Training a critic no longer requires input that grows with the number of agents: the value input is the aggregated group trajectory, so the framework can be extended to populations far beyond 495 agents without changing network architecture.
  • The framework can be combined with communication-based methods: the learned adjacency matrix gives a natural routing protocol for sharing information, an avenue the paper notes as complementary to GTDE.
  • In the tested scenarios, GTDE uses roughly five times less input information per agent than CTDE, which translates directly into lower communication and memory costs in deployment.
  • The adaptive grouping mechanism doubles as a discoverability tool: the links it learns can be interpreted as task decompositions, as in the Battle scenario where distant agents link to form a besieging group.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper's two-button counterexample suggests a boundary condition the authors do not test: GTDE may fail when the agents that need to coordinate are mutually invisible, so a natural next experiment is to stress-test the grouping module on long-range coordination tasks and decide whether a small amount of global hint at training time is needed.
  • Because the adjacency matrix has fixed size $n \times n$ and new agents can only link to existing ones, the framework as presented is not open to population growth; a forward-looking extension would replace the matrix with a learned neighbor-querying function or a graph generative model.
  • The paper does not ablate the two aggregation methods (matrix multiplication versus graph attention), so a reader can infer that the large gains come from the adaptive grouping module rather than from the aggregation backbone; a direct comparison of the two aggregators under identical grouping would test whether attention weights add value.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes GTDE (Grouped Training with Decentralized Execution), a training-time grouping paradigm for multi-agent actor-critic methods. The key idea is to let each agent, during training, condition its value function on a dynamically selected subset of other agents' observation histories (a 'group') rather than on individual or joint observations. Grouping is learned end-to-end via a Gumbel-Sigmoid reparameterization of an adjacency matrix, with group information aggregated by matrix multiplication or by graph attention. The authors evaluate GTDE against MAPPO/IPPO on SMACv2 20v20, against MAAC/IAC on a 64-agent Battle environment, and against IAC on a 495-agent Gather environment, reporting improvements and a 100% win rate against the two baselines in Battle.

Significance. If fully supported, the GTDE idea would be a useful contribution to the large-scale MARL literature, offering a way to retain some inter-agent coordination during training without the costly joint observation. The paper provides code, ablations (GTDE-F, GTDE-U, GTDE-A), and reports the average number of agents used in the critic, which indicates a substantial reduction in input information. However, the headline claim that GTDE outperforms CTDE as the number of agents grows is not convincingly established by the current experiments, because the CTDE baselines in the large-scale scenarios are either absent or implemented in an unfavorable way, and the SMACv2 advantage over MAPPO is within one standard deviation on two of three maps. The contribution is therefore promising but needs additional empirical support.

major comments (4)
  1. [Section 5, Table 1, Fig. 4] The claim that GTDE outperforms CTDE at scale is not supported by the experiments on Battle and Gather. The only CTDE baseline in these scenarios is MAAC with a flattened joint observation, and the paper itself states that MAAC's input dimension of (13×13×5+32)×64 makes it perform worse than IAC. This is an implementation artifact of a particular CTDE design rather than a fundamental property of CTDE. A proper CTDE baseline such as MAPPO with a state-based critic, MAAC with entity-wise attention, or a value-factorization method like QMIX would not suffer from this failure mode. Consequently, the 100% win rate against MAAC in Battle cannot be interpreted as a win against CTDE in general.
  2. [Section 5, Gather, Fig. 6] The reported 382% average total-reward improvement is computed against IAC, a DTDE baseline, and no CTDE baseline is trained in this scenario. The statement in the conclusion that 'CTDE becomes untrainable due to the high input dimensionality' is a conclusion about the particular MAAC implementation, not an inherent limitation of CTDE. The paper should either run a state-based MAPPO or another scalable CTDE method in Gather, or explicitly qualify the claim as a comparison against DTDE only.
  3. [Table 1, Battle column] The table is difficult to interpret and appears to contradict the text. The text states that 'GTDE defeated them with a 100% win rate' against IAC and MAAC, while Table 1 lists GTDE's Battle value as 52.3(2.8) and CTDE/DTDE as 100.0(0.0). If the entries in the Battle column are the win rates of GTDE against the algorithm in the corresponding row, the caption must say so explicitly; if they are the win rates of the algorithms themselves, the 52.3 value for GTDE needs explanation. As it stands, the table and the text cannot both be correct, undermining the empirical basis of the Battle claim.
  4. [Section 4, Adaptive Grouping, and Table 1 ablations] The paper does not provide evidence that the adaptive grouping module learns meaningful, non-trivial groupings. In Battle, GTDE-U (uniform/random grouping) still achieves a 91.8% win rate, and in SMACv2 the gap between GTDE and GTDE-U is modest (53.4 vs 46.4, 48.4 vs 43.5, 38.8 vs 32.8). This suggests that a large part of the observed benefit may come from the aggregation of a subset of observations rather than from the specific learned grouping. The authors should report the learned adjacency matrices qualitatively and provide a quantitative measure of grouping quality, or temper the claim that adaptive grouping is the key component.
minor comments (5)
  1. [Section 4, Eq. (3)] The term 'group' is used for the set of agents that a given agent is linked to, but this does not define a partition of the agent set; two agents can have different groups and the 'number of groups' is therefore not well-defined. Suggest clarifying this terminology.
  2. [Appendix A] The derivation of Gumbel-Sigmoid uses two independent Gumbel noises (ϵ1 and ϵ2) but the text just says ϵ ∼ Gumbel(0,1); please specify that the two noises are independent.
  3. [Section 5, Hyperparameter] The paper does not report sensitivity to the mask dropout probability (0.1) or the Gumbel temperature; a short sensitivity analysis or a note on their choice would strengthen the paper.
  4. [Figure 5] The partial links in the Battle scenario are described in the text but the figure lacks labels or arrows that make it easy to see which agents are linked; the figure needs a clearer caption and legend.
  5. [References] The reference 'Ruan et al. 2023' appears in the bibliography but is not cited in the body of the paper.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: GTDE's reported gains are direct empirical measurements against external baselines, and the method's components are not defined in terms of the target results.

full rationale

The paper's central claims are empirical: GTDE is compared with IAC/IPPO (DTDE) and MAAC/MAPPO (CTDE) on SMACv2, Battle, and Gather, and the reported improvements (e.g., 382% total reward in Gather, win rates in Battle) are measured outcomes, not quantities derived from fitted parameters. The adaptive grouping module is trained end-to-end with Gumbel-Sigmoid sampling; this is a standard reparameterization technique and is not fitted to the benchmark results, nor is any benchmark metric used to define the grouping objective. There is no equation in the paper that reduces a prediction to an input by construction, and no fitted parameter is renamed as a prediction. The only self-citations (Wang et al. 2022; Wang, Huang, and Xu 2024) appear in the introduction as examples of MARL application areas and are not load-bearing for the GTDE derivation or the empirical evaluation. Concerns about the weakness of the CTDE baseline in Battle/Gather or the inconsistency between Table 1 and the claimed 100% win rate are substantive evidence-quality issues, but they are not circularity: the comparisons are still external measurements rather than self-referential definitions. Therefore the paper is self-contained against external benchmarks, and the circularity score is 0.

Assumptions & free parameters 2 free parameters · 4 assumptions · 0 invented entities

The central claim rests on domain assumptions about observability and communication, plus standard RL assumptions. No new physical entities are introduced.

free parameters (2)
  • Mask dropout probability = 0.1
    In Group Information Aggregation, a mask randomly drops adjacency entries with probability 0.1 to simulate communication failures and prevent all-to-all grouping; chosen by hand, not tuned.
  • Gumbel-Sigmoid temperature
    No temperature is reported; the Gumbel-Sigmoid sampling in Sec. 4 and Appendix A likely uses a fixed temperature of 1, a hand-chosen hyperparameter for gradient estimation.
assumptions (4)
  • domain assumption Each agent's observation history contains sufficient information to identify useful training links.
    The Adaptive Grouping module takes only tau_i as input (Sec. 4); no theoretical guarantee is provided.
  • domain assumption Agents can exchange observation trajectories within their group during training.
    Group Information Aggregation assumes access to trajectories of linked agents (Sec. 4); this is local, not global, but requires communication during training.
  • domain assumption Parameter sharing across agents is valid and does not harm learning.
    The paper sets theta = theta_1 = ... = theta_n (Sec. 4) without justification.
  • standard math PPO clipping and GAE are applicable in this multi-agent setting.
    Standard algorithms used as backbone (Sec. 3), treated as unproved background.

how reviews work

0 comments
Cite this review

Pith. "Pith review of GTDE: Grouped Training with Decentralized Execution for Multi-agent Actor-Critic." pith.science (2026). https://pith.science/paper/2WNRTXGE

@misc{pith2026250110367,
  author       = {Pith},
  title        = {Pith review of: GTDE: Grouped Training with Decentralized Execution for Multi-agent Actor-Critic},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2WNRTXGE}},
  note         = {Machine review of arXiv:2501.10367}
}
read the original abstract

The rapid advancement of multi-agent reinforcement learning (MARL) has given rise to diverse training paradigms to learn the policies of each agent in the multi-agent system. The paradigms of decentralized training and execution (DTDE) and centralized training with decentralized execution (CTDE) have been proposed and widely applied. However, as the number of agents increases, the inherent limitations of these frameworks significantly degrade the performance metrics, such as win rate, total reward, etc. To reduce the influence of the increasing number of agents on the performance metrics, we propose a novel training paradigm of grouped training decentralized execution (GTDE). This framework eliminates the need for a centralized module and relies solely on local information, effectively meeting the training requirements of large-scale multi-agent systems. Specifically, we first introduce an adaptive grouping module, which divides each agent into different groups based on their observation history. To implement end-to-end training, GTDE uses Gumbel-Sigmoid for efficient point-to-point sampling on the grouping distribution while ensuring gradient backpropagation. To adapt to the uncertainty in the number of members in a group, two methods are used to implement a group information aggregation module that merges member information within the group. Empirical results show that in a cooperative environment with 495 agents, GTDE increased the total reward by an average of 382\% compared to the baseline. In a competitive environment with 64 agents, GTDE achieved a 100\% win rate against the baseline.

Figures

Figures reproduced from arXiv: 2501.10367 by the authors.

Figure 1
Figure 1. Each circle represents the observation of an agent, [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of GTDE framework. The red dashed line represents gradient flow. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Test curve of average win rate. The shaded area represents the range between the minimum and maximum values [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: The total reward curve of the Battle scenario(64 [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Partial links in the Battle scenario [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: The total reward curve of the Gather scenario(495 [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

45 extracted references · 39 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    V.; Christianos, F.; and Schäfer, L

    Albrecht, S. V.; Christianos, F.; and Schäfer, L. 2024. Multi-Agent Reinforcement Learning: Foundations and Modern Approaches. MIT Press

  4. [4]

    M.; and Frazier, P

    Blei, D. M.; and Frazier, P. I. 2011. Distance Dependent Chinese Restaurant Processes. J. Mach. Learn. Res., 12: 2461--2488

  5. [5]

    S.; Gupta, T.; Makoviichuk, D.; Makoviychuk, V.; Torr, P

    de Witt, C. S.; Gupta, T.; Makoviichuk, D.; Makoviychuk, V.; Torr, P. H. S.; Sun, M.; and Whiteson, S. 2020. Is Independent Learning All You Need in the StarCraft Multi-Agent Challenge? CoRR, abs/2011.09533

  6. [6]

    Dinneweth, J.; Boubezoul, A.; Mandiau, R.; and Espi \' e , S. 2022. Multi-agent reinforcement learning for autonomous vehicles: a survey. Auton. Intell. Syst., 2(1): 27

  7. [7]

    N.; and Whiteson, S

    Ellis, B.; Moalla, S.; Samvelyan, M.; Sun, M.; Mahajan, A.; Foerster, J. N.; and Whiteson, S. 2022. SMACv2: An Improved Benchmark for Cooperative Multi-Agent Reinforcement Learning

  8. [8]

    Hu, S.; Shen, L.; Zhang, Y.; and Tao, D. 2024. Learning Multi-Agent Communication from Graph Modeling Perspective. In The Twelfth International Conference on Learning Representations

Show all 45 references
  1. [9]

    Huang, W.; Li, K.; Shao, K.; Zhou, T.; Taylor, M.; Luo, J.; Wang, D.; Mao, H.; Hao, J.; Wang, J.; et al. 2022. Multiagent q-learning with sub-team coordination. Advances in Neural Information Processing Systems, 35: 29427--29439

  2. [10]

    Iqbal, S.; de Witt, C. A. S.; Peng, B.; Boehmer, W.; Whiteson, S.; and Sha, F. 2021. Randomized Entity-wise Factorization for Multi-Agent Reinforcement Learning. In Meila, M.; and Zhang, T., eds., Proceedings of the 38th International Conference on Machine Learning, ICML 2021,...

  3. [11]

    Iqbal, S.; and Sha, F. 2019. Actor-Attention-Critic for Multi-Agent Reinforcement Learning. In Chaudhuri, K.; and Salakhutdinov, R., eds., Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019, Long Beach, California, USA , volume 97 o...

  4. [12]

    R.; and Vlassis, N

    Kok, J. R.; and Vlassis, N. 2004. Sparse cooperative Q-learning. In Brodley, C. E., ed., Machine Learning, Proceedings of the Twenty-first International Conference (ICML 2004), Banff, Alberta, Canada, July 4-8, 2004 , volume 69 of ACM International Conference Proceeding Series . ACM

  5. [13]

    R.; and Tsitsiklis, J

    Konda, V. R.; and Tsitsiklis, J. N. 1999. Actor-Critic Algorithms. In Solla, S. A.; Leen, T. K.; and M \" u ller, K., eds., Advances in Neural Information Processing Systems 12, [NIPS Conference, Denver, Colorado, USA, November 29 - December 4, 1999] , 1008--1014. The MIT Press

  6. [14]

    Kraemer, L.; and Banerjee, B. 2016. Multi-agent reinforcement learning as a rehearsal for decentralized planning. Neurocomputing, 190: 82--94

  7. [15]

    a fer, L.; B \

    Krnjaic, A.; Thomas, J. D.; Papoudakis, G.; Sch \" a fer, L.; B \" o rsting, P.; and Albrecht, S. V. 2022. Scalable Multi-Agent Reinforcement Learning for Warehouse Logistics with Robotic and Human Co-Workers. CoRR, abs/2212.11498

  8. [16]

    J.; Matignon, L.; and Fort - Piat, N

    Laurent, G. J.; Matignon, L.; and Fort - Piat, N. L. 2011. The world of independent learners is not markovian. Int. J. Knowl. Based Intell. Eng. Syst., 15(1): 55--64

  9. [17]

    M.; Murakami, Y.; and Ishida, T

    Lhaksmana, K. M.; Murakami, Y.; and Ishida, T. 2013. Role Modeling for Adaptive Multiagent Systems Engineering. In 2013 IEEE/WIC/ACM International Conferences on Intelligent Agent Technology, IAT 2013, 17-20 November 2013, Atlanta, Georgia, USA , 287--292. IEEE Computer Society

  10. [18]

    Liu, Y.; Li, Y.; Xu, X.; Liu, D.; and Dou, Y. 2022. ROGC: Role-Oriented Graph Convolution Based Multi-Agent Reinforcement Learning. In IEEE International Conference on Multimedia and Expo, ICME 2022, Taipei, Taiwan, July 18-22, 2022 , 1--6. IEEE

  11. [19]

    Liu, Y.; Wang, W.; Hu, Y.; Hao, J.; Chen, X.; and Gao, Y. 2020. Multi-Agent Game Abstraction via Graph Attention Neural Network. In The Thirty-Fourth AAAI Conference on Artificial Intelligence, AAAI 2020, The Thirty-Second Innovative Applications of Artificial Intelligence Con...

  12. [20]

    Liu, Z.; Wan, L.; Sui, X.; Chen, Z.; Sun, K.; and Lan, X. 2023. Deep Hierarchical Communication Graph in Multi-Agent Reinforcement Learning. In Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI 2023, 19th-25th August 2023, Macao,...

  13. [21]

    Lowe, R.; Wu, Y.; Tamar, A.; Harb, J.; Abbeel, P.; and Mordatch, I. 2017. Multi-Agent Actor-Critic for Mixed Cooperative-Competitive Environments. In Guyon, I.; von Luxburg, U.; Bengio, S.; Wallach, H. M.; Fergus, R.; Vishwanathan, S. V. N.; and Garnett, R., eds., Advances in ...

  14. [22]

    H.; Chen, H.; Jafferjee, T.; Wang, J.; Yue, L.; Feng, X.; McAleer, S

    Mguni, D. H.; Chen, H.; Jafferjee, T.; Wang, J.; Yue, L.; Feng, X.; McAleer, S. M.; Tong, F.; Wang, J.; and Yang, Y. 2023. MANSA: Learning Fast and Slow in Multi-Agent Systems. In Krause, A.; Brunskill, E.; Cho, K.; Engelhardt, B.; Sabato, S.; and Scarlett, J., eds., Internati...

  15. [23]

    Odell, J.; Parunak, H. V. D.; and Fleischer, M. 2002. The Role of Roles in Designing Effective Agent Organizations. In Garcia, A. F.; de Lucena, C. J. P.; Zambonelli, F.; Omicini, A.; and Castro, J., eds., Software Engineering for Large-Scale Multi-Agent Systems, Research Issu...

  16. [24]

    A.; and Amato, C

    Oliehoek, F. A.; and Amato, C. 2016. A Concise Introduction to Decentralized POMDPs. Springer Briefs in Intelligent Systems. Springer. ISBN 978-3-319-28927-4

  17. [25]

    A.; Spaan, M

    Oliehoek, F. A.; Spaan, M. T. J.; and Vlassis, N. 2008. Optimal and Approximate Q-value Functions for Decentralized POMDPs. J. Artif. Intell. Res., 32: 289--353

  18. [26]

    Oroojlooy, A.; and Hajinezhad, D. 2023. A review of cooperative multi-agent deep reinforcement learning. Appl. Intell., 53(11): 13677--13722

  19. [27]

    Papoudakis, G.; Christianos, F.; Sch \" a fer, L.; and Albrecht, S. V. 2021. Benchmarking Multi-Agent Deep Reinforcement Learning Algorithms in Cooperative Tasks. In Vanschoren, J.; and Yeung, S., eds., Proceedings of the Neural Information Processing Systems Track on Datasets...

  20. [28]

    Phan, T.; Ritz, F.; Belzner, L.; Altmann, P.; Gabor, T.; and Linnhoff - Popien, C. 2021. VAST: Value Function Factorization with Variable Agent Sub-Teams. In Ranzato, M.; Beygelzimer, A.; Dauphin, Y. N.; Liang, P.; and Vaughan, J. W., eds., Advances in Neural Information Proce...

  21. [29]

    Ruan, J.; Hao, X.; Li, D.; and Mao, H. 2023. Learning to collaborate by grouping: A consensus-oriented strategy for multi-agent reinforcement learning. In ECAI 2023, 2010--2017. IOS Press

  22. [30]

    S.; Farquhar, G.; Nardelli, N.; Rudner, T

    Samvelyan, M.; Rashid, T.; de Witt, C. S.; Farquhar, G.; Nardelli, N.; Rudner, T. G. J.; Hung, C.-M.; Torr, P. H. S.; Foerster, J.; and Whiteson, S. 2019. The StarCraft Multi - Agent Challenge . CoRR, abs/1902.04043

  23. [31]

    Silver, D.; Hubert, T.; Schrittwieser, J.; Antonoglou, I.; Lai, M.; Guez, A.; Lanctot, M.; Sifre, L.; Kumaran, D.; Graepel, T.; Lillicrap, T.; Simonyan, K.; and Hassabis, D. 2018. A general reinforcement learning algorithm that masters chess, shogi, and Go through self-play. S...

  24. [32]

    S.; and Barto, A

    Sutton, R. S.; and Barto, A. G. 2018. Reinforcement Learning: An Introduction(2nd edition). MIT Press

  25. [33]

    S.; McAllester, D

    Sutton, R. S.; McAllester, D. A.; Singh, S.; and Mansour, Y. 1999. Policy Gradient Methods for Reinforcement Learning with Function Approximation. In Solla, S. A.; Leen, T. K.; and M \" u ller, K., eds., Advances in Neural Information Processing Systems 12, [NIPS Conference, D...

  26. [34]

    K.; Black, B.; and Jayakumar, M

    Terry, J. K.; Black, B.; and Jayakumar, M. 2020. MAgent. https://github.com/Farama-Foundation/MAgent. GitHub repository

  27. [35]

    Veli c kovi \'c , P.; Cucurull, G.; Casanova, A.; Romero, A.; Lio, P.; and Bengio, Y. 2017. Graph attention networks. arXiv preprint arXiv:1710.10903

  28. [36]

    M.; Mathieu, M.; Dudzik, A.; Chung, J.; Choi, D

    Vinyals, O.; Babuschkin, I.; Czarnecki, W. M.; Mathieu, M.; Dudzik, A.; Chung, J.; Choi, D. H.; Powell, R.; Ewalds, T.; Georgiev, P.; Oh, J.; Horgan, D.; Kroiss, M.; Danihelka, I.; Huang, A.; Sifre, L.; Cai, T.; Agapiou, J. P.; Jaderberg, M.; Vezhnevets, A. S.; Leblond, R.; Po...

  29. [37]

    Wang, Q.; He, C.; Jaffr \`e s-Runser, K.; Huang, J.; and Xu, Y. 2022. Timely-throughput optimal scheduling for wireless flows with deep reinforcement learning. In 2022 IEEE/ACM 30th International Symposium on Quality of Service (IWQoS), 1--11. IEEE

  30. [38]

    Wang, Q.; Huang, J.; and Xu, Y. 2024. Scheduling of Real-Time Wireless Flows: A Comparative Study of Centralized and Decentralized Reinforcement Learning Approaches. IEEE/ACM Transactions on Networking

  31. [39]

    R.; and Zhang, C

    Wang, T.; Dong, H.; Lesser, V. R.; and Zhang, C. 2020. ROMA: Multi-Agent Reinforcement Learning with Emergent Roles. In Proceedings of the 37th International Conference on Machine Learning, ICML 2020, 13-18 July 2020, Virtual Event , volume 119 of Proceedings of Machine Learni...

  32. [40]

    Yang, M.; Zhao, J.; Hu, X.; Zhou, W.; Zhu, J.; and Li, H. 2022. LDSA: Learning Dynamic Subtask Assignment in Cooperative Multi-Agent Reinforcement Learning. In NeurIPS

  33. [41]

    Yang, Y.; Luo, R.; Li, M.; Zhou, M.; Zhang, W.; and Wang, J. 2018. Mean Field Multi-Agent Reinforcement Learning. In Dy, J. G.; and Krause, A., eds., Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsm \" a ssan, Stockholm, Sweden, July...

  34. [42]

    Yu, C.; Velu, A.; Vinitsky, E.; Gao, J.; Wang, Y.; Bayen, A.; and Wu, Y. 2022. The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games. In Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track

  35. [43]

    Yuan, L.; Wang, C.; Wang, J.; Zhang, F.; Chen, F.; Guan, C.; Zhang, Z.; Zhang, C.; and Yu, Y. 2022. Multi-Agent Concentrative Coordination with Decentralized Task Representation. In Raedt, L. D., ed., Proceedings of the Thirty-First International Joint Conference on Artificial...

  36. [44]

    Zheng, L.; Yang, J.; Cai, H.; Zhou, M.; Zhang, W.; Wang, J.; and Yu, Y. 2018. MAgent: A many-agent reinforcement learning platform for artificial collective intelligence. In Thirty-Second AAAI Conference on Artificial Intelligence

  37. [45]

    Zhou, W.; Chen, D.; Yan, J.; Li, Z.; Yin, H.; and Ge, W. 2022. Multi-agent reinforcement learning for cooperative lane changing of connected and autonomous vehicles in mixed traffic. Auton. Intell. Syst., 2(1)

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.