REVIEW 2 major objections 5 minor 67 references
Enhancing Cooperative Multi-Agent Reinforcement Learning with State Modelling and Adversarial Exploration
T0 review · 2 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Belief-modelling agents beat state-of-the-art MARL.
desk verdict SMPE2 is a solid empirical MARL paper whose 'adversarial exploration' label overstates what the losses actually implement; the method still deserves a serious referee and likely acceptance after the mechanism claim is reined in. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the per-agent variational encoder-decoder with agent-modelling filters w_i: each agent learns a latent belief z_i ~ q_omega_i(z_i | o_i) that is trained to reconstruct w_i·o_-i, with w_i produced by a sigmoid MLP so that non-informative features are down-weighted. A second critic V_k(hat-s) on the filtered state ties the belief to policy optimization, and the adversarial exploration uses SimHash counts of z_i to give intrinsic reward for novel belief states. Together these components make the belief informative, policy-relevant, and explorative, and they are what carries the claimed performance gains.
What would settle it
Run SMPE2 on a cooperative task engineered so that each agent's observation is independent random noise carrying no information about the other agents' observations or the underlying state; if the method still improves over the MAA2C backbone, the reconstruction loss must be learning something other than state information, while if it collapses to backbone performance the state-modelling assumption is confirmed as load-bearing. A quantitative complement is to measure the filtered reconstruction error of o_-i against a chance-level predictor under such constructed noise.
Extended reading notes
Core claim
Each agent i runs a variational encoder-decoder that maps its own observation o_i to a latent belief z_i, and is trained to reconstruct only the informative features of the other agents' observations o_-i, where per-feature importance weights w_i are learned alongside. A second critic conditioned on the filtered state makes w_i and z_i optimize the value function rather than reconstruction accuracy alone, and a SimHash counter on z_i supplies intrinsic rewards that push the agent to discover novel observations, which in turn become novel training targets for the other agents' decoders. The paper reports that SMPE2 outperforms MAA2C, COMA, MAPPO, ATM, EOI, EMC, and MASER on MPE, LBF, and RWARE tasks, including LBF tasks previously flagged as open challenges.
Load-bearing premise
The whole construction assumes that an agent's own observation contains enough statistical information to reconstruct, after filtering, the features of other agents' observations that matter for coordination; if individual observations are too weak or ambiguous, the belief z_i cannot encode useful state information and both the policy enhancement and belief-space exploration collapse.
Editorial extensions
If this is right
- SMPE2 outperforms state-of-the-art MARL algorithms on complex fully cooperative tasks in the MPE, LBF, and RWARE benchmarks.
- The ablation studies show that removing the agent-modelling filters, the KL term, the L2 normalization on w_i, or the second critic degrades performance, so each component of the method is load-bearing.
- When the KL regularization is enabled, agents' belief embeddings become cohesive across agents, as shown by t-SNE visualization and by a logistic-regression separation accuracy that drops from 99.3% to 57.5%.
- SMPE2 is backbone-flexible: using MAPPO as the actor-critic backbone in place of MAA2C still yields large gains over plain MAPPO.
- SMPE2 manages to solve sparse-reward LBF tasks that prior work highlighted as open challenges, where other intrinsic-motivation methods fail.
Reading between the lines
- The interpretability of the learned filters w_i suggests that the method could double as a debugging tool, revealing which local features each agent actually relies on for coordination.
- The adversarial-exploration argument points toward a cooperative game-theoretic reading in which each agent's exploration deliberately creates harder training targets for the others; formalizing that as a min-max or influence objective is a natural extension the paper does not develop.
- Because z_i is conditioned only on the current observation, the intrinsic reward emphasizes observation novelty over trajectory novelty; in tasks where high-value states are reached only through long action sequences this may under-reward gradual progress, which is a testable limitation.
- The good performance in most experiments is obtained with shared policy parameters, so whether SMPE2's gains survive in fully heterogeneous teams with separate networks remains an open empirical question that the paper's backbone-flexibility result only partially answers.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SMPE2, a cooperative multi-agent reinforcement learning method for partially observable, communication-free settings. Each agent learns a variational encoder-decoder that maps its own observation o_i to a latent belief z_i and reconstructs filtered observations of other agents, with learned per-agent weight vectors w_i intended to suppress non-informative features. The belief z_i is fed into the agent's policy, and a count-based intrinsic reward is computed by applying SimHash to z_i to encourage exploration in belief space. SMPE2 is built on the MAA2C algorithm and is evaluated on MPE, LBF, and RWARE benchmarks against several baselines, reporting improved episodic rewards. Ablations examine the contribution of the filters, the KL regularization, the norm loss, the second critic, and the intrinsic reward, and the appendix documents hyperparameters, running times, and an analysis of the learned filters.
Significance. If the reported empirical results are reliable, the paper offers a practically useful and simple recipe for improving actor-critic MARL under partial observability: augment the policy with learned latent beliefs and use the same beliefs for count-based exploration. The method does not require communication or prior knowledge of observation semantics, and the provided code and running-time comparisons are useful. However, the advertised 'adversarial exploration' mechanism, which is central to the title and abstract, is not actually implemented in the objective: the intrinsic reward for an agent depends only on its own belief, with no coupling to other agents' reconstruction losses. The empirical gains are likely real, but the mechanistic claim is unsupported and the theoretical framing (Proposition 2.1) is a trivial equivalence.
major comments (2)
- [Section 3.2 and Algorithm 1] The paper's headline claim of an 'adversarial type of exploration' is not reflected in the algorithm. The intrinsic reward r_hat_i = 1/sqrt(n(SH(z_i))) depends only on agent i's own belief z_i, which is a deterministic function of its observation o_i. No term in the total loss L_SMPE (Section 3.1) involves another agent's reconstruction loss L_rec^j, and Algorithm 1 (line 16) computes the intrinsic reward per agent without any cross-agent term. The statement that novel observations 'adversarially increase the losses of other agents' reconstruction models' is a causal claim about training dynamics, but SMPE2 optimizes no objective that rewards such increases. The ablation in Figure 5 comparing belief-space hashing ('intr') with observation-space hashing ('obs rew') tests the hash domain, not adversarialness. To support the advertised mechanism, the authors should either (a) introduce an explicit coupling, e.g., an intrinsic reward that depends on other agents' reconstruction errors, or (b) provide direct evidence, e.g., measure that states discovered by one agent cause measurable increases in other agents' L_rec, and show that this correlates with performance, or (c) rewrite the abstract and Section 3.2 to describe the contribution as belief-based count-based exploration without the 'adversarial' label. As it stands, the central novelty claim is overstated, and the reported improvements are consistent with standard count-based exploration plus belief-conditioned policies.
- [Section 2.2, Proposition 2.1] Proposition 2.1 is a trivial equivalence: adding a latent variable z that the policy class is free to ignore cannot shrink the set of achievable value functions, and the proof correctly observes that any Dec-POMDP policy can be represented by a policy that ignores z. The subsequent interpretation, that this 'allows us to explore how agents can form meaningful beliefs' that 'enhance their own policies', is a non sequitur. Optimality of the unconstrained objective says nothing about whether the implemented heuristic—adding λ·ELBO (Eq. 2) with a fixed λ and training w_i through a separate critic loss (Eq. 6)—yields policies that are near-optimal for V_SM. As written, the connection from the theoretical objective to the loss L_encodings (Eq. 7) is heuristic. The authors should either weaken the theoretical framing (e.g., present Proposition 2.1 only as an equivalence observation and describe the ELBO as a practical auxiliary objective) or provide a formal statement with assumptions under which the auxiliary objective preserves value optimality.
minor comments (5)
- [Appendix D] The heading 'Missing Proof' should be renamed to 'Proof of Proposition 2.1' or simply 'Proposition 2.1 Proof'.
- [Appendix E.4.8] Table 1 reports the accuracy for 'zi (without wi)' as 80.8%, while the text in the same subsection says 'or high accuracy (80.3%)'; these numbers should be reconciled.
- [Equation (3)] The notation e_w_i (the target for the filter weights) is used but never defined in the main text; it is only implicitly introduced in Algorithm 1 as the target weight network (phi^w_i)'. Please define it near Eq. (3).
- [Section 3.2] Typographical issues: 'By doing do' should be 'By doing so', and in Section 4.2 'The only exception on this is' should be 'The only exception to this is'.
- [Abstract and Section 1] The method is referred to as both 'SMPE' and 'SMPE2'; please use 'SMPE2' consistently as the algorithm name, and reserve 'SMPE' for the no-intrinsic-reward ablation variant.
Circularity Check
No circular derivation: SMPE2's state-modelling objective is a re-parameterization of the Dec-POMDP objective, and the empirical comparisons are external; the 'adversarial exploration' label is an unverified interpretation rather than a construction-level circularity.
full rationale
The derivation chain is not circular. The state-modelling objective in Eq. (1) is a re-parameterization of the Dec-POMDP objective: because z_i is sampled from p_omega(·|o_i), a distribution over the agent's own observation, the induced policy pi_bar_i(a_i|h_i) = E_z[pi_psi_i(a_i|h_i,z)] is an ordinary Dec-POMDP policy, so the outer max over omega cannot exceed V*, and any base policy is recovered by letting pi_psi_i ignore z. Proposition 2.1 is therefore an identity used for motivation, not a fitted input that later reappears as a predicted result. The ELBO, filter, and critic losses are auxiliary training objectives; no benchmark curve is produced by evaluating a fitted parameter on the quantity from which it was estimated. The one potentially misleading element is the label 'adversarial exploration': Section 3.2 defines r_hat_i = 1/sqrt(n(SH(z_i))) with no term depending on other agents' reconstruction losses, so the claimed adversarial coupling is an unsupported interpretation rather than a circular reduction. Self-citations (Papadopoulos et al., 2025; Kontogiannis & Vouros, 2023) are used for motivation and to describe benchmark difficulty; they do not carry the algorithm's correctness or the empirical comparison, which is against external baselines. Score 1 reflects the minor, non-load-bearing self-citation usage and the unverified mechanism label, not any circular derivation.
Assumptions & free parameters
free parameters (4)
- lambda_rec =
0.5 (LBF), 1 (MPE/RWARE)
- lambda_norm =
0.1 (MPE), 1 (LBF), 0.1 (RWARE)
- beta =
0.1 (LBF), 0.001 (RWARE)
- latent_dim =
32 (MPE), 64 (LBF/RWARE)
assumptions (6)
- standard math Dec-POMDP formulation and optimal value function V* are standard definitions.
- standard math Variational inference ELBO and the reparameterization trick justify the reconstruction loss.
- domain assumption Joint observations provide sufficient evidence to discriminate between states.
- domain assumption Features of o_-i that are irrelevant to agent i's reward or cannot be inferred through z_i are non-informative and can be filtered.
- domain assumption Count-based novelty in belief space is a good proxy for discovering novel high-value states.
- domain assumption Discoveries by one agent produce harder reconstruction targets that improve other agents' belief models.
Cite this review
Pith. "Pith review of Enhancing Cooperative Multi-Agent Reinforcement Learning with State Modelling and Adversarial Exploration." pith.science (2026). https://pith.science/paper/ZJOEMNR2
@misc{pith2026250505262,
author = {Pith},
title = {Pith review of: Enhancing Cooperative Multi-Agent Reinforcement Learning with State Modelling and Adversarial Exploration},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZJOEMNR2}},
note = {Machine review of arXiv:2505.05262}
}
read the original abstract
Learning to cooperate in distributed partially observable environments with no communication abilities poses significant challenges for multi-agent deep reinforcement learning (MARL). This paper addresses key concerns in this domain, focusing on inferring state representations from individual agent observations and leveraging these representations to enhance agents' exploration and collaborative task execution policies. To this end, we propose a novel state modelling framework for cooperative MARL, where agents infer meaningful belief representations of the non-observable state, with respect to optimizing their own policies, while filtering redundant and less informative joint state information. Building upon this framework, we propose the MARL SMPE algorithm. In SMPE, agents enhance their own policy's discriminative abilities under partial observability, explicitly by incorporating their beliefs into the policy network, and implicitly by adopting an adversarial type of exploration policies which encourages agents to discover novel, high-value states while improving the discriminative abilities of others. Experimentally, we show that SMPE outperforms state-of-the-art MARL algorithms in complex fully cooperative tasks from the MPE, LBF, and RWARE benchmarks.
Figures
Figures from the paper (20 more)
Reference graph
Works this paper leans on
-
[1]
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 format.date year duplicate empty "emp...
-
[2]
Multi-robot cooperation in the martha project
Alami, R., Fleury, S., Herrb, M., Ingrand, F., and Robert, F. Multi-robot cooperation in the martha project. IEEE Robotics & Automation Magazine, 5 0 (1): 0 36--47, 1998
work page 1998
-
[3]
Albrecht, S. V. and Stone, P. Reasoning about hypothetical agent behaviours and their parameters. In Proceedings of the 16th Conference on Autonomous Agents and MultiAgent Systems, pp.\ 547--555, 2017
work page 2017
-
[4]
Shared experience actor-critic for multi-agent reinforcement learning
Christianos, F., Sch \"a fer, L., and Albrecht, S. Shared experience actor-critic for multi-agent reinforcement learning. Advances in neural information processing systems, 33: 0 10707--10717, 2020
work page 2020
-
[5]
A., and Albrecht, S
Christianos, F., Papoudakis, G., Rahman, M. A., and Albrecht, S. V. Scaling multi-agent reinforcement learning with selective parameter sharing. In International Conference on Machine Learning, pp.\ 1989--1998. PMLR, 2021
1989
-
[6]
Y., Al-Shedivat, M., Whiteson, S., Abbeel, P., and Mordatch, I
Foerster, J., Chen, R. Y., Al-Shedivat, M., Whiteson, S., Abbeel, P., and Mordatch, I. Learning with opponent-learning awareness. In Proceedings of the 17th International Conference on Autonomous Agents and MultiAgent Systems, pp.\ 122--130, 2018 a
work page 2018
-
[7]
Counterfactual multi-agent policy gradients
Foerster, J., Farquhar, G., Afouras, T., Nardelli, N., and Whiteson, S. Counterfactual multi-agent policy gradients. In Proceedings of the AAAI conference on artificial intelligence, volume 32, 2018 b
work page 2018
-
[8]
Greedy when sure and conservative when uncertain about the opponents
Fu, H., Tian, Y., Yu, H., Liu, W., Wu, S., Xiong, J., Wen, Y., Li, K., Xing, J., Fu, Q., et al. Greedy when sure and conservative when uncertain about the opponents. In International Conference on Machine Learning, pp.\ 6829--6848. PMLR, 2022
work page 2022
Show all 67 references
-
[9]
Efficient multi-agent communication via self-supervised information aggregation
Guan, C., Chen, F., Yuan, L., Wang, C., Yin, H., Zhang, Z., and Yu, Y. Efficient multi-agent communication via self-supervised information aggregation. Advances in Neural Information Processing Systems, 35: 0 1020--1033, 2022 a
2022
-
[10]
Efficient multi-agent communication via self-supervised information aggregation
Guan, C., Chen, F., Yuan, L., Wang, C., Yin, H., Zhang, Z., and Yu, Y. Efficient multi-agent communication via self-supervised information aggregation. Advances in Neural Information Processing Systems, 35: 0 1020--1033, 2022 b
2022
-
[11]
and Kahou, S
Gupta, N. and Kahou, S. E. Cammarl: Conformal action modeling in multi agent reinforcement learning. arXiv preprint arXiv:2306.11128, 2023
2023 arXiv
-
[12]
Opponent modeling in deep reinforcement learning
He, H., Boyd-Graber, J., Kwok, K., and Daum \'e III, H. Opponent modeling in deep reinforcement learning. In International conference on machine learning, pp.\ 1804--1813. PMLR, 2016
2016
-
[13]
Hernandez-Leal, P., Kartal, B., and Taylor, M. E. Agent modeling as auxiliary task for deep reinforcement learning. In Proceedings of the AAAI conference on artificial intelligence and interactive digital entertainment, volume 15, pp.\ 31--37, 2019
2019
-
[14]
and Foerster, J
Hu, H. and Foerster, J. N. Simplified action decoder for deep multi-agent reinforcement learning. In International Conference on Learning Representations, 2019
2019
-
[15]
Off-belief learning
Hu, H., Lerer, A., Cui, B., Pineda, L., Brown, N., and Foerster, J. Off-belief learning. In International Conference on Machine Learning, pp.\ 4369--4379. PMLR, 2021
2021
-
[16]
Maser: Multi-agent reinforcement learning with subgoals generated from experience replay buffer
Jeon, J., Kim, W., Jung, W., and Sung, Y. Maser: Multi-agent reinforcement learning with subgoals generated from experience replay buffer. In International Conference on Machine Learning, pp.\ 10041--10052. PMLR, 2022
2022
-
[17]
and Lu, Z
Jiang, J. and Lu, Z. The emergence of individuality. In International Conference on Machine Learning, pp.\ 4992--5001. PMLR, 2021
2021
-
[18]
Fox: Formation-aware exploration in multi-agent reinforcement learning
Jo, Y., Lee, S., Yeom, J., and Han, S. Fox: Formation-aware exploration in multi-agent reinforcement learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp.\ 12985--12994, 2024
2024
-
[19]
Kingma, D. P. and Welling, M. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013
2013 arXiv
-
[20]
and Vouros, G
Kontogiannis, A. and Vouros, G. A. Inherently interpretable deep reinforcement learning through online mimicking. In International Workshop on Explainable, Transparent Autonomous Agents and Multi-Agent Systems, pp.\ 160--179. Springer, 2023
2023
-
[21]
Celebrating diversity in shared multi-agent reinforcement learning
Li, C., Wang, T., Wu, C., Zhao, Q., Yang, J., and Zhang, C. Celebrating diversity in shared multi-agent reinforcement learning. Advances in Neural Information Processing Systems, 34: 0 3991--4002, 2021
2021
-
[22]
Two heads are better than one: A simple exploration framework for efficient multi-agent reinforcement learning
Li, J., Kuang, K., Wang, B., Li, X., Wu, F., Xiao, J., and Chen, L. Two heads are better than one: A simple exploration framework for efficient multi-agent reinforcement learning. Advances in Neural Information Processing Systems, 36, 2024
2024
-
[23]
Marl-based distributed cache placement for wireless networks
Lin, X., Tang, Y., Lei, X., Xia, J., Zhou, Q., Wu, H., and Fan, L. Marl-based distributed cache placement for wireless networks. IEEE Access, 7: 0 62606--62615, 2019
2019
-
[24]
Imagine, initialize, and explore: An effective exploration method in multi-agent reinforcement learning
Liu, Z., Wan, L., Yang, X., Chen, Z., Chen, X., and Lan, X. Imagine, initialize, and explore: An effective exploration method in multi-agent reinforcement learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp.\ 17487--17495, 2024
2024
-
[25]
I., Tamar, A., Harb, J., Pieter Abbeel, O., and Mordatch, I
Lowe, R., Wu, Y. I., Tamar, A., Harb, J., Pieter Abbeel, O., and Mordatch, I. Multi-agent actor-critic for mixed cooperative-competitive environments. Advances in neural information processing systems, 30, 2017 a
2017
-
[26]
I., Tamar, A., Harb, J., Pieter Abbeel, O., and Mordatch, I
Lowe, R., Wu, Y. I., Tamar, A., Harb, J., Pieter Abbeel, O., and Mordatch, I. Multi-agent actor-critic for mixed cooperative-competitive environments. Advances in neural information processing systems, 30, 2017 b
2017
-
[27]
Fast peer adaptation with context-aware exploration
Ma, L., Wang, Y., Zhong, F., Zhu, S.-C., and Wang, Y. Fast peer adaptation with context-aware exploration. In Forty-first International Conference on Machine Learning
-
[28]
Ma, M., Liu, J., Sokota, S., Kleiman-Weiner, M., and Foerster, J. N. Learning intuitive policies using action features. In International Conference on Machine Learning, pp.\ 23358--23372. PMLR, 2023
2023
-
[29]
Modeling the interaction between agents in cooperative multi-agent reinforcement learning
Ma, X., Yang, Y., Li, C., Lu, Y., Zhao, Q., and Yang, J. Modeling the interaction between agents in cooperative multi-agent reinforcement learning. In Proceedings of the 20th International Conference on Autonomous Agents and MultiAgent Systems, pp.\ 853--861, 2021
2021
-
[30]
Maven: Multi-agent variational exploration
Mahajan, A., Rashid, T., Samvelyan, M., and Whiteson, S. Maven: Multi-agent variational exploration. Advances in neural information processing systems, 32, 2019
2019
-
[31]
P., Mirza, M., Graves, A., Lillicrap, T., Harley, T., Silver, D., and Kavukcuoglu, K
Mnih, V., Badia, A. P., Mirza, M., Graves, A., Lillicrap, T., Harley, T., Silver, D., and Kavukcuoglu, K. Asynchronous methods for deep reinforcement learning. In International conference on machine learning, pp.\ 1928--1937. PMLR, 2016
1928
-
[32]
and Abbeel, P
Mordatch, I. and Abbeel, P. Emergence of grounded compositional language in multi-agent populations. In Proceedings of the AAAI conference on artificial intelligence, volume 32, 2018
2018
-
[33]
R., Pires, B
Moreno, P., Hughes, E., McKee, K. R., Pires, B. A., and Weber, T. Neural recursive belief states in multi-agent reinforcement learning. arXiv preprint arXiv:2102.02274, 2021
2021 arXiv
-
[34]
Theory of mind with guilt aversion facilitates cooperative reinforcement learning
Nguyen, D., Venkatesh, S., Nguyen, P., and Tran, T. Theory of mind with guilt aversion facilitates cooperative reinforcement learning. In Asian Conference on Machine Learning, pp.\ 33--48. PMLR, 2020
2020
-
[35]
Social motivation for modelling other agents under partial observability in decentralised training
Nguyen, D., Le, H., Do, K., Venkatesh, S., and Tran, T. Social motivation for modelling other agents under partial observability in decentralised training. In Elkind, E. (ed.), Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI-23...
2023 doi
-
[36]
A., Amato, C., et al
Oliehoek, F. A., Amato, C., et al. A concise introduction to decentralized POMDPs, volume 1. Springer, 2016
2016
-
[37]
An extended benchmarking of multi-agent reinforcement learning algorithms in complex fully cooperative tasks
Papadopoulos, G., Kontogiannis, A., Papadopoulou, F., Poulianou, C., Koumentis, I., and Vouros, G. An extended benchmarking of multi-agent reinforcement learning algorithms in complex fully cooperative tasks. arXiv preprint arXiv:2502.04773, 2025
2025 arXiv
-
[38]
and Albrecht, S
Papoudakis, G. and Albrecht, S. V. Variational autoencoders for opponent modeling in multi-agent systems. In AAAI 2020 Workshop on Reinforcement Learning in Games, 2020
2020
-
[39]
Papoudakis, G., Christianos, F., Sch \"a fer, L., and Albrecht, S. V. Benchmarking multi-agent deep reinforcement learning algorithms in cooperative tasks. arXiv preprint arXiv:2006.07869, 2020
2006 arXiv
-
[40]
Agent modelling under partial observability for deep reinforcement learning
Papoudakis, G., Christianos, F., and Albrecht, S. Agent modelling under partial observability for deep reinforcement learning. Advances in Neural Information Processing Systems, 34: 0 19210--19222, 2021
2021
-
[41]
Adversar: Adversarial search and rescue via multi-agent reinforcement learning
Rahman, A., Bhattacharya, A., Ramachandran, T., Mukherjee, S., Sharma, H., Fujimoto, T., and Chatterjee, S. Adversar: Adversarial search and rescue via multi-agent reinforcement learning. In 2022 IEEE International Symposium on Technologies for Homeland Security (HST), pp.\ 1-...
2022
-
[42]
Modeling others using oneself in multi-agent reinforcement learning
Raileanu, R., Denton, E., Szlam, A., and Fergus, R. Modeling others using oneself in multi-agent reinforcement learning. In International conference on machine learning, pp.\ 4257--4266. PMLR, 2018
2018
-
[43]
S., Farquhar, G., Foerster, J., and Whiteson, S
Rashid, T., Samvelyan, M., De Witt, C. S., Farquhar, G., Foerster, J., and Whiteson, S. Monotonic value function factorisation for deep multi-agent reinforcement learning. The Journal of Machine Learning Research, 21 0 (1): 0 7234--7284, 2020
2020
-
[44]
Gcs: Graph-based coordination strategy for multi-agent reinforcement learning
Ruan, J., Du, Y., Xiong, X., Xing, D., Li, X., Meng, L., Zhang, H., Wang, J., and Xu, B. Gcs: Graph-based coordination strategy for multi-agent reinforcement learning. In Proceedings of the 21st International Conference on Autonomous Agents and Multiagent Systems, pp.\ 1128--1...
2022
-
[45]
Agent-centric representations for multi-agent reinforcement learning
Shang, W., Espeholt, L., Raichuk, A., and Salimans, T. Agent-centric representations for multi-agent reinforcement learning. arXiv preprint arXiv:2104.09402, 2021
2021 arXiv
-
[46]
J., Hostallero, D
Son, K., Kim, D., Kang, W. J., Hostallero, D. E., and Yi, Y. Qtran: Learning to factorize with transformation for cooperative multi-agent reinforcement learning. In International conference on machine learning, pp.\ 5887--5896. PMLR, 2019
2019
-
[47]
Value-decomposition multi-agent actor-critics
Su, J., Adams, S., and Beling, P. Value-decomposition multi-agent actor-critics. In Proceedings of the AAAI conference on artificial intelligence, volume 35, pp.\ 11352--11360, 2021
2021
-
[48]
Decision-making with speculative opponent models
Sun, J., Chen, S., Zhang, C., Ma, Y., and Zhang, J. Decision-making with speculative opponent models. IEEE Transactions on Neural Networks and Learning Systems, 2024
2024
-
[49]
M., Zambaldi, V., Jaderberg, M., Lanctot, M., Sonnerat, N., Leibo, J
Sunehag, P., Lever, G., Gruslys, A., Czarnecki, W. M., Zambaldi, V., Jaderberg, M., Lanctot, M., Sonnerat, N., Leibo, J. Z., Tuyls, K., et al. Value-decomposition networks for cooperative multi-agent learning based on team reward. In Proceedings of the 17th International Confe...
2018
-
[50]
and Chen, B
Tan, S. and Chen, B. Attentional opponent modelling for multi-agent cooperation. In 2023 International Joint Conference on Neural Networks (IJCNN), pp.\ 1--9. IEEE, 2023
2023
-
[51]
\# exploration: A study of count-based exploration for deep reinforcement learning
Tang, H., Houthooft, R., Foote, D., Stooke, A., Xi Chen, O., Duan, Y., Schulman, J., DeTurck, F., and Abbeel, P. \# exploration: A study of count-based exploration for deep reinforcement learning. Advances in neural information processing systems, 30, 2017
2017
-
[52]
Valiente, R., Toghi, B., Pedarsani, R., and Fallah, Y. P. Robustness and adaptability of reinforcement learning-based cooperative autonomous driving in mixed-autonomy traffic. IEEE Open Journal of Intelligent Transportation Systems, 3: 0 397--410, 2022
2022
-
[53]
N., Kaiser, ., and Polosukhin, I
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, ., and Polosukhin, I. Attention is all you need. Advances in neural information processing systems, 30, 2017
2017
-
[54]
Multi-agent reinforcement learning is a sequence modeling problem
Wen, M., Kuba, J., Lin, R., Zhang, W., Wen, Y., Wang, J., and Yang, Y. Multi-agent reinforcement learning is a sequence modeling problem. Advances in Neural Information Processing Systems, 35: 0 16509--16521, 2022
2022
-
[55]
Asynchronous actor-critic for multi-agent reinforcement learning
Xiao, Y., Tan, W., and Amato, C. Asynchronous actor-critic for multi-agent reinforcement learning. Advances in Neural Information Processing Systems, 35: 0 4385--4400, 2022
2022
-
[56]
Subspace-aware exploration for sparse-reward multi-agent tasks
Xu, P., Zhang, J., Yin, Q., Yu, C., Yang, Y., and Huang, K. Subspace-aware exploration for sparse-reward multi-agent tasks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pp.\ 11717--11725, 2023
2023
-
[57]
Side: State inference for partially observable cooperative multi-agent reinforcement learning
Xu, Z., Bai, Y., Li, D., Zhang, B., and Fan, G. Side: State inference for partially observable cooperative multi-agent reinforcement learning. In Proceedings of the 21st International Conference on Autonomous Agents and Multiagent Systems, pp.\ 1400--1408, 2022
2022
-
[58]
Transformer-based working memory for multiagent reinforcement learning with action parsing
Yang, Y., Chen, G., Wang, W., Hao, X., Hao, J., and Heng, P.-A. Transformer-based working memory for multiagent reinforcement learning with action parsing. Advances in Neural Information Processing Systems, 35: 0 34874--34886, 2022
2022
-
[59]
The surprising effectiveness of ppo in cooperative multi-agent games
Yu, C., Velu, A., Vinitsky, E., Gao, J., Wang, Y., Bayen, A., and Wu, Y. The surprising effectiveness of ppo in cooperative multi-agent games. Advances in Neural Information Processing Systems, 35: 0 24611--24624, 2022
2022
-
[60]
Multi-agent incentive communication via decentralized teammate modeling
Yuan, L., Wang, J., Zhang, F., Wang, C., Zhang, Z., Yu, Y., and Zhang, C. Multi-agent incentive communication via decentralized teammate modeling. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pp.\ 9466--9474, 2022
2022
-
[61]
Dynamic belief for decentralized multi-agent cooperative learning
Zhai, Y., Peng, P., Su, C., and Tian, Y. Dynamic belief for decentralized multi-agent cooperative learning. In Proceedings of International Joint Conference on Artificial Intelligence, pp.\ 344--352, 2023
2023
-
[62]
and Lesser, V
Zhang, C. and Lesser, V. Coordinating multi-agent reinforcement learning with limited communication. In Proceedings of the 2013 international conference on Autonomous agents and multi-agent systems, pp.\ 1101--1108, 2013
2013
-
[64]
Boosting value decomposition via unit-wise attentive state representation for cooperative multi-agent reinforcement learning
Zhao, Q., Zhu, Y., Liu, Z., Wang, Z., and Chen, C. Boosting value decomposition via unit-wise attentive state representation for cooperative multi-agent reinforcement learning. arXiv preprint arXiv:2305.07182, 2023 b
2023 arXiv
-
[65]
Conditionally optimistic exploration for cooperative deep multi-agent reinforcement learning
Zhao, X., Pan, Y., Xiao, C., Chandar, S., and Rajendran, J. Conditionally optimistic exploration for cooperative deep multi-agent reinforcement learning. In Proceedings of the Thirty-Ninth Conference on Uncertainty in Artificial Intelligence, UAI '23. JMLR.org, 2023 c
2023
-
[66]
Episodic multi-agent reinforcement learning with curiosity-driven exploration
Zheng, L., Chen, J., Wang, J., He, J., Hu, Y., Chen, Y., Fan, C., Gao, Y., and Zhang, C. Episodic multi-agent reinforcement learning with curiosity-driven exploration. Advances in Neural Information Processing Systems, 34: 0 3757--3769, 2021
2021
-
[67]
A survey of multi-agent reinforcement learning with communication
Zhu, C., Dastani, M., and Wang, S. A survey of multi-agent reinforcement learning with communication. arXiv preprint arXiv:2203.08975, 2022
2022 arXiv
-
[68]
Deep interactive bayesian reinforcement learning via meta-learning
Zintgraf, L., Devlin, S., Ciosek, K., Whiteson, S., and Hofmann, K. Deep interactive bayesian reinforcement learning via meta-learning. arXiv preprint arXiv:2101.03864, 2021
2021 arXiv
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.