REVIEW 2 major objections 6 minor 56 references
CortexDebate: Debating Sparsely and Equally for Multi-Agent Debate
T0 review · 2 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims that a sparse, dynamically pruned debate graph, in which each LLM agent hears only from opponents scored as helpful by a McKinsey Trust Formula weight, improves accuracy and shortens contexts at once.
desk verdict Sparse-debate idea is worth a look, but the algorithm divides by zero in round 1 and the headline numbers rest on an unstated convention. 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 load-bearing object is the McKinsey-based Debate Matter (MDM) module, an artificial stand-in for the brain's white matter that scores every directed edge with the McKinsey Trust Formula $W^d_{i\to j} = C^d \times R^d \times I^d / S^d$. The critical operation is the average-incoming-weight threshold of Equation (11): an agent's debate opponents in a round are exactly the incoming edges whose trust weight is at least the average of all its incoming weights, so the graph is sparse and re-shaped every round. The intimacy factor $I^d$ and the self-orientation factor $S^d$ carry the paper's claim of 'equal' debate, because they make an edge depend on viewpoint collision and participation rather than on the source agent's self-reported confidence alone.
What would settle it
Run Algorithm 1 literally on MATH with Equations (8) through (11): at round 1 every edge weight is $C\times R\times I / 0$, i.e. undefined, so the stated algorithm cannot produce the reported result unless a special-case initialization is silently added; recording that single fact settles whether the published equations describe the evaluated system.
Extended reading notes
Core claim
CortexDebate's central discovery is that a dynamically pruned, directed debate graph yields both higher result accuracy and shorter contexts than debating with everyone. Each edge from agent $i$ to agent $j$ carries a weight $W^d_{i\to j} = C^d \times R^d \times I^d / S^d$, where $C^d$ is the source agent's credibility estimated from a scaling-law loss, $R^d$ is its average historical self-confidence, $I^d$ is the average viewpoint difference ($1$ minus cosine similarity of their past answers), and $S^d$ is its debate participation count. In every round, the edges pointing into each agent whose weight falls below that agent's average incoming weight are deleted, and the agent reads only the surviving answers. The paper reports that this 'debate with whoever helps you' rule outperforms the best baseline on each of eight datasets, e.g. 79.33% versus 77.00% on GSM-IC, 36.33% versus 32.67% on GPQA, and 60.31% versus 55.97% on LongBench, while reducing average per-agent input length to between 2,413 and 11,966 tokens across datasets, a maximum reduction of 70.79% against full-debate baselines.
Load-bearing premise
The load-bearing assumption is that the edge-weight equations are computable in every round, but Equation (9) divides by $S_d=(d-1)(n-1)-P_d$, which is zero at $d=1$, so the paper never actually specifies how the first-round graph is built.
Editorial extensions
If this is right
- If CortexDebate is right, fully connected multi-agent debate is not merely expensive but counterproductive: pruning the lowest-trust incoming edges improves accuracy on every one of the eight datasets while shortening contexts.
- A maximum context reduction of 70.79% (and at least 17.62% over part-debate baselines) means the method can scale to more agents and more rounds before the 'lost in the middle' context overload that motivated the sparse design sets in.
- The per-agent score gains and the shortening of context hold across math, world-knowledge QA, reasoning, and long-context tasks, so the benefit is not tied to a single benchmark family.
- Increasing the number of agents and rounds continues to improve accuracy under the sparse graph, suggesting the approach is compatible with large-scale debates rather than being a small-ensemble trick.
Reading between the lines
- Inference: the paper only compares the average threshold to top-3, bottom-3, and median pruning on MATH; a different task mix could prefer a different pruning rule, so the average threshold is a design choice, not a demonstrated optimum.
- Inference: if the intimacy term is what gives 'equal' debate its power, then the method should show the largest advantage on tasks where answers are verbose and partially correct, and the smallest advantage on single-answer verification tasks; that task-by-task prediction is not tested in the paper.
- Inference: because the trust weights are updated from debate history, freezing the graph after the first round would separate the benefit of sparsity from the benefit of adaptation; the paper does not run this control.
- Inference: the McKinsey formula supplies the shape of the edge weight, but nothing in the paper proves these four factors are the minimal sufficient statistics of helpfulness; a simpler weight such as source accuracy times viewpoint diversity might reproduce the results at lower engineering cost.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes CortexDebate, a multi-agent debate method that maintains a sparse directed graph among LLM agents. Edge weights are computed with a McKinsey Trust Formula analog based on credibility, reliability, intimacy, and self-orientation; edges below the per-receiver average are pruned each round to reduce input context and avoid domination by overconfident agents. The authors report experiments on eight datasets across four task types, claiming the highest accuracy and the largest context-length reduction versus full-debate and static-partial-debate baselines, with ablations isolating the contributions of the sparse graph and the MDM module.
Significance. If the algorithm were fully specified, the paper would make a useful contribution to multi-agent debate: the dynamic sparsification idea is well motivated, the reported context-length reductions are substantial (up to 70.79% relative to PRD on ARC-C), and the main table shows consistent gains over the best baseline on every dataset (e.g., +5.33 on MMLU-pro, +4.34 on LongBench). The 1000-example experiments in Appendix C reproduce the ranking of Table 1, the ablation study in Table 2 attributes clear value to both the sparse graph and the full MDM factors, and Table 4 provides direct evidence that retained edges are helpful to individual agents. The paper also supplies prompts for all methods. However, the central algorithm is formally undefined as written because the edge-weight formula divides by zero in round 1, and one free parameter is selected on the evaluation datasets; both issues must be resolved before the empirical claims can be accepted.
major comments (2)
- [Section 4.2, Eqs. (8)-(9), and Algorithm 1] The edge-weight computation is undefined in round 1. Algorithm 1 initializes P_i^0 to 0 (line 5) and never updates P_i in any later line. With S_d = (d-1)(n-1) - P_d from Eq. (8), at d=1 we obtain S_1=0, and Eq. (9) divides by zero for every directed edge. No epsilon, additive constant, or special case for round 1 is stated, so the graph construction in Eqs. (10)-(12) has no values in the very round that determines the initial sparse graph. Because Algorithm 1 does not update P_i, S_d is also unspecified for d>1, and S_d=0 recurs whenever P_d=(d-1)(n-1), which the pruning rule in Eq. (11) can produce when all incoming weights tie. The reported accuracy and context-length results therefore depend on an unstated convention, and the algorithm as written cannot be executed.
- [Section 5.3 and Appendix D.3 (Table 11)] The confidence recalibration thresholds in Eq. (2) are selected on the evaluation datasets. Appendix D.3 reports average scores on the eight adopted datasets for six threshold configurations and identifies [0.8, 0.6, 0.3] as "Ours" because it achieves the best average score. This is test-set hyperparameter selection for a component of the method, which weakens the claim in Section 5.2 that CortexDebate "performs stably on all adopted datasets." The authors should either use a held-out validation split for choosing thresholds or present the sensitivity analysis as a post-hoc robustness check without treating the winning configuration as the method's default.
minor comments (6)
- [Algorithm 1, lines 30-31] The assignment on line 30 uses O^d_i and H^d_i on the left-hand side while the call is A_j(Q, Others^d_j); it should be O^d_j and H^d_j, and the recalibration on line 31 should also use H^d_j.
- [Appendix B and Appendix C] The text refers to a baseline "MPRC" ("MLD, RECONCILE, ChatEval, and MPRC") that is not defined anywhere; the intended name appears to be PRD (Peer Review Debate).
- [Section 3.1] The phrase "with A_j as the tail node" is inconsistent with standard directed-edge terminology: for an edge E_{i->j}, A_j is the head, not the tail.
- [Figure 5] In the provided manuscript, Figure 5 contains uninterpretable "/uni..." glyph sequences in place of axis labels; the figure must be regenerated with readable text before publication.
- [Eq. (2)] Equation (2) uses H^0_i on both sides for the raw and recalibrated confidence values; a distinct notation for the recalibrated value would avoid confusion, especially since the recalibration is applied again in Algorithm 1.
- [Eq. (8)] The notation P_d is used for an individual agent's participation count, yet the subscript d also denotes the debate round; the paper should use a per-agent symbol such as P_i^d throughout, and Algorithm 1 should show how P_i^d is updated after each debate round.
Circularity Check
Derivation is empirical, not circular: trust weights and pruning are computed from agent outputs, accuracy and context results are external benchmark claims; the single self-citation is a metric reference, and the round-1 division by zero in Eq. (9) is a correctness gap, not circularity.
full rationale
The central derivation chain—Eqs. (3)-(12) in Section 4.2—computes edge weights W^d_{i->j} from the agents' own credibility, reliability, intimacy, and self-orientation, then prunes edges below the per-receiver average; the resulting sparse graph is an algorithmic mechanism, not a restatement of the reported accuracies or context lengths. Tables 1 and 7 compare CortexDebate against external baselines on standard datasets, so the main claims are empirical and falsifiable rather than consequences of a definition. The only author-overlapping citation, Sun et al. (2025), is used in Section 5.1 merely as one of several references for the Result Accuracy metric; it is not load-bearing. A genuine issue exists in the manuscript's own equations: at d=1, Eq. (8) gives S_1=0 given P_1=0 from Algorithm 1, and Eq. (9) then divides by zero for every edge, with no stated initialization or special case; this is an omitted-definition and reproducibility flaw, not a circular reduction, so it is recorded here but does not raise the circularity score. Similarly, the recalibration thresholds in Table 11 are selected by comparing configurations on the adopted datasets, which is a potential test-set-informed design concern rather than a circular derivation.
Assumptions & free parameters
free parameters (2)
- Confidence recalibration thresholds =
[0.8, 0.6, 0.3]
- Per-model pretraining token count M in credibility term =
unspecified
assumptions (6)
- domain assumption The Chinchilla scaling law (Hoffmann et al., 2022) with coefficients 406.4, 410.7, and 1.69 estimates the relative competence of the five instruct-tuned backbones from parameter count and pretraining tokens.
- domain assumption The McKinsey trust formula T = C x R x I / S, designed for trust between people in organizations, transfers to LLM agents as a measure of debate usefulness.
- domain assumption Cosine similarity between two agents' answer texts is a valid measure of viewpoint difference, with larger differences making debate more productive.
- domain assumption Self-reported confidence scores, after the recalibration in Equation (2), are informative about answer correctness and stable enough to serve as a reliability signal over rounds.
- domain assumption Agents follow the answer-regeneration prompt of Equation (13), read the supplied peer answers, and update their answers accordingly.
- ad hoc to paper S_d in Equation (8) is nonzero in every round so that the edge weight in Equation (9) is finite.
invented entities (1)
-
MDM (McKinsey-based Debate Matter)
independent evidence
Cite this review
Pith. "Pith review of CortexDebate: Debating Sparsely and Equally for Multi-Agent Debate." pith.science (2026). https://pith.science/paper/YXCA6UIJ
@misc{pith2026250703928,
author = {Pith},
title = {Pith review of: CortexDebate: Debating Sparsely and Equally for Multi-Agent Debate},
year = {2026},
howpublished = {\url{https://pith.science/paper/YXCA6UIJ}},
note = {Machine review of arXiv:2507.03928}
}
read the original abstract
Nowadays, single Large Language Model (LLM) struggles with critical issues such as hallucination and inadequate reasoning abilities. To mitigate these issues, Multi-Agent Debate (MAD) has emerged as an effective strategy, where LLM agents engage in in-depth debates with others on tasks. However, existing MAD methods face two major issues: (a) too lengthy input contexts, which causes LLM agents to get lost in plenty of input information and experiences performance drop; and (b) the overconfidence dilemma, where self-assured LLM agents dominate the debate, leading to low debating effectiveness. To address these limitations, we propose a novel MAD method called "CortexDebate". Inspired by the human brain's tendency to establish a sparse and dynamically optimized network among cortical areas governed by white matter, CortexDebate constructs a sparse debating graph among LLM agents, where each LLM agent only debates with the ones that are helpful to it. To optimize the graph, we propose a module named McKinsey-based Debate Matter (MDM), which acts as an artificial analog to white matter. By integrating the McKinsey Trust Formula, a well-established measure of trustworthiness from sociology, MDM enables credible evaluations that guide graph optimization. The effectiveness of our CortexDebate has been well demonstrated by extensive experimental results across eight datasets from four task types.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
Yushi Bai, Xin Lv, Jiajie Zhang, Hongchang Lyu, Jiankai Tang, Zhidian Huang, Zhengxiao Du, Xiao Liu, Aohan Zeng, Lei Hou, et al. 2023. Longbench: A bilingual, multitask benchmark for long context understanding. In Annual Meeting of the Association for Computational Linguistics
work page 2023
-
[2]
Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, et al. 2024. Graph of thoughts: Solving elaborate problems with large language models. In AAAI Conference on Artificial Intelligence
work page 2024
-
[3]
Jonah Brown-Cohen, Geoffrey Irving, and Georgios Piliouras. 2023. Scalable ai safety via doubly-efficient debate. In International Conference on Machine Learning
work page 2023
-
[4]
Chi-Min Chan, Weize Chen, Yusheng Su, Jianxuan Yu, Wei Xue, Shanghang Zhang, Jie Fu, and Zhiyuan Liu. 2023. Chateval: Towards better llm-based evaluators through multi-agent debate. In International Conference on Learning Representations
work page 2023
-
[5]
Justin Chih-Yao Chen, Swarnadeep Saha, and Mohit Bansal. 2023. Reconcile: Round-table conference improves reasoning via consensus among diverse llms. arXiv preprint arXiv:2309.13007
arXiv 2023
-
[6]
Steffi Chern, Ethan Chern, Graham Neubig, and Pengfei Liu. 2024. Can large language models be trusted for evaluation? scalable meta-evaluation of llms as evaluators via agent debate. arXiv preprint arXiv:2401.16788
arXiv 2024
-
[7]
Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and Oyvind Tafjord. 2018. Think you have solved question answering? try arc, the ai2 reasoning challenge. arXiv preprint arXiv:1803.05457
arXiv 2018
-
[8]
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. 2021. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168
arXiv 2021
Show all 56 references
-
[9]
Yilun Du, Shuang Li, Antonio Torralba, Joshua B Tenenbaum, and Igor Mordatch. 2023. Improving factuality and reasoning in language models through multiagent debate. In International Conference on Machine Learning
2023
-
[10]
Zhihua Duan and Jialin Wang. 2024. Enhancing multi-agent consensus through third-party llm integration: Analyzing uncertainty and mitigating hallucinations in large language models. arXiv preprint arXiv:2411.16189
2024 arXiv
-
[11]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. 2024. The llama 3 herd of models. arXiv preprint arXiv:2407.21783
2024 arXiv
-
[12]
Yong Guan, Hao Peng, Lei Hou, and Juanzi Li. 2025. Mmd-ere: Multi-agent multi-sided debate for event relation extraction. In Proceedings of the 31st International Conference on Computational Linguistics
2025
-
[13]
Zhitao He, Pengfei Cao, Chenhao Wang, Zhuoran Jin, Yubo Chen, Jiexin Xu, Huaijun Li, Kang Liu, and Jun Zhao. 2024. Agentscourt: Building judicial decision-making agents with court debate simulation and legal knowledge augmentation. In Findings of the Association for Computatio...
2024
-
[14]
Mahmood Hegazy. 2024. Diversity of thought elicits stronger reasoning capabilities in multi-agent debate frameworks. arXiv preprint arXiv:2410.12853
2024
-
[15]
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. 2020. Measuring massive multitask language understanding. In International Conference on Learning Representations
2020
-
[16]
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. 2021. Measuring mathematical problem solving with the math dataset. Advances in Neural Information Processing Systems
2021
-
[17]
Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, et al. 2022. Training compute-optimal large language models. Advances in Neural Information Processing Systems
2022
-
[18]
Qitian Jason Hu, Jacob Bieker, Xiuyu Li, Nan Jiang, Benjamin Keigwin, Gaurav Ranganath, Kurt Keutzer, and Shriyash Kaustubh Upadhyay. 2024. Routerbench: A benchmark for multi-llm routing system. arXiv preprint arXiv:2403.12031
2024 arXiv
-
[19]
Zhe Hu, Hou Pong Chan, Jing Li, and Yu Yin. 2025. Debate-to-write: A persona-driven multi-agent framework for diverse argument generation. In International Conference on Computational Linguistics
2025
-
[20]
Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. 2023. Mistral 7b. arXiv preprint arXiv:2310.06825
2023 arXiv
-
[21]
Akbir Khan, John Hughes, Dan Valentine, Laura Ruis, Kshitij Sachan, Ansh Radhakrishnan, Edward Grefenstette, Samuel R Bowman, Tim Rockt \"a schel, and Ethan Perez. 2024. Debating with more persuasive llms leads to more truthful answers. In International Conference on Machine Learning
2024
-
[22]
Takeshi Kojima, Shixiang Shane Gu, Machel Reid, Yutaka Matsuo, and Yusuke Iwasawa. 2022. Large language models are zero-shot reasoners. Advances in Neural Information Processing Systems
2022
-
[23]
Eric Lamarre, T Mansour, and J Tetrault. 2012. Mckinsey on cooperatives
2012
-
[24]
Renhao Li, Minghuan Tan, Derek F Wong, and Min Yang. 2024 a . Coevol: Constructing better responses for instruction finetuning through multi-agent cooperation. In Conference on Empirical Methods in Natural Language Processing
2024
-
[25]
Yunxuan Li, Yibing Du, Jiageng Zhang, Le Hou, Peter Grabowski, Yeqing Li, and Eugene Ie. 2024 b . Improving multi-agent debate with sparse communication topology. In Findings of the Association for Computational Linguistics: EMNLP 2024
2024
-
[26]
Jingcong Liang, Rong Ye, Meng Han, Ruofei Lai, Xinyu Zhang, Xuanjing Huang, and Zhongyu Wei. 2024. Debatrix: Multi-dimensinal debate judge with iterative chronological analysis based on llm. In Findings of the Association for Computational Linguistics: ACL 2024
2024
-
[27]
Tian Liang, Zhiwei He, Wenxiang Jiao, Xing Wang, Yan Wang, Rui Wang, Yujiu Yang, Zhaopeng Tu, and Shuming Shi. 2023. Encouraging divergent thinking in large language models through multi-agent debate. In Annual Meeting Of The Association For Computational Linguistics
2023
-
[28]
Nelson F Liu, Kevin Lin, John Hewitt, Ashwin Paranjape, Michele Bevilacqua, Fabio Petroni, and Percy Liang. 2024 a . Lost in the middle: How language models use long contexts. Transactions of the Association for Computational Linguistics, 12:157--173
2024
-
[29]
Tongxuan Liu, Xingyu Wang, Weizhe Huang, Wenjiang Xu, Yuting Zeng, Lei Jiang, Hailong Yang, and Jing Li. 2024 b . Groupdebate: Enhancing the efficiency of multi-agent debate using group discussion. arXiv preprint arXiv:2409.14051
2024
-
[30]
Linhao Luo, Zicheng Zhao, Chen Gong, Gholamreza Haffari, and Shirui Pan. 2024. Graph-constrained reasoning: Faithful reasoning on knowledge graphs with large language models. arXiv preprint arXiv:2410.13080
2024 arXiv
-
[31]
Julian Michael, Salsabila Mahdi, David Rein, Jackson Petty, Julien Dirani, Vishakh Padmakumar, and Samuel R Bowman. 2023. Debate helps supervise unreliable experts. arXiv preprint arXiv:2311.08702
2023 arXiv
-
[32]
Chau Pham, Boyi Liu, Yingxiang Yang, Zhengyu Chen, Tianyi Liu, Jianbo Yuan, Bryan A Plummer, Zhaoran Wang, and Hongxia Yang. 2023. Let models speak ciphers: Multiagent debate through embeddings. In International Conference on Learning Representations
2023
-
[33]
Kunat Pipatanakul, Phatrasek Jirabovonvisut, Potsawee Manakul, Sittipong Sripaisarnmongkol, Ruangsak Patomwong, Pathomporn Chokchainant, and Kasima Tharnpipitchai. 2023. Typhoon: Thai large language models. arXiv preprint arXiv:2312.13951
2023 arXiv
-
[34]
P Rajpurkar. 2016. Squad: 100,000+ questions for machine comprehension of text. In Conference on Empirical Methods in Natural Language Processing
2016
-
[35]
David Rein, Betty Li Hou, Asa Cooper Stickland, Jackson Petty, Richard Yuanzhe Pang, Julien Dirani, Julian Michael, and Samuel R Bowman. 2023. Gpqa: A graduate-level google-proof q&a benchmark. arXiv preprint arXiv:2311.12022
2023 arXiv
-
[36]
Freda Shi, Xinyun Chen, Kanishka Misra, Nathan Scales, David Dohan, Ed H Chi, Nathanael Sch \"a rli, and Denny Zhou. 2023. Large language models can be easily distracted by irrelevant context. In International Conference on Machine Learning
2023
-
[37]
Qiushi Sun, Zhangyue Yin, Xiang Li, Zhiyong Wu, Xipeng Qiu, and Lingpeng Kong. 2024 a . Corex: Pushing the boundaries of complex reasoning through multi-model collaboration. In ICLR 2024 Workshop on Large Language Model (LLM) Agents
2024
-
[38]
Xiaoxi Sun, Jinpeng Li, Yan Zhong, Dongyan Zhao, and Rui Yan. 2024 b . Towards detecting llms hallucination via markov chain-based multi-agent debate framework. arXiv preprint arXiv:2406.03075
2024 arXiv
-
[39]
Yiliu Sun, Yanfang Zhang, Zicheng Zhao, Sheng Wan, Dacheng Tao, and Chen Gong. 2025. Fast-slow-thinking: Complex task solving with large language models. arXiv preprint arXiv:2504.08690
2025 arXiv
-
[40]
Qwen Team. 2024. https://qwenlm.github.io/blog/qwen2.5/ Qwen2.5: A party of foundation models
2024
-
[41]
Michel Thiebaut de Schotten and Stephanie J Forkel. 2022. The emergent properties of the connected brain. Science, 378(6619):505--510
2022
-
[42]
Lifu Tu, Semih Yavuz, Jin Qu, Jiacheng Xu, Rui Meng, Caiming Xiong, and Yingbo Zhou. 2023. Unlocking anticipatory text generation: A constrained approach for faithful decoding with large language models. In Conference on Empirical Methods in Natural Language Processing
2023
-
[43]
Fanqi Wan, Longguang Zhong, Ziyi Yang, Ruijun Chen, and Xiaojun Quan. 2024. Fusechat: Knowledge fusion of chat models. arXiv preprint arXiv:2408.07990
2024 arXiv
-
[44]
Haotian Wang, Xiyuan Du, Weijiang Yu, Qianglong Chen, Kun Zhu, Zheng Chu, Lian Yan, and Yi Guan. 2025. Learning to break: Knowledge-enhanced reasoning in multi-agent debate system. Neurocomputing, 618:129063
2025
-
[45]
Xuezhi Wang, Jason Wei, Dale Schuurmans, Quoc V Le, Ed H Chi, Sharan Narang, Aakanksha Chowdhery, and Denny Zhou. 2022. Self-consistency improves chain of thought reasoning in language models. In International Conference on Learning Representations
2022
-
[46]
Yubo Wang, Xueguang Ma, Ge Zhang, Yuansheng Ni, Abhranil Chandra, Shiguang Guo, Weiming Ren, Aaran Arulraj, Xuan He, Ziyan Jiang, et al. 2024. Mmlu-pro: A more robust and challenging multi-task language understanding benchmark. Advances in Neural Information Processing Systems
2024
-
[47]
Kai Xiong, Xiao Ding, Yixin Cao, Ting Liu, and Bing Qin. 2023. Examining inter-consistency of large language models collaboration: An in-depth analysis via debate. In Findings of the Association for Computational Linguistics: EMNLP 2023
2023
-
[48]
Fangyuan Xu, Weijia Shi, and Eunsol Choi. 2023 a . Recomp: Improving retrieval-augmented lms with compression and selective augmentation. In International Conference on Learning Representations
2023
-
[49]
Zhenran Xu, Senbao Shi, Baotian Hu, Jindi Yu, Dongfang Li, Min Zhang, and Yuxiang Wu. 2023 b . Towards reasoning in large language models via multi-agent peer review collaboration. arXiv preprint arXiv:2311.08152
2023 arXiv
-
[50]
Ziyi Yang, Fanqi Wan, Longguang Zhong, Tianyuan Shi, and Xiaojun Quan. 2024. Weighted-reward preference optimization for implicit model fusion. arXiv preprint arXiv:2412.03187
2024 arXiv
-
[51]
Zhangyue Yin, Qiushi Sun, Cheng Chang, Qipeng Guo, Junqi Dai, Xuanjing Huang, and Xipeng Qiu. 2023. Exchange-of-thought: Enhancing large language model capabilities through cross-model communication. In Conference on Empirical Methods in Natural Language Processing
2023
-
[52]
Luke Yoffe, Alfonso Amayuelas, and William Yang Wang. 2024. Debunc: mitigating hallucinations in large language model agent communication with uncertainty estimations. arXiv preprint arXiv:2407.06426
2024 arXiv
-
[53]
Jintian Zhang, Xin Xu, Ningyu Zhang, Ruibo Liu, Bryan Hooi, and Shumin Deng. 2024 a . Exploring collaboration mechanisms for llm agents: A social psychology view. In ICLR 2024 Workshop on Large Language Model (LLM) Agents
2024
-
[54]
Mingqing Zhang, Haisong Gong, Qiang Liu, Shu Wu, and Liang Wang. 2024 b . Breaking event rumor detection via stance-separated multi-agent debate. arXiv preprint arXiv:2412.04859
2024 arXiv
-
[55]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...
-
[56]
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 gl...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.