Pith. sign in

REVIEW 4 major objections 6 minor 32 references

Dual Ensembled Multiagent Q-Learning with Hypernet Regularizer

T0 review · 4 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash

Pith's one-line read This paper claims that in multiagent value-mixing Q-learning, overestimation also accumulates during the online network's optimization step, with the mixing slopes amplifying the bias quadratically, and that both target ensembling and a…

desk verdict The optimization-accumulation claim is plausible and worth testing, but Theorem 3.1 as stated does not prove it; the experiments and ablations justify a careful revision rather than a desk reject. read the letter →

arxiv 2502.02018 v1 pith:7YO3DPHV submitted 2025-02-04 cs.MA cs.LG

classification cs.MAcs.LG
keywords multiagentreinforcementlearningQ-valueoverestimationvalue-mixingQ-learningrandomensemblehypernetworkregularizerQMIXcooperativeMARLbias
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 takes on Q-value overestimation in cooperative multiagent reinforcement learning, where the bias grows with the number of agents. Earlier fixes lowered the target Q-value at estimation time, by double critics, softmax operators, or ensembling, but left the next step untouched: training the online Q-network against an overestimated target. The paper's central claim is that this second step injects its own bias, and that the mixing network's slopes amplify it quadratically (Theorem 3.1). On that basis it proposes DEMAR, which applies random in-target ensembling to both individual and global target Q-values and adds an L1 regularizer on hypernetwork weights and biases to keep the slopes small. If the claim is right, multiagent overestimation control requires acting on both sides of the estimation-optimization loop, not only on the target.

What carries the argument

The load-bearing mechanism is the quadratic bias-amplification identity of Theorem 3.1, together with the two DEMAR components it motivates. The identity says that after one gradient step toward an overestimated target, the induced global-value bias is $2\alpha\Delta_y \sum_i(\partial Q_{tot}/\partial Q_i)^2$, so the mixing slopes act as an amplifier. The paper's dual ensembling, taking the minimum over random subsets of $K$ individual target Q-networks and $H$ global target Q-networks, lowers the target bias $\Delta_y$; the hypernet regularizer $L_{reg}=\sum|W_f|+\sum|B_f|$ constrains the hypernetwork-produced weights and biases that determine $\partial Q_{tot}/\partial Q_i$. Together they shrink both factors in the amplification product.

What would settle it

Track, in a small value-mixing task, the measured target bias $\Delta_y$ and the measured slopes $\partial Q_{tot}/\partial Q_i$ at every update; the theorem predicts the post-update global bias should rise by $2\alpha\Delta_y\sum_i(\partial Q_{tot}/\partial Q_i)^2$. If the global bias grows while the slope sum stays flat or shrinks, or if a run with exactly zero target bias still shows accumulated overestimation, the central mechanism is false.

Watch

Extended reading notes

Core claim

In value-mixing Q-learning, the global value is built as $Q_{tot}=f_{mix}(s,Q_1,\dots,Q_N)$ with a monotonic mixing network whose partial derivatives $\partial Q_{tot}/\partial Q_i\ge 0$ are generated by hypernetworks. The paper's Theorem 3.1 considers one gradient update of the online networks against an overestimated target $y_{tot}=y^*_{tot}+\Delta_y$ with $\Delta_y>0$. Starting from the idealization $Q_{tot}=Q^*_{tot}$ and $Q_i=Q^*_i$, the update biases each individual value by $\Delta Q_i=2\alpha\Delta_y\,\partial Q_{tot}/\partial Q_i$, and feeding the updated values through the mixing network produces $\hat Q_{tot}=Q^*_{tot}+2\alpha\Delta_y\sum_i(\partial Q_{tot}/\partial Q_i)^2$. The mixing slopes therefore enter the bias quadratically, turning a small target error into a larger global error after a single optimization step, and the bias accumulates across estimation-optimization iterations. DEMAR attacks both sources: it takes the minimum over randomly sampled ensembles of target individual networks and of target global networks to depress the target, and it applies an L1 penalty to hypernetwork weights and biases, bounding the slopes that amplify bias.

Load-bearing premise

The load-bearing premise is that at the moment of the update the Q-networks equal the optimal value functions while their estimates still carry the uniform random noise that makes the target overestimated; those two conditions cannot both hold, so Theorem 3.1 is an idealized one-step Taylor calculation rather than a proof of iterative convergence.

Editorial extensions

If this is right

  • Controlling the target Q-value alone is insufficient: a nonzero target bias is amplified during optimization, so overestimation persists unless the mixing slopes are also constrained.
  • DEMAR reduces overestimation and stabilizes learning across MPE tasks and a noisy SMAC benchmark, and it transfers to other value-mixing backbones such as ASN, UPDeT, and ATM.
  • By varying ensemble sizes $H,N_H,K,N_K$ and the regularization coefficient $\alpha_{reg}$, the bias can be tuned; with all ensemble sizes set to 1 and $\alpha_{reg}=0$, DEMAR degenerates to vanilla QMIX.
  • The regularizer bounds $\partial Q_{tot}/\partial Q_i$, which the paper's experiments show to be orders of magnitude larger in QMIX than in DEMAR.
  • Because the overestimation bound grows with the number of agents, the relative benefit of DEMAR should increase with team size.

Reading between the lines

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

  • A testable corollary the authors do not pursue: the quadratic identity implies that halving the target bias is not enough when slopes are large, and halving slopes is not enough when the target bias is large; the 5m_vs_6m ablation, where neither component alone succeeds, already hints at this interaction.
  • The same estimation-optimization analysis may apply to any factorization where a global value is a nonlinear function of per-agent utilities, not just hypernetwork-based mixers, so the regularizer could generalize to other parameterizations of the mixing function.
  • Because the proof is a one-step Taylor argument, an open question is whether the quadratic amplification persists under bootstrapping with changing targets; if it does, it suggests a bias-compounding rate controlled by the Jacobian of the mixing network.
  • The noisy-SMAC results suggest a broader diagnostic: adding small observation noise can expose latent overestimation in value-mixing algorithms that look stable on clean benchmarks.
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 / 6 minor

Summary. The paper studies the overestimation problem in multiagent value-mixing Q-learning. It argues that prior work only reduces overestimation at the target-value estimation stage, while overestimation also accumulates during the optimization of the online Q-network. The authors propose DEMAR, which combines a dual ensemble (REDQ-style random subset minimization applied to both individual and global target Q-networks) with an L1 regularizer on hypernetwork weights and biases, intended to constrain the mixing slopes dQ_tot/dQ_i. Experiments on MPE and a noisy version of SMAC compare DEMAR against QMIX and several overestimation-aware baselines, with additional ablations and extensions to ASN, UPDeT, and ATM. The central theoretical claim is Theorem 3.1, which states that after one gradient update toward an overestimated target, the new global Q-value contains a bias term proportional to 2*alpha*Delta_y * sum_i (dQ_tot/dQ_i)^2, motivating the regularizer.

Significance. If the central claim were rigorously established, the paper would make a useful conceptual contribution by identifying that multiagent overestimation can enter through the online optimization step, not only through the target bootstrap, and by proposing a mechanism to control the mixing slopes. The empirical work is a genuine strength: the paper includes results on multiple MPE and SMAC tasks, compares against a broad set of baselines, ablates the two proposed components separately, reports Q-value overestimation curves as well as rewards, and studies sensitivity to ensemble sizes and the regularization coefficient. The extension to ASN, UPDeT, and ATM is a good generality check. However, the theoretical foundation currently does not support the paper's load-bearing claim: Theorem 3.1 rests on mutually contradictory assumptions, its proof treats neural network outputs as directly optimizable scalars, and the claimed iterative accumulation is only asserted. The paper also honestly lists limitations (five hyperparameters, not applicable to policy-based methods, larger parameter footprint) in Appendix I.

major comments (4)
  1. [Section 3.1, Theorem 3.1 (Eqs. 8-11)] The statement of Theorem 3.1 is internally inconsistent. It assumes that the current Q_tot and Q_i networks exactly equal the optimal functions, while simultaneously invoking Lemma 2.1, whose premise is that each action-value Q_i(s,a_i) carries independent uniform noise in [-epsilon,epsilon]. If Q_i = Q*_i exactly, then max_{a'} Q_i = max_{a'} Q*_i and the target bias Delta_y is zero; if noise is present, the equality premise fails. The proof then uses both y_tot = y*_tot + Delta_y with Delta_y > 0 and Q_tot = y*_tot in the same update equation, so the derivation of Eq. (9) is not valid as stated. The theorem needs a coherent perturbation formulation, e.g., an epsilon-delta statement starting from an approximately optimal network with small noise, or a separate analysis of the noisy case.
  2. [Eq. (10) in the proof of Theorem 3.1] The proof treats Q_i as a directly optimizable scalar by writing hat{Q}_i = Q*_i - alpha * dL_mix/dQ_i. In the neural-network setting used throughout the paper, the loss is minimized over the parameters theta_i of agent i's Q-network, so the change in the output Q_i(s,a) is -alpha * <dL/dtheta, dQ_i/dtheta>, which includes the norm of the output gradient and is not equal to -alpha * dL/dQ_i except in the tabular-parameter case. Consequently, the claimed formula for Delta Q_i and the quadratic accumulation in Eq. (9) do not follow for the deep Q_i networks used in the experiments. The theorem should either be restricted to tabular value functions or rederived in parameter space.
  3. [Section 3.1, final paragraph of the proof of Theorem 3.1] The proof of Eq. (11) uses a first-order Taylor expansion ('approximately') and the last sentence asserts that 'in repeated estimation-optimization iterations, such a bias accumulates' without giving an iterative argument. Since the paper claims to establish an 'iterative estimation-optimization analysis framework,' the accumulation statement is load-bearing and needs to be either proven (e.g., a contraction or monotonicity argument for a defined iteration) or explicitly labeled as a heuristic conjecture. As written, Theorem 3.1 establishes only a one-step local approximation under idealized assumptions, which is insufficient for the paper's main theoretical claim.
  4. [Appendix B, Eq. (20) and Eq. (21)] The proof that the proposed L1 hypernet regularizer constrains dQ_tot/dQ_i is incomplete. Equation (20) bounds dQ_tot/dQ_i by sums of products of the form w1 * w2, but the regularizer in Eq. (21) penalizes |W_f| and |B_f|, i.e., the absolute values of individual weights and biases. An L1 penalty on the factors does not formally bound their product without an additional assumption such as bounded weights. Furthermore, in the active region where the ELU preactivation is nonnegative, the derivative depends only on w1 * w2 and is independent of the bias b1, so penalizing |b1| does not directly constrain dQ_tot/dQ_i in that region. The connection between L_reg and the mixing slope therefore needs a more careful argument, or the regularizer should be described as a heuristic that works in practice.
minor comments (6)
  1. [Section 4, paragraph before Section 4.1] The text says 'the estimated Q-value of DEMAE' where the intended acronym is DEMAR; please correct this typo.
  2. [Algorithm 1, line 8] The target computation is written as max_{a'_i} min_{k in K} Q^{theta_{i,k}}_i, and the text clarifies that the min is computed first per action. This is clear, but it would be helpful to state explicitly that the action space is discrete and that the max and min are not exchanged in the implementation.
  3. [Section 2.4, Lemma 2.1] The bounds l and L on dQ_tot/dQ_i are used without specifying the domain over which they are assumed to hold (e.g., all states and all Q_i values). Since QMIX hypernetwork weights can grow during training, it is worth stating whether l and L are uniform over the state space or local to the analyzed update.
  4. [Figure 7(d)] The caption states that the UPDeT Q-value curve is clipped because the value became NaN; please also mark the clipped region on the plot or add a note in the caption that the visible curve is truncated, so readers do not misinterpret the end of the curve.
  5. [Appendix E and F] The sequential hyperparameter search for DEMAR is described, and ablations show sensitivity to H, N_H, K, N_K, and alpha_reg. It would be useful to state explicitly in the main text that the chosen hyperparameters vary substantially across tasks, since this bears on the practicability of the method and on the fairness of the comparison with grid-searched baselines.
  6. [References] Some reference entries contain typographical errors (e.g., 'Calvo Snchez' for Sánchez, and an incomplete citation for Thrun and Schwartz's 1993 paper). Please clean up the bibliography.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the optimization-side overestimation bound is a self-contained derivation and the regularizer constrains the derived quantity rather than re-fitting it.

full rationale

Theorem 3.1 does not fit any constant to its conclusion. Starting from Lemma 2.1's definition of target bias Δy, it computes the one-gradient-step change in Q_i as 2αΔy·∂Q_tot/∂Q_i and propagates this through a first-order expansion to obtain the quadratic mixing-slope term. The derivation is algebraic and parameter-free; the resulting bound is exactly proportional to the assumed input bias and the squared slopes, so the theorem reports the consequence of its assumptions rather than assuming the conclusion. The hypernet regularizer is designed to constrain the quantity the theorem identifies (∂Q_tot/∂Q_i via L1 on hypernetwork weights and biases); this is a design choice motivated by the analysis, not a prediction fitted to the same data. The ablation studies compare the method with and without each component and report external MPE/SMAC performance, so the central claim is not validated by its own assumptions. Self-citations (Qatten, ATM) appear only as background or as extension baselines; no load-bearing argument reduces to those citations. The noted tension between Theorem 3.1's optimal-Q premise and Lemma 2.1's independent-noise premise is a rigor and internal-consistency concern, not circularity: it does not make the output equivalent to the input by construction. Limitations (policy-based MARL not covered, five tunable hyperparameters, larger ensemble parameter size) are stated explicitly and do not indicate circular reasoning.

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

No new physical or environment entities are introduced; the dual ensemble and hypernet regularizer are algorithmic components. The main load-bearing assumptions are the noise model, the monotone bounded-derivative mixing network, and the one-step optimality-plus-noise starting point of Theorem 3.1. The five hyperparameters listed above are tuned per task and directly affect the empirical claims.

free parameters (5)
  • Global ensemble size H = simple_tag: 3, simple_world: 10, simple_adversary: 10, SMAC maps: 3/3/10/4
    Tuned per task by heuristic sequential search (Appendix E); larger ensembles reduce target variance but increase compute.
  • Global subset size N_H = simple_tag: 3, simple_world: 6, simple_adversary: 4, SMAC: 2/2/9/3
    Controls bias-variance of the in-target minimization over global Q-networks; chosen per task.
  • Individual ensemble size K = 1 on all SMAC tasks and on simple_tag/simple_world; 10 on simple_adversary
    Individual ensembling is inactive in most experiments, so the 'dual ensemble' claim is only exercised on one task.
  • Individual subset size N_K = 1 except simple_adversary: 4
    Subset size for the min over individual target Q-networks; set to 1 in most tasks.
  • Regularizer coefficient alpha_reg = simple_tag: 0.002, simple_world: 0.02, simple_adversary: 0.05, SMAC: 0.002/0.002/0.001/0.01
    Controls the L1 penalty on mixing weights/biases; Appendix F says it must be tuned carefully, and too large or too small values hurt performance.
assumptions (4)
  • domain assumption Individual action-values Qi carry independent, uniformly distributed noise on each action given state (Lemma 2.1 from Gan et al.)
    Used to guarantee the target bias Delta_y > 0 in Theorem 3.1 and to bound multiagent overestimation linearly in the number of agents.
  • domain assumption The mixing network is monotone with bounded partial derivatives l <= dQ_tot/dQ_i <= L, with l >= 0 and L > 0
    Satisfied by QMIX-style nonnegative hypernetwork weights; the upper and lower bounds are assumed rather than verified.
  • ad hoc to paper At the start of the update, the online Qtot and Qi networks exactly equal the optimal functions
    The proof of Theorem 3.1 (Eq. 10) uses Qtot = Q*tot and Qi = Q*i to compute the gradient update, which conflicts with the simultaneous noise assumption.
  • standard math First-order Taylor expansion of Qtot in the Qi values is accurate enough to ignore second-order terms
    Used in Eq. (11) to propagate individual biases Delta_Q_i to the global Q-value bias; only approximately valid.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Dual Ensembled Multiagent Q-Learning with Hypernet Regularizer." pith.science (2026). https://pith.science/paper/7YO3DPHV

@misc{pith2026250202018,
  author       = {Pith},
  title        = {Pith review of: Dual Ensembled Multiagent Q-Learning with Hypernet Regularizer},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/7YO3DPHV}},
  note         = {Machine review of arXiv:2502.02018}
}
read the original abstract

Overestimation in single-agent reinforcement learning has been extensively studied. In contrast, overestimation in the multiagent setting has received comparatively little attention although it increases with the number of agents and leads to severe learning instability. Previous works concentrate on reducing overestimation in the estimation process of target Q-value. They ignore the follow-up optimization process of online Q-network, thus making it hard to fully address the complex multiagent overestimation problem. To solve this challenge, in this study, we first establish an iterative estimation-optimization analysis framework for multiagent value-mixing Q-learning. Our analysis reveals that multiagent overestimation not only comes from the computation of target Q-value but also accumulates in the online Q-network's optimization. Motivated by it, we propose the Dual Ensembled Multiagent Q-Learning with Hypernet Regularizer algorithm to tackle multiagent overestimation from two aspects. First, we extend the random ensemble technique into the estimation of target individual and global Q-values to derive a lower update target. Second, we propose a novel hypernet regularizer on hypernetwork weights and biases to constrain the optimization of online global Q-network to prevent overestimation accumulation. Extensive experiments in MPE and SMAC show that the proposed method successfully addresses overestimation across various tasks.

Figures

Figures reproduced from arXiv: 2502.02018 by the authors.

Figure 1
Figure 1. The framework of DEMAR. The left part involves [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Results on different MPE scenarios. Figure 2(a)-2(c) show the learning performance of each method on MPE tasks. [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Results on different noisy SMAC scenarios. Figure 3(a)-3(d) show the learning performance of each method on SMAC [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (8 more)
Figure 5
Figure 5. Figure 5: Results of analyzed overestimation terms including [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 7
Figure 7. Figure 7: Results of UPDeT, ASN, and ATM with DEMAR. [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 6
Figure 6. Figure 6: Comparison between True Q-values and Estimated [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 8
Figure 8. Figure 8: Testing DEMAR on the noisy SMAC environment with the Gaussian distributed noise. [PITH_FULL_IMAGE:figures/full_fig_p012_8.png]
Figure 9
Figure 9. Figure 9: Ablation of dual ensembled Q-learning on the [PITH_FULL_IMAGE:figures/full_fig_p014_9.png]
Figure 10
Figure 10. Figure 10: Ablation of different combinations of 𝐾 and 𝑁K on the 5m_vs_6m and 2s3z tasks. 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 M Steps 10 0 10 20 30 40 50 60 Episode Reward simple_adversary reg=0.005 reg=0.01 reg=0.05 reg=0.1 reg=0.5 (a) Episode return of 𝛼𝑟𝑒𝑔 0.0 0.5 1.0…
Figure 11
Figure 11. Figure 11: Ablation of hypernet regularizer on the simple_adversary task [PITH_FULL_IMAGE:figures/full_fig_p014_11.png]
Figure 12
Figure 12. Figure 12: The test win rate on different maps in SMAC. [PITH_FULL_IMAGE:figures/full_fig_p015_12.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

32 extracted references · 30 canonical work pages

  1. [1]

    Johannes Ackermann, Volker Gabler, Takayuki Osa, and Masashi Sugiyama. 2019. Reducing Overestimation Bias in Multi-Agent Domains Using Double Centralized Critics. In Proceedings of NeurIPS Deep RL Workshop

  2. [2]

    Oron Anschel, Nir Baram, and Nahum Shimkin. 2017. Averaged-DQN: Variance Reduction and Stabilization for Deep Reinforcement Learning. In Proceedings of the 34th International Conference on Machine Learning . 176–185

  3. [3]

    Gleb Beliakov, Humberto Bustince Sola, and Tomasa Calvo Snchez. 2015. A Prac- tical Guide to A veraging Functions. Springer Publishing Company, Incorporated

  4. [4]

    Xinyue Chen, Che Wang, Zijian Zhou, and Keith W. Ross. 2021. Randomized Ensembled Double Q-Learning: Learning Fast Without a Model. In International Conference on Learning Representations

  5. [5]

    Djork-Arné Clevert, Thomas Unterthiner, and Sepp Hochreiter. 2016. Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs). In Pro- ceedings of the 4th International Conference on Learning Representations

  6. [6]

    Scott Fujimoto, Herke van Hoof, and David Meger. 2018. Addressing Func- tion Approximation Error in Actor-Critic Methods. In Proceedings of the 35th International Conference on Machine Learning , Vol. 80. 1587–1596

  7. [7]

    Yaozhong Gan, Zhe Zhang, and Xiaoyang Tan. 2021. Stabilizing Q Learning Via Soft Mellowmax Operator. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 35. 7501–7509

  8. [8]

    Dai, and Quoc V

    David Ha, Andrew M. Dai, and Quoc V. Le. 2017. HyperNetworks. InInternational Conference on Learning Representations

Show all 32 references
  1. [9]

    Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. 2018. Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement Learning with a Stochastic Actor. In Proceedings of the 35th International Conference on Machine Learning (Proceedings of Machine Learning Res...

  2. [10]

    Hado van Hasselt, Arthur Guez, and David Silver. 2016. Deep Reinforcement Learning with Double Q-Learning. In Proceedings of the 30th AAAI Conference on Artificial Intelligence. AAAI Press, 2094–2100

  3. [11]

    Siyi Hu, Fengda Zhu, Xiaojun Chang, and Xiaodan Liang. 2021. UPDeT: Uni- versal Multi-agent RL via Policy Decoupling with Transformers. In Interna- tional Conference on Learning Representations . https://openreview.net/forum?id= v9c7hr9ADKx

  4. [12]

    Qingfeng Lan, Yangchen Pan, Alona Fyshe, and Martha White. 2020. Maxmin Q-learning: Controlling the Estimation Bias of Q-learning. In International Con- ference on Learning Representations

  5. [13]

    Litian Liang, Yaosheng Xu, Stephen Mcaleer, Dailin Hu, Alexander Ihler, Pieter Abbeel, and Roy Fox. 2022. Reducing Variance in Temporal-Difference Value Es- timation via Ensemble of Deep Networks. In Proceedings of the 39th International Conference on Machine Learning , Vol. 1...

  6. [14]

    Michael L. Littman. 1994. Markov games as a framework for multi-agent rein- forcement learning. In Machine Learning Proceedings. Elsevier, 157–163

  7. [15]

    Ryan Lowe, YI WU, Aviv Tamar, Jean Harb, OpenAI Pieter Abbeel, and Igor Mordatch. 2017. Multi-Agent Actor-Critic for Mixed Cooperative-Competitive Environments. In Proceedings of the 31th Advances in Neural Information Process- ing Systems. 6379–6390

  8. [16]

    Anuj Mahajan, Tabish Rashid, Mikayel Samvelyan, and Shimon Whiteson. 2019. MAVEN: Multi-Agent Variational Exploration. InAdvances in Neural Information Processing Systems, Vol. 32

  9. [17]

    Anuj Mahajan, Mikayel Samvelyan, Lei Mao, Viktor Makoviychuk, Animesh Garg, Jean Kossaifi, Shimon Whiteson, Yuke Zhu, and Animashree Anandkumar

  10. [18]

    Laurent, and Nadine Le Fort-Piat

    Laetitia Matignon, Guillaume J. Laurent, and Nadine Le Fort-Piat. 2012. Indepen- dent reinforcement learners in cooperative Markov games: a survey regarding coordination problems. The Knowledge Engineering Review 27, 1 (2012), 1–31

  11. [19]

    Rusu, Joel Veness, Marc G

    Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, ...

  12. [20]

    Ling Pan, Tabish Rashid, Bei Peng, Longbo Huang, and Shimon Whiteson. 2021. Regularized Softmax Deep Multi-Agent Q-Learning. In Advances in Neural Infor- mation Processing Systems

  13. [21]

    Foerster, and Shimon Whiteson

    Tabish Rashid, Mikayel Samvelyan, Christian Schröder de Witt, Gregory Farquhar, Jakob N. Foerster, and Shimon Whiteson. 2018. QMIX: Monotonic Value Function Factorisation for Deep Multi-Agent Reinforcement Learning. In Proceedings of the 35th International Conference on Machin...

  14. [22]

    Mikayel Samvelyan, Tabish Rashid, Christian Schroeder de Witt, Gregory Far- quhar, Nantas Nardelli, Tim G. J. Rudner, Chia-Man Hung, Philip H. S. Torr, Jakob Foerster, and Shimon Whiteson. 2019. The StarCraft Multi-Agent Challenge. In Proceedings of the 18th International Conf...

  15. [23]

    Tamal Sarkar and Shobhanjana Kalita. 2021. A Weighted Critic Update Approach to Multi Agent Twin Delayed Deep Deterministic Algorithm. In 2021 IEEE 18th India Council International Conference . 1–6

  16. [24]

    Leibo, Karl Tuyls, and Thore Graepel

    Peter Sunehag, Guy Lever, Audrunas Gruslys, Wojciech Marian Czarnecki, Vini- cius Zambaldi, Max Jaderberg, Marc Lanctot, Nicolas Sonnerat, Joel Z. Leibo, Karl Tuyls, and Thore Graepel. 2018. Value-Decomposition Networks For Co- operative Multi-Agent Learning Based On Team Rewa...

  17. [25]

    Schwartz

    Sebastian Thrun and A. Schwartz. 1993. Issues in Using Function Approximation for Reinforcement Learning. In Proceedings of 4th Connectionist Models Summer School

  18. [26]

    Jianhao Wang, Zhizhou Ren, Terry Liu, Yang Yu, and Chongjie Zhang. 2021. QPLEX: Duplex Dueling Multi-Agent Q-Learning. In International Conference on Learning Representations

  19. [27]

    Weixun Wang, Tianpei Yang, Yong Liu, Jianye Hao, Xiaotian Hao, Yujing Hu, Yingfeng Chen, Changjie Fan, and Yang Gao. 2020. Action Semantics Network: Considering the Effects of Actions in Multiagent Systems. InInternational Confer- ence on Learning Representations . https://ope...

  20. [28]

    Christopher J. C. H. Watkins and Peter Dayan. 1992. Q-learning. Machine Learning 8, 3-4 (1992), 279–292

  21. [29]

    Haolin Wu, Jianwei Zhang, Zhuang Wang, Yi Lin, and Hui Li. 2022. Sub-AVG: Overestimation reduction for cooperative multi-agent reinforcement learning. Neurocomputing 474 (2022), 94–106

  22. [30]

    Yaodong Yang, Guangyong Chen, Weixun Wang, Xiaotian Hao, Jianye HAO, and Pheng-Ann Heng. 2022. Transformer-based Working Memory for Multiagent Reinforcement Learning with Action Parsing. In Advances in Neural Informa- tion Processing Systems , Alice H. Oh, Alekh Agarwal, Danie...

  23. [31]

    Yaodong Yang, Jianye Hao, Ben Liao, Kun Shao, Guangyong Chen, Wulong Liu, and Hongyao Tang. 2020. Qatten: A General Framework for Cooperative Multiagent Reinforcement Learning. CoRR abs/2002.03939 (2020). A PROOF OF OVERESTIMATION IN V ALUE-MIXING Q-LEARNING Here we provide th...

  24. [2021]

    In Proceedings of the 38th International Conference on Machine Learning , Vol

    Tesseract: Tensorised Actors for Multi-Agent Reinforcement Learning. In Proceedings of the 38th International Conference on Machine Learning , Vol. 139. PMLR, 7301–7312

Pith tools

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