REVIEW 3 major objections 5 minor 72 references
Critical-Questions-of-Thought: Steering LLM reasoning with Argumentative Querying
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Asking an LLM eight critical questions about its own draft reasoning raises math and logic scores by about five percent.
desk verdict The argumentative querying idea is fresh, but the key ablation is confounded with repeated sampling, so the paper doesn't yet show that critical questions are what improve LLM reasoning. 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 component is the fixed battery of eight critical questions, drawn from argumentation theory's account of presumptive, challengeable reasoning and mapped onto the elements of the classical argumentation schema (claim, data, warrant, backing, qualifier, rebuttal). These questions convert the LLM's draft reasoning into an argument that can be challenged, and the Yes/No answers are counted by a checkpoint that decides whether to iterate or accept the plan. The specific thresholds—7/8 positive answers for the first five attempts, 5/8 thereafter, and acceptance after ten total iterations—implement the paper's governing idea that a conclusion stands unless disproved by the critical probe.
What would settle it
Comparing MT-Bench scores under the real Step-2 self-assessment against a condition where the Yes/No answers are replaced by random coin flips would settle it: if scores do not drop, the critical-question checkpoint is not carrying the gain.
Extended reading notes
Core claim
The paper's central discovery is that argumentation-theoretic critical questions can act as a reasoning gate for LLMs. The pipeline (CQoT) first asks the model to produce a reasoning plan in the form of premises leading to conclusions, without giving the final answer. The model then answers eight Yes/No critical questions targeting the elements of the classical argumentation schema—data, warrant, backing, claim, qualifier, and rebuttal—about its own plan. A verdict of at least seven positive answers (or five, after several failed attempts) allows the plan to proceed; otherwise the model regenerates a plan. Finally, the model must produce its answer by strictly following the accepted plan. Evaluated on the MT-Bench reasoning and math subsets with five LLMs, CQoT clearly won 18 of 20 comparisons against baseline and CoT, tied one, and lost one, and an ablation shows that removing the critical-question stage reduces but does not eliminate the gain.
Load-bearing premise
The load-bearing premise is that the LLM's own 'Yes' or 'No' answers to the eight critical questions are reliable enough to decide whether its reasoning plan is sound; if the model is a poor judge of its own reasoning, the checkpoint that makes CQoT work fails.
Editorial extensions
If this is right
- Because the pipeline is a prompting wrapper, it can be applied to any LLM without retraining, and the paper's results show open-source models such as Llama 3.1-70b-Instruct and Nemotron-51b-Instruct matching or beating proprietary baselines on several MT-Bench tasks.
- The ablation result implies that even a simplified pipeline that only forces a premise-conclusion reasoning plan helps over baseline, with the critical questions adding a further measurable improvement.
- CQoT sits inside the test-time compute paradigm: it trades additional inference time and API calls for higher answer quality, without requiring multiple sampled answers.
- The authors observe that smaller models, especially below roughly 70 billion parameters, may not follow the instructional protocol reliably enough to benefit fully, suggesting a scale threshold for the method.
- The pipeline is orthogonal to other enhancement strategies, so it can be combined with prompt engineering, sampling, or other techniques.
Reading between the lines
- A natural extension the paper leaves implicit would specialize the eight questions to a domain and compare against the generic set; if the generic gain mostly comes from forcing self-explanation, the question wording should matter less than the structured re-planning.
- Because the checkpoint trusts the model's own Yes/No self-reports, a direct test that replaces that self-assessment with an independent verifier model (or a human judge on a sample) would show whether accurate self-critique is the mechanism or whether the improvement comes from simply regenerating plans.
- The paper's binary pass/fail counting could be replaced by a probabilistic or per-question weighted score, which might recover similar gains at lower iteration cost and would clarify how much of the effect depends on the specific 7/8 and 5/8 thresholds.
- If the effect replicates on contamination-free, harder benchmarks, it would strengthen the conclusion that the gain is about reasoning rather than retrieval of familiar answers.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces Critical-Questions-of-Thought (CQoT), a four-step prompting pipeline that asks an LLM to produce a structured reasoning plan, evaluates that plan against eight argumentation-theoretic critical questions, iterates the plan when the questions are not answered positively, and only then prompts the model to produce its final answer. The authors evaluate CQoT on the MT-Bench Reasoning and Math tasks using five LLMs (Claude Sonnet 3.5, GPT-4o, Gemini 1.5-pro-001, Llama 3.1-70b-Instruct, Nemotron-51b-Instruct) and report that CQoT outperforms both the standard baseline and a Chain-of-Thought variant, with an average improvement of approximately 5%. They also report an ablation study comparing a Step 1+4-only pipeline with the full CQoT pipeline on two open-source models.
Significance. If the central claim holds, CQoT would be a lightweight, model-agnostic test-time-compute method that improves LLM reasoning without fine-tuning and with modest computational overhead. The paper has several strengths: it uses a diverse set of freely available LLMs, shares code and evaluation results publicly, and is transparent about cases where CQoT underperforms CoT (e.g., Nemotron on Reasoning). The connection to Toulmin's argumentation schemes and critical questions is conceptually interesting and could inspire further work on argumentation-based prompting. However, the current evidence does not yet establish that the critical questions themselves are the cause of the observed improvements, because the ablation control is not matched for the number of reasoning attempts, and the evaluation methodology has unresolved reliability concerns.
major comments (3)
- [§4.1.3, Table 2] The ablation does not isolate the effect of the critical questions. The Step 1+4 control generates a single reasoning plan, while the full CQoT pipeline may iterate up to ten times (Figure 2 and §3.1). Any resampling strategy would be expected to improve over a single sample, and Section 5 explicitly states that 'the underlying LLM is more likely to output the correct reply if this appears at least once among its potential responses.' To attribute the improvement to the critical questions, the control must match the number of attempts (e.g., repeated independent Step 1+4 runs, or an equal-iteration loop that skips the Step 2/3 checkpoint).
- [§3.1 Steps 2–3, §5] The reliability of the Step 3 checkpoint is never measured. The pipeline treats the model's PASS/FAIL answers to the eight critical questions as a signal of plan quality, but the paper reports no comparison of these answers against independent correctness labels, and no statistics on how often the checkpoint accepts a bad plan or rejects a good one. A validation study (e.g., scoring a sample of accepted and rejected plans by human or ground-truth correctness) is needed to show that the argumentative filter, rather than the loop, is doing the work.
- [§4.1.4, §4.2] The evaluation rests on a single LLM judge (GPT-4o) with manual corrections, and no human validation or inter-judge agreement is reported. The procedure of prompting until the same score occurs three times is ad hoc, and the manual re-prompting described in the Limitations section could introduce bias. Furthermore, with only 40 questions per model and no statistical significance tests, the reported mean differences of roughly 0.3–0.9 points on a 1–10 scale (Table 1) are not shown to be distinguishable from noise. The authors should report confidence intervals, paired significance tests, or a human-judged subset to substantiate the claimed improvement.
minor comments (5)
- [Figure 7] The prompt template for Step 2 contains an unexplained block of garbled text ('sdg sdgd sgasdg ...'); this appears to be a formatting artifact and should be removed.
- [§4.1.2] The number of test questions is ambiguous: the text says 40 questions evenly divided between reasoning and math, while MT-Bench consists of 80 queries with two sub-questions each; please clarify whether the 40 refers to 10 queries per category with two turns each, and report per-category sample sizes.
- [Section 3] The phrase 'a majority of the CQs are answered positively' contradicts the actual thresholds of 7/8 and later 5/8; 5/8 is a majority, 7/8 is not. Please rephrase to 'a sufficient number'.
- [Section 4.3, Table 3] The average improvements quoted in the text (+4.61% reasoning, +5.4% math) do not match the averages shown in Table 3 (+4.74% reasoning Standard, +5.71% math Standard, or +4.48% reasoning CoT, +5.09% math CoT). Please make the text and table consistent.
- [Section 5] The statement that CQoT does not produce replies that never occur in the baseline is an important caveat; it deserves to be mentioned in the abstract or conclusions as a qualification of the claimed improvement.
Circularity Check
No significant circularity: CQoT's gains are empirical and not entailed by its prompt definitions; the self-citations are motivational, and the repeated-sampling ablation confound is a validity issue rather than a circular reduction.
full rationale
CQoT is an empirical prompting pipeline evaluated on MT-Bench. The central claim, that adding eight critical questions improves LLM reasoning, is not derived from the definitions: the thresholds (7/8, 5/8, ten iterations, five strict iterations) are hand-chosen in Section 3.1 rather than fitted to the test data, and the judge scores come from an external protocol based on Zheng et al. [63]. The Toulmin/Walton notions are used as an inspiration for prompts, not as axioms that entail the measured scores. The authors' self-citations, notably [8] ('Can formal argumentative reasoning enhance LLMs performances?') and the EQRbot papers [5,7], are motivational or related-work only; none is load-bearing, since removing them would not change the evaluation or the reported numbers. Thus no step reduces, by construction, to its own input. A separate, non-circularity validity concern: Section 4.1.3's ablation compares a single-plan condition (Step1+4) with the full CQoT pipeline, which may iterate up to ten times, and Section 5 concedes 'the underlying LLM is more likely to output the correct reply if this appears at least once among its potential responses'. This confounds the causal role of the critical questions with repeated sampling, but it is an experimental-methodology issue, not a circular derivation, and it does not make the reported scores equivalent to the pipeline's own inputs by definition.
Assumptions & free parameters
free parameters (3)
- Pass threshold for critical questions (7/8) =
7/8
- Relaxed threshold (5/8) after five iterations =
5/8
- Maximum iterations (5, then 10) =
5 and 10
assumptions (4)
- domain assumption Toulmin's model of argumentation is an appropriate framework for probing LLM reasoning.
- domain assumption The LLM's self-assessment in Step 2 is a reliable indicator of the quality of its own reasoning plan.
- domain assumption GPT-4o is a reliable judge of response quality for reasoning and math tasks.
- domain assumption MT-Bench contamination is either absent or equally affects all compared methods, preserving relative conclusions.
Cite this review
Pith. "Pith review of Critical-Questions-of-Thought: Steering LLM reasoning with Argumentative Querying." pith.science (2026). https://pith.science/paper/MNT6BDH7
@misc{pith2026241215177,
author = {Pith},
title = {Pith review of: Critical-Questions-of-Thought: Steering LLM reasoning with Argumentative Querying},
year = {2026},
howpublished = {\url{https://pith.science/paper/MNT6BDH7}},
note = {Machine review of arXiv:2412.15177}
}
read the original abstract
Studies have underscored how, regardless of the recent breakthrough and swift advances in AI research, even state-of-the-art Large Language models (LLMs) continue to struggle when performing logical and mathematical reasoning. The results seem to suggest that LLMs still work as (highly advanced) data pattern identifiers, scoring poorly when attempting to generalise and solve reasoning problems the models have never previously seen or that are not close to samples presented in their training data. To address this compelling concern, this paper makes use of the notion of critical questions from the literature on argumentation theory, focusing in particular on Toulmin's model of argumentation. We show that employing these critical questions can improve the reasoning capabilities of LLMs. By probing the rationale behind the models' reasoning process, the LLM can assess whether some logical mistake is occurring and correct it before providing the final reply to the user prompt. The underlying idea is drawn from the gold standard of any valid argumentative procedure: the conclusion is valid if it is entailed by accepted premises. Or, to paraphrase such Aristotelian principle in a real-world approximation, characterised by incomplete information and presumptive logic, the conclusion is valid if not proved otherwise. This approach successfully steers the models' output through a reasoning pipeline, resulting in better performance against the baseline and its Chain-of-Thought (CoT) implementation. To this end, an extensive evaluation of the proposed approach on the MT-Bench Reasoning and Math tasks across a range of LLMs is provided.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
The surprising effectiveness of test-time training for abstract reasoning, 2024
Ekin Aky¨ urek, Mehul Damani, Linlu Qiu, Han Guo, Yoon Kim, and Jacob Andreas. The surprising effectiveness of test-time training for abstract reasoning, 2024
work page 2024
-
[2]
Anthropic. Claude 3.5 Sonnet. Anthropic blog , 2024. https://www. anthropic.com/news/claude-3-5-sonnet (last accessed 26/11/2024)
work page 2024
-
[3]
Handbook of formal argumentation
Pietro Baroni, Dov Gabbay, Massimilino Giacomin, and Leendert Van der Torre, editors. Handbook of formal argumentation . College Publications, 2018. 20
work page 2018
-
[4]
Large language mon- keys: Scaling inference compute with repeated sampling
Bradley Brown, Jordan Juravsky, Ryan Ehrlich, Ronald Clark, Quoc V Le, Christopher R´ e, and Azalia Mirhoseini. Large language mon- keys: Scaling inference compute with repeated sampling. arXiv preprint arXiv:2407.21787, 2024
arXiv 2024
-
[5]
Federico Castagna, Alexandra Garton, Peter McBurney, Simon Parsons, Isabel Sassoon, and Elizabeth I. Sklar. EQRbot: A chatbot delivering EQR argument-based explanations. Frontiers in Artificial Intelligence , 6, 2023
2023
-
[6]
Computational argumentation-based chatbots: a survey
Federico Castagna, Nadin K¨ okciyan, Isabel Sassoon, Simon Parsons, and Elizabeth Sklar. Computational argumentation-based chatbots: a survey. Journal of Artificial Intelligence Research , 80:1271–1310, 2024
work page 2024
-
[7]
Federico Castagna, Simon Parsons, Isabel Sassoon, and Elizabeth I. Sklar. Providing explanations via the EQR argument scheme. In Computational Models of Argument: Proceedings of COMMA 2022 , 2022
work page 2022
-
[8]
Can formal argumentative reasoning enhance LLMs performances?
Federico Castagna, Isabel Sassoon, and Simon Parsons. Can formal ar- gumentative reasoning enhance LLMs performances? arXiv preprint arXiv:2405.13036, 2024
work page Pith review arXiv 2024
Show all 72 references
-
[9]
Yu, Qiang Yang, and Xing Xie
Yupeng Chang, Xu Wang, Jindong Wang, Yuan Wu, Kaijie Zhu, Hao Chen, Linyi Yang, Xiaoyuan Yi, Cunxiang Wang, Yidong Wang, Wei Ye, Yue Zhang, Yi Chang, Philip S. Yu, Qiang Yang, and Xing Xie. A survey on evaluation of large language models. arXiv preprint arXiv:2307.03109 , 2023
2023 arXiv
-
[10]
A simple and provable scaling law for the test-time compute of large language models
Yanxi Chen, Xuchen Pan, Yaliang Li, Bolin Ding, and Jingren Zhou. A simple and provable scaling law for the test-time compute of large language models. arXiv preprint arXiv:2411.19477 , 2024
2024
-
[11]
Chatbot arena: An open platform for evaluating llms by human preference
Wei-Lin Chiang, Lianmin Zheng, Ying Sheng, Anastasios Nikolas An- gelopoulos, Tianle Li, Dacheng Li, Hao Zhang, Banghua Zhu, Michael Jordan, Joseph E Gonzalez, et al. Chatbot arena: An open platform for evaluating llms by human preference. arXiv preprint arXiv:2403.04132 , 2024
2024 arXiv
-
[12]
Arc prize 2024
Francois Chollet, Mike Knoop, Bryan Landers, Greg Kamradt, Hansueli Jud, Walter Reade, and Addison Howard. Arc prize 2024. https: //kaggle.com/competitions/arc-prize-2024, 2024. Kaggle
2024
-
[13]
On the measure of intelligence, 2019
Fran¸ cois Chollet. On the measure of intelligence, 2019
2019
-
[14]
Lm vs lm: Detect- ing factual errors via cross examination
Roi Cohen, May Hamri, Mor Geva, and Amir Globerson. Lm vs lm: Detect- ing factual errors via cross examination. arXiv preprint arXiv:2305.13281 , 2023. 21
2023 arXiv
-
[15]
On the acceptability of arguments and its fundamental role in nonmonotonic reasoning, logic programming and n-person games
Phan Minh Dung. On the acceptability of arguments and its fundamental role in nonmonotonic reasoning, logic programming and n-person games. Artificial intelligence, 77(2):321–357, 1995
1995
-
[16]
Argumentative large language models for explainable and contestable decision-making
Gabriel Freedman, Adam Dejl, Deniz Gorur, Xiang Yin, Antonio Rago, and Francesca Toni. Argumentative large language models for explainable and contestable decision-making. arXiv preprint arXiv:2405.02079 , 2024
2024 arXiv
-
[17]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752 , 2023
2023 arXiv
-
[18]
Harnessing toul- min’s theory for zero-shot argument explication
Ankita Gupta, Ethan Zuckerman, and Brendan O’Connor. Harnessing toul- min’s theory for zero-shot argument explication. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages 10259–10276, 2024
2024
-
[19]
Folio: Natural language reasoning with first-order logic
Simeng Han, Hailey Schoelkopf, Yilun Zhao, Zhenting Qi, Martin Riddell, Wenfei Zhou, James Coady, David Peng, Yujie Qiao, Luke Benson, et al. Folio: Natural language reasoning with first-order logic. arXiv preprint arXiv:2209.00840, 2022
2022 arXiv
-
[20]
Measuring massive multitask language understanding
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. Measuring massive multitask language understanding. arXiv preprint arXiv:2009.03300 , 2020
2009 arXiv
-
[21]
Measuring mathematical problem solving with the math dataset
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset. arXiv preprint arXiv:2103.03874, 2021
2021 arXiv
-
[22]
OpenAI and others seek new path to smarter AI as current methods hit limitations
Krystal Hu and Anna Tong. OpenAI and others seek new path to smarter AI as current methods hit limitations. Reuters, 2024. https://www.reuters.com/technology/artificial-intelligence/ openai-rivals-seek-new-path-smarter-ai-current-methods-hit-limitations-2024-11-11/ (last acces...
2024
-
[23]
Thinking, fast and slow
Daniel Kahneman. Thinking, fast and slow. Farrar, Straus and Giroux , 2011
2011
-
[24]
How far is video generation from world model: A physical law perspective, 2024
Bingyi Kang, Yang Yue, Rui Lu, Zhijie Lin, Yang Zhao, Kaixin Wang, Gao Huang, and Jiashi Feng. How far is video generation from world model: A physical law perspective, 2024
2024
-
[25]
Large language models are zero-shot reasoners
Takeshi Kojima, Shixiang Shane Gu, Machel Reid, Yutaka Matsuo, and Yusuke Iwasawa. Large language models are zero-shot reasoners. Advances in neural information processing systems , 35:22199–22213, 2022
2022
-
[26]
Jamba: A hybrid transformer-mamba language model
Opher Lieber, Barak Lenz, Hofit Bata, Gal Cohen, Jhonathan Osin, Itay Dalmedigos, Erez Safahi, Shaked Meirom, Yonatan Belinkov, Shai Shalev- Shwartz, et al. Jamba: A hybrid transformer-mamba language model. arXiv preprint arXiv:2403.19887 , 2024. 22
2024 arXiv
-
[27]
F. Lin. An argument-based approach to non-monotonic reasoning. Com- putational Intelligence , 9:254–267, 1993
1993
-
[28]
Lin and Y
F. Lin and Y. Shoham. Argument systems: a uniform basis for nonmono- tonic reasoning. In Proceedings of the 1st International Conference on Knowledge Representation and Reasoning, pages 245–255, San Mateo, CA,
-
[29]
R. P. Loui. Defeat among arguments: a system of defeasible inference. Computational Intelligence , 3(3):100–106, 1987
1987
-
[30]
Why do humans reason? Arguments for an argumentative theory
Hugo Mercier and Dan Sperber. Why do humans reason? Arguments for an argumentative theory. 34(2):57–74, 2011
2011
-
[31]
OpenAI, Google and Anthropic are struggling to build more advanced AI
Rachel Metz, Shirin Ghaffary, Dina Bass, and Julia Love. OpenAI, Google and Anthropic are struggling to build more advanced AI. Bloomberg,
-
[32]
GSM-Symbolic: Understanding the limi- tations of mathematical reasoning in large language models
Iman Mirzadeh, Keivan Alizadeh, Hooman Shahrokhi, Oncel Tuzel, Samy Bengio, and Mehrdad Farajtabar. GSM-Symbolic: Understanding the limi- tations of mathematical reasoning in large language models. arXiv preprint arXiv:2410.05229, 2024
-
[33]
R. C. Moore. Semantical considerations on nonmonotonic logic. Artificial Intelligence, 25:75–94, 1985
1985
-
[34]
Arithmetic without algorithms: Language models solve math with a bag of heuristics
Yaniv Nikankin, Anja Reusch, Aaron Mueller, and Yonatan Belinkov. Arithmetic without algorithms: Language models solve math with a bag of heuristics. arXiv preprint arXiv:2410.21272 , 2024
2024 arXiv
-
[35]
Introducing ChatGPT
OpenAI. Introducing ChatGPT. OpenAI blog, 2022. https://openai. com/index/chatgpt/ (last accessed 26/11/2024)
2022
- [36]
-
[37]
Learning to reason with LLMs
OpenAI. Learning to reason with LLMs. OpenAI blog , 2024. https: //openai.com/index/learning-to-reason-with-llms/ (last accessed 6/12/2024)
2024
-
[38]
OpenAI Shifts Strategy as Rate of ‘GPT’ AI Improvements Slows
Stephanie Palazzolo, Erin Woo, and Amir Efrati. OpenAI Shifts Strategy as Rate of ‘GPT’ AI Improvements Slows. The In- formation, 2024. https://www.theinformation.com/articles/ openai-shifts-strategy-as-rate-of-gpt-ai-improvements-slows (last accessed 12/11/2024)
2024
-
[39]
J. L. Pollock. Defeasible reasoning. Cognitive Science, 11:481–518, 1987
1987
-
[40]
J. L. Pollock. How to reason defeasibly. Artificial Intelligence , 57:1–42, 1992. 23
1992
-
[41]
Gpqa: A graduate-level google-proof q&a benchmark
David Rein, Betty Li Hou, Asa Cooper Stickland, Jackson Petty, Richard Yuanzhe Pang, Julien Dirani, Julian Michael, and Samuel R Bow- man. Gpqa: A graduate-level google-proof q&a benchmark. arXiv preprint arXiv:2311.12022, 2023
2023 arXiv
-
[42]
R. Reiter. A logic for default reasoning. Artificial Intelligence, 13:81–132, 1980
1980
-
[43]
A systematic survey of prompt engineering in large language models: Techniques and applications
Pranab Sahoo, Ayush Kumar Singh, Sriparna Saha, Vinija Jain, Samrat Mondal, and Aman Chadha. A systematic survey of prompt engineering in large language models: Techniques and applications. arXiv preprint arXiv:2402.07927, 2024
2024 arXiv
-
[44]
Aristotle’s Logic
Robin Smith. Aristotle’s Logic. In Edward N. Zalta and Uri Nodelman, editors, The Stanford Encyclopedia of Philosophy . Metaphysics Research Lab, Stanford University, Winter 2022 edition, 2022
2022
-
[45]
Scaling llm test-time compute optimally can be more effective than scaling model pa- rameters
Charlie Snell, Jaehoon Lee, Kelvin Xu, and Aviral Kumar. Scaling llm test-time compute optimally can be more effective than scaling model pa- rameters. arXiv preprint arXiv:2408.03314 , 2024
2024 arXiv
-
[46]
Functional benchmarks for ro- bust evaluation of reasoning performance, and the reasoning gap
Saurabh Srivastava, Anto PV, Shashank Menon, Ajay Sukumar, Alan Phili- pose, Stevin Prince, Sooraj Thomas, et al. Functional benchmarks for ro- bust evaluation of reasoning performance, and the reasoning gap. arXiv preprint arXiv:2402.19450, 2024
2024 arXiv
-
[47]
Challenging big-bench tasks and whether chain-of-thought can solve them
Mirac Suzgun, Nathan Scales, Nathanael Sch¨ arli, Sebastian Gehrmann, Yi Tay, Hyung Won Chung, Aakanksha Chowdhery, Quoc V Le, Ed H Chi, Denny Zhou, , and Jason Wei. Challenging big-bench tasks and whether chain-of-thought can solve them. arXiv preprint arXiv:2210.09261 , 2022
-
[48]
Judgebench: A benchmark for evaluating llm-based judges
Sijun Tan, Siyuan Zhuang, Kyle Montgomery, William Y Tang, Ale- jandro Cuadron, Chenguang Wang, Raluca Ada Popa, and Ion Stoica. Judgebench: A benchmark for evaluating llm-based judges. arXiv preprint arXiv:2410.12784, 2024
2024 arXiv
-
[49]
DeepSeek-R1-Lite-Preview
DeepSeek Team. DeepSeek-R1-Lite-Preview. DeepSeek website , 2024. https://chat.deepseek.com/ (last accessed 6/12/2024)
2024
-
[50]
Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context
Gemini Team. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context. arXiv preprint arXiv:2403.05530 , 2024
2024 arXiv
-
[51]
QwQ: Reflect deeply on the boundaries of the unknown, November 2024
Qwen Team. QwQ: Reflect deeply on the boundaries of the unknown, November 2024
2024
-
[52]
S. Toulmin. The Uses of Argument . Cambridge University Press, Cam- bridge, England, 1958
1958
-
[53]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. Advances in neural information processing systems , 30, 2017. 24
2017
-
[54]
Evaluating arguments based on toulmin’s scheme
Bart Verheij. Evaluating arguments based on toulmin’s scheme. Argumen- tation, 19:347–371, 2005
2005
-
[55]
Reed, and F
D Walton, C. Reed, and F. Macagno. Argumentation Schemes. Cambridge University Press, Cambridge, UK, 2008
2008
-
[56]
Argumentation schemes for presumptive reasoning
Douglas N Walton. Argumentation schemes for presumptive reasoning . Psychology Press, 1996
1996
-
[57]
Mmlu-pro: A more robust and challenging multi-task language understand- ing benchmark
Yubo Wang, Xueguang Ma, Ge Zhang, Yuansheng Ni, Abhranil Chandra, Shiguang Guo, Weiming Ren, Aaran Arulraj, Xuan He, Ziyan Jiang, et al. Mmlu-pro: A more robust and challenging multi-task language understand- ing benchmark. arXiv preprint arXiv:2406.01574 , 2024
2024 arXiv
-
[58]
Chain-of-thought prompting elic- its reasoning in large language models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-thought prompting elic- its reasoning in large language models. Advances in Neural Information Processing Systems, 35:24824–24837, 2022
2022
-
[59]
Livebench: A challenging, contamination-free llm benchmark
Colin White, Samuel Dooley, Manley Roberts, Arka Pal, Ben Feuer, Sid- dhartha Jain, Ravid Shwartz-Ziv, Neel Jain, Khalid Saifullah, Siddartha Naidu, et al. Livebench: A challenging, contamination-free llm benchmark. arXiv preprint arXiv:2406.19314 , 2024
2024 arXiv
-
[60]
Enhancing llm reasoning via critique models with test-time and training-time supervision
Zhiheng Xi, Dingwen Yang, Jixuan Huang, Jiafu Tang, Guanyu Li, Yiwen Ding, Wei He, Boyang Hong, Shihan Do, Wenyu Zhan, et al. Enhancing llm reasoning via critique models with test-time and training-time supervision. arXiv preprint arXiv:2411.16579 , 2024
2024 arXiv
-
[61]
Schemes, critical questions, and complete argument evaluation
Shiyang Yu and Frank Zenker. Schemes, critical questions, and complete argument evaluation. Argumentation, 34(4):469–498, 2020
2020
-
[62]
Cumulative reasoning with large language models
Yifan Zhang, Jingqin Yang, Yang Yuan, and Andrew Chi-Chih Yao. Cumulative reasoning with large language models. arXiv preprint arXiv:2308.04371, 2023
2023 arXiv
-
[63]
Judging llm-as-a-judge with mt-bench and chatbot arena
Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric Xing, et al. Judging llm-as-a-judge with mt-bench and chatbot arena. Advances in Neural Information Processing Systems , 36:46595–46623, 2023. 25 Appendi...
2023
-
[65]
Does the reasoning process start with clearly defined premises?
-
[66]
Are the premises supported by evidence or accepted facts?
-
[67]
Does the reasoning process use logical connections between premises and conclusions?
-
[68]
Are the logical connections used in the reasoning process valid?
-
[69]
Does the reasoning process avoid fallacies or logical errors?
-
[70]
Is the conclusion logically derived from the premises?
-
[71]
Is the reasoning process consistent with established knowledge or principles?
-
[72]
Let’s think step by step
Does the reasoning process lead to a conclusion that is plausible and reasonable? </End System Instruction> <User Prompt>{same input as STEP 1}</End User Prompt> <Reasoning Steps>{generated from STEP 1}</End Reasoning Steps> Remember: you MUST reply to EACH question. The repli...
2024
-
[2024]
https://www.bloomberg.com/news/articles/2024-11-13/ openai-google-and-anthropic-are-struggling-to-build-more-advanced-ai (last accessed 20/11/2024)
2024
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.