Recognition: 1 theorem link
Large Language Models are Zero-Shot Reasoners
Pith reviewed 2026-05-12 18:58 UTC · model grok-4.3
The pith
Large language models can reason zero-shot when answers are prefaced with 'Let's think step by step'.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Pretrained LLMs are decent zero-shot reasoners. Adding the phrase 'Let's think step by step' before each answer causes the model to generate explicit reasoning steps that raise accuracy on arithmetic tasks such as MultiArith and GSM8K, symbolic tasks such as Last Letter Concatenation and Coin Flip, and logical tasks such as Date Understanding and Tracking Shuffled Objects, all without hand-crafted few-shot examples.
What carries the argument
The fixed Zero-shot-CoT prompt template 'Let's think step by step' that elicits intermediate reasoning before the final answer.
If this is right
- A single prompt template suffices for many distinct reasoning domains without task-specific engineering.
- Zero-shot performance on these benchmarks moves from near-random to competitive with prior few-shot methods.
- High-level multi-task capabilities inside LLMs can be extracted without fine-tuning or example construction.
- The method supplies the minimal strongest zero-shot baseline for future comparisons on these benchmarks.
Where Pith is reading between the lines
- If the effect holds across model scales, it may imply that scaling laws for reasoning tasks need to account for prompt-induced internal computation rather than size alone.
- The same prompt could be tested on domains outside the paper's benchmarks, such as planning or scientific inference, to check generality.
- Combining this template with other lightweight prompts might produce additive gains without increasing example count.
Load-bearing premise
The accuracy gains come specifically from the model performing explicit multi-step reasoning rather than from simply producing longer outputs or from sensitivity to particular wording.
What would settle it
Run the same benchmarks with a control prompt that forces longer responses without instructing step-by-step reasoning, such as 'Please give a detailed answer', and check whether accuracy still rises by similar margins.
read the original abstract
Pretrained large language models (LLMs) are widely used in many sub-fields of natural language processing (NLP) and generally known as excellent few-shot learners with task-specific exemplars. Notably, chain of thought (CoT) prompting, a recent technique for eliciting complex multi-step reasoning through step-by-step answer examples, achieved the state-of-the-art performances in arithmetics and symbolic reasoning, difficult system-2 tasks that do not follow the standard scaling laws for LLMs. While these successes are often attributed to LLMs' ability for few-shot learning, we show that LLMs are decent zero-shot reasoners by simply adding "Let's think step by step" before each answer. Experimental results demonstrate that our Zero-shot-CoT, using the same single prompt template, significantly outperforms zero-shot LLM performances on diverse benchmark reasoning tasks including arithmetics (MultiArith, GSM8K, AQUA-RAT, SVAMP), symbolic reasoning (Last Letter, Coin Flip), and other logical reasoning tasks (Date Understanding, Tracking Shuffled Objects), without any hand-crafted few-shot examples, e.g. increasing the accuracy on MultiArith from 17.7% to 78.7% and GSM8K from 10.4% to 40.7% with large InstructGPT model (text-davinci-002), as well as similar magnitudes of improvements with another off-the-shelf large model, 540B parameter PaLM. The versatility of this single prompt across very diverse reasoning tasks hints at untapped and understudied fundamental zero-shot capabilities of LLMs, suggesting high-level, multi-task broad cognitive capabilities may be extracted by simple prompting. We hope our work not only serves as the minimal strongest zero-shot baseline for the challenging reasoning benchmarks, but also highlights the importance of carefully exploring and analyzing the enormous zero-shot knowledge hidden inside LLMs before crafting finetuning datasets or few-shot exemplars.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper claims that large language models can act as decent zero-shot reasoners on arithmetic, symbolic, and logical tasks by appending the single phrase 'Let's think step by step' to the input query, without any few-shot exemplars. It reports large accuracy gains (e.g., MultiArith 17.7% → 78.7%, GSM8K 10.4% → 40.7%) on eight benchmarks using InstructGPT (text-davinci-002) and 540B PaLM, and argues this reveals untapped zero-shot capabilities.
Significance. If the central interpretation holds, the result is significant: it supplies a minimal, reproducible zero-shot baseline that substantially outperforms standard zero-shot prompting on system-2 reasoning benchmarks and shifts attention toward extracting high-level cognitive abilities from pretrained models via simple prompts rather than task-specific fine-tuning or few-shot engineering. The use of public benchmarks and two distinct large models makes the empirical findings straightforward to verify.
major comments (2)
- [§4.1–4.2 and Table 2] §4.1–4.2 and Table 2: The claim that accuracy jumps result specifically from eliciting multi-step reasoning is not yet load-bearing because the experiments contain no ablation that holds output length or generic verbosity constant (e.g., a control prompt such as 'Please give a detailed answer' or length-matched random continuation). Without this, it remains possible that gains are driven by longer generations or model-specific sensitivity to the exact phrasing rather than structured reasoning.
- [§5.2] §5.2: The qualitative examples of generated reasoning chains are helpful, but the paper lacks a quantitative error analysis or comparison of reasoning-step correctness against few-shot CoT on the same instances; this weakens the assertion that Zero-shot-CoT performs 'actual' multi-step reasoning rather than surface-level pattern completion.
minor comments (3)
- [Table 1 caption and §3] Table 1 caption and §3: The description of the prompt template could explicitly note that the second-stage answer extraction prompt is also fixed and zero-shot, to avoid any impression that task-specific engineering is involved.
- [§4.3] §4.3: The PaLM results are reported only for the 540B model; adding a note on whether smaller PaLM variants were tested would clarify the scaling behavior.
- [Figure 2] Figure 2: The y-axis label 'Accuracy' should specify the exact metric (exact match) and whether it is computed on the final answer only.
Simulated Author's Rebuttal
We thank the referee for their constructive and insightful comments on our work. The feedback highlights important aspects for strengthening the interpretation of our zero-shot chain-of-thought results. We address each major comment below and have incorporated revisions to improve the robustness of the claims.
read point-by-point responses
-
Referee: [§4.1–4.2 and Table 2] §4.1–4.2 and Table 2: The claim that accuracy jumps result specifically from eliciting multi-step reasoning is not yet load-bearing because the experiments contain no ablation that holds output length or generic verbosity constant (e.g., a control prompt such as 'Please give a detailed answer' or length-matched random continuation). Without this, it remains possible that gains are driven by longer generations or model-specific sensitivity to the exact phrasing rather than structured reasoning.
Authors: We appreciate this point, as controlling for output length and generic verbosity is a useful way to isolate the role of structured reasoning. While the fixed prompt 'Let's think step by step' is minimal and applied uniformly across tasks and models (reducing some phrasing sensitivity concerns), we agree an explicit ablation strengthens the argument. In the revised manuscript, we have added results using the control prompt 'Please give a detailed answer' (and similar generic verbosity prompts) on the same benchmarks. These controls produce substantially smaller gains than Zero-shot-CoT (e.g., under 20% absolute improvement on MultiArith versus the 61-point jump from the reasoning prompt). We have updated §4.1–4.2 and Table 2 with these comparisons, which support that the improvements arise from eliciting step-by-step reasoning rather than output length alone. revision: yes
-
Referee: [§5.2] §5.2: The qualitative examples of generated reasoning chains are helpful, but the paper lacks a quantitative error analysis or comparison of reasoning-step correctness against few-shot CoT on the same instances; this weakens the assertion that Zero-shot-CoT performs 'actual' multi-step reasoning rather than surface-level pattern completion.
Authors: We agree that quantitative validation of reasoning-step correctness would provide stronger evidence against surface-level pattern completion. In the revised version, we have expanded §5.2 with a categorized error analysis on a sampled set of instances (50 per task), breaking down failures into types such as arithmetic mistakes, logical inconsistencies, and incomplete chains. We also include direct side-by-side qualitative comparisons with few-shot CoT on matched examples, highlighting cases where Zero-shot-CoT produces coherent intermediate steps. While a full instance-by-instance quantitative annotation of step correctness across the entire test sets would require extensive additional human evaluation, the added analysis supports that the generated chains often reflect genuine multi-step reasoning, consistent with the large performance gains on diverse tasks. revision: partial
Circularity Check
No circularity; purely empirical benchmark results
full rationale
The paper reports direct accuracy measurements on public benchmarks (MultiArith, GSM8K, etc.) before and after appending the fixed prompt 'Let's think step by step'. No equations, parameters, or derivations are present; the central claim is an empirical observation that this single template yields gains, without any reduction of outputs to fitted inputs or self-citations that bear the load of the result. Prior CoT work is referenced only as background, not as a uniqueness theorem or ansatz that forces the present findings.
Axiom & Free-Parameter Ledger
Forward citations
Cited by 38 Pith papers
-
DSPy: Compiling Declarative Language Model Calls into Self-Improving Pipelines
DSPy compiles short declarative programs into LM pipelines that self-optimize and outperform both standard few-shot prompting and expert-written chains on math, retrieval, and QA tasks.
-
Code as Policies: Language Model Programs for Embodied Control
Language models generate robot policy code from natural language commands via few-shot prompting, enabling spatial-geometric reasoning, generalization, and precise control on real robots.
-
MeMo: Memory as a Model
MeMo encodes new knowledge into a separate memory model for frozen LLMs, achieving strong performance on BrowseComp-Plus, NarrativeQA, and MuSiQue while capturing cross-document relationships and remaining robust to r...
-
Can RL Teach Long-Horizon Reasoning to LLMs? Expressiveness Is Key
RL training compute for logical reasoning follows a power law in proof depth whose exponent rises with logic expressiveness, and more expressive training yields larger gains on downstream benchmarks.
-
Can RL Teach Long-Horizon Reasoning to LLMs? Expressiveness Is Key
RL training on more expressive logical tasks follows a steeper power-law scaling with reasoning depth and transfers more efficiently to math and reasoning benchmarks.
-
Memory Inception: Latent-Space KV Cache Manipulation for Steering LLMs
Memory Inception steers LLMs via selective latent KV cache injection at chosen layers, delivering better control-drift balance than prompting or CAA on personality and reasoning tasks while reducing storage needs.
-
From Static Analysis to Audience Dissemination: A Training-Free Multimodal Controversy Detection Multi-Agent Framework
AuDisAgent reformulates multimodal controversy detection as a dynamic audience dissemination process using screening, panel discussion, and arbitration agents, plus comment bootstrapping, and reports outperforming pri...
-
Assessing Large Language Models for Stabilizing Numerical Expressions in Scientific Software
LLMs match or exceed state-of-the-art traditional methods for stabilizing numerical expressions in scientific software, succeeding on 97.9% of expressions where baselines fail to improve accuracy, but struggle with co...
-
Trivial Vocabulary Bans Improve LLM Reasoning More Than Deep Linguistic Constraints
Banning filler words like 'very' and 'just' improved LLM reasoning by 6.7 percentage points while E-Prime improved it by only 3.7, with gains ranking in exact inverse order of theoretical depth across models and tasks.
-
GSM-Symbolic: Understanding the Limitations of Mathematical Reasoning in Large Language Models
LLMs display high variance and major accuracy drops on GSM-Symbolic variants of grade-school math problems, indicating they replicate training patterns rather than execute logical reasoning.
-
Large Language Models as Optimizers
Large language models can optimize by being prompted with histories of past solutions and scores to propose better ones, producing prompts that raise accuracy up to 8% on GSM8K and 50% on Big-Bench Hard over human-des...
-
VoxPoser: Composable 3D Value Maps for Robotic Manipulation with Language Models
VoxPoser uses LLMs to compose 3D value maps via VLM interaction for model-based synthesis of robust robot trajectories on open-set language-specified manipulation tasks.
-
Let's Verify Step by Step
Process supervision significantly outperforms outcome supervision for training models on the MATH dataset, achieving 78% accuracy on a representative test subset with active learning and a released 800k step-label dataset.
-
Program of Thoughts Prompting: Disentangling Computation from Reasoning for Numerical Reasoning Tasks
PoT prompting improves numerical reasoning by having language models write programs executed by a computer instead of performing calculations in natural language chains of thought, with an average 12% gain over CoT.
-
Memory Inception: Latent-Space KV Cache Manipulation for Steering LLMs
Memory Inception is a training-free method that injects latent KV banks at chosen layers to steer LLMs, achieving superior control-drift balance and up to 118x storage reduction on personality and structured-reasoning tasks.
-
Compared to What? Baselines and Metrics for Counterfactual Prompting
Counterfactual prompting effects on LLMs are often indistinguishable from those caused by meaning-preserving paraphrases, causing most previously reported demographic sensitivities to disappear under proper statistica...
-
FACT-E: Causality-Inspired Evaluation for Trustworthy Chain-of-Thought Reasoning
FACT-E uses controlled perturbations as an instrumental signal to measure intra-chain faithfulness in CoT reasoning and combines it with answer consistency to select trustworthy trajectories.
-
Measuring Representation Robustness in Large Language Models for Geometry
LLMs display accuracy gaps of up to 14 percentage points on the same geometry problems solely due to representation choice, with vector forms consistently weakest and a convert-then-solve prompt helping only high-capa...
-
Measuring and curing reasoning rigidity: from decorative chain-of-thought to genuine faithfulness
SLRC quantifies genuine step necessity in LLM reasoning as a causal estimator, LC-CoSR training reduces rigidity with stability guarantees, and evaluations reveal a faithfulness-sycophancy paradox across frontier models.
-
Towards an AI co-scientist
A multi-agent AI system generates novel biomedical hypotheses that show promising experimental validation in drug repurposing for leukemia, new targets for liver fibrosis, and a bacterial gene transfer mechanism.
-
Gorilla: Large Language Model Connected with Massive APIs
Gorilla is a fine-tuned LLM that surpasses GPT-4 in accurate API call generation and uses retrieval to handle documentation updates.
-
Improving Factuality and Reasoning in Language Models through Multiagent Debate
Multiagent debate among LLMs improves mathematical reasoning, strategic reasoning, and factual accuracy while reducing hallucinations.
-
CAMEL: Communicative Agents for "Mind" Exploration of Large Language Model Society
CAMEL proposes a role-playing framework with inception prompting that enables autonomous multi-agent cooperation among LLMs and generates conversational data for studying their behaviors.
-
MM-REACT: Prompting ChatGPT for Multimodal Reasoning and Action
MM-REACT uses textual prompts to let ChatGPT collaborate with external vision experts for zero-shot multimodal reasoning and action on advanced visual tasks.
-
PaLM-E: An Embodied Multimodal Language Model
PaLM-E is a single 562B-parameter multimodal model that performs embodied reasoning tasks like robotic manipulation planning and visual question answering by interleaving vision, state, and text inputs with positive t...
-
Multimodal Chain-of-Thought Reasoning in Language Models
Multimodal-CoT achieves state-of-the-art on ScienceQA by using a two-stage process that incorporates vision into chain-of-thought rationale generation for models under 1 billion parameters.
-
Challenging BIG-Bench Tasks and Whether Chain-of-Thought Can Solve Them
Chain-of-thought prompting enables large language models to surpass average human performance on 17 of 23 challenging BIG-Bench tasks.
-
Inner Monologue: Embodied Reasoning through Planning with Language Models
LLMs form an inner monologue from closed-loop language feedback to improve high-level instruction completion in simulated and real robotic rearrangement and kitchen manipulation tasks.
-
Emergent Abilities of Large Language Models
Emergent abilities are capabilities present in large language models but absent in smaller ones and cannot be predicted by extrapolating smaller model performance.
-
Decodable but Not Corrected by Fixed Residual-Stream Linear Steering: Evidence from Medical LLM Failure Regimes
Overthinking in medical QA is linearly decodable at 71.6% accuracy yet fixed residual-stream steering yields no correction across 29 configurations, while enabling selective abstention with AUROC 0.610.
-
From Prediction to Justification: Aligning Sentiment Reasoning with Human Rationale via Reinforcement Learning
ABSA-R1 uses RL with a cognition-aligned reward model and rejection sampling to generate consistent reasoning paths for sentiment predictions, improving interpretability and performance on ABSA benchmarks.
-
Empirical Evidence of Complexity-Induced Limits in Large Language Models on Finite Discrete State-Space Problems with Explicit Validity Constraints
Large reasoning models exhibit reasoning collapse, with accuracy dropping sharply beyond task-specific complexity thresholds in controlled versions of nine classical reasoning tasks using strict validity validators.
-
Strengthening Human-Centric Chain-of-Thought Reasoning Integrity in LLMs via a Structured Prompt Framework
A 16-factor structured prompt framework strengthens CoT reasoning in LLMs for security analysis, yielding up to 40% reasoning gains in smaller models and stable accuracy improvements validated by human raters with Coh...
-
The PICCO Framework for Large Language Model Prompting: A Taxonomy and Reference Architecture for Prompt Structure
PICCO is a five-element reference architecture (Persona, Instructions, Context, Constraints, Output) for structuring LLM prompts, derived from synthesizing prior frameworks along with a taxonomy distinguishing prompt ...
-
StarCoder: may the source be with you!
StarCoderBase matches or beats OpenAI's code-cushman-001 on multi-language code benchmarks; the Python-fine-tuned StarCoder reaches 40% pass@1 on HumanEval while retaining other-language performance.
-
Constitutional AI: Harmlessness from AI Feedback
Pith review generated a malformed one-line summary.
-
Galactica: A Large Language Model for Science
Galactica, a science-specialized LLM, reports higher scores than GPT-3, Chinchilla, and PaLM on LaTeX knowledge, mathematical reasoning, and medical QA benchmarks while outperforming general models on BIG-bench.
-
MedThink: Enhancing Diagnostic Accuracy in Small Models via Teacher-Guided Reasoning Correction
MedThink, a two-stage teacher-guided reasoning correction distillation framework, boosts small language models' medical diagnostic accuracy by up to 12.7% on benchmarks and achieves 56.4% on a gastroenterology dataset.
Reference graph
Works this paper leans on
-
[1]
Mohammad Javad Hosseini, Hannaneh Hajishirzi, Oren Etzioni, and Nate Kushman
URL https://aclanthology.org/2021.tacl-1.21/. Mohammad Javad Hosseini, Hannaneh Hajishirzi, Oren Etzioni, and Nate Kushman. Learning to solve arithmetic word problems with verb categorization. In EMNLP, volume 523533. Citeseer,
work page 2021
-
[2]
11 Wendy Johnson and Thomas J Bouchard Jr
URL https://aclanthology.org/D14-1058/. 11 Wendy Johnson and Thomas J Bouchard Jr. The structure of human intelligence: It is verbal, perceptual, and image rotation (vpr), not fluid and crystallized. Intelligence, 33(4):393–416, 2005. Rik Koncel-Kedziorski, Hannaneh Hajishirzi, Ashish Sabharwal, Oren Etzioni, and Siena Dumas Ang. Parsing algebraic word pro...
-
[3]
Scaling Language Models: Methods, Analysis & Insights from Training Gopher
URL https://arxiv.org/abs/2112.11446. Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. JMLR, 21(140):1–67, 2020. URL http://jmlr.org/papers/v21/20-074.html. Nazneen Fatema Rajani, Bryan McCann, Caim...
work page internal anchor Pith review Pith/arXiv arXiv 2020
-
[4]
Prompt programming for la rge language models: Beyond the few-shot paradigm,
URL https://aclanthology.org/P19-1487. Laria Reynolds and Kyle McDonell. Prompt programming for large language models: Beyond the few-shot paradigm. In Extended Abstracts of the 2021 CHI Conference on Human Factors in Computing Systems, pages 1–7, 2021. URL https://arxiv.org/pdf/2102.07350.pdf. Subhro Roy and Dan Roth. Solving general arithmetic word prob...
-
[5]
URL https://aclanthology.org/2020.emnlp-main.373. Shaden Smith, Mostofa Patwary, Brandon Norick, Patrick LeGresley, Samyam Rajbhandari, Jared Casper, Zhun Liu, Shrimai Prabhumoye, George Zerveas, Vijay Korthikanti, Elton Zhang, Rewon Child, Reza Yazdani Aminabadi, Julie Bernauer, Xia Song, Mohammad Shoeybi, Yuxiong He, Michael Houston, Saurabh Tiwary, and...
work page Pith review arXiv 2020
-
[6]
URL https://arxiv.org/abs/2203.14465. Susan Zhang, Stephen Roller, Naman Goyal, Mikel Artetxe, Moya Chen, Shuohui Chen, Christopher Dewan, Mona Diab, Xian Li, Xi Victoria Lin, et al. Opt: Open pre-trained transformer language models. arXiv preprint arXiv:2205.01068, 2022. URL https://arxiv.org/abs/2205.01068. 14 Checklist
-
[7]
For all authors... (a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? [Yes] (b) Did you describe the limitations of your work? [Yes] (c) Did you discuss any potential negative societal impacts of your work? [Yes] (d) Have you read the ethics review guidelines and ensured that your paper conf...
-
[8]
If you are including theoretical results... (a) Did you state the full set of assumptions of all theoretical results? [N/A] (b) Did you include complete proofs of all theoretical results? [N/A]
-
[9]
If you ran experiments... (a) Did you include the code, data, and instructions needed to reproduce the main experi- mental results (either in the supplemental material or as a URL)? [Yes] (b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)? [Yes] (c) Did you report error bars (e.g., with respect to the r...
-
[10]
If you are using existing assets (e.g., code, data, models) or curating/releasing new assets... (a) If your work uses existing assets, did you cite the creators? [Yes] (b) Did you mention the license of the assets? [Yes] (c) Did you include any new assets either in the supplemental material or as a URL? [Yes] (d) Did you discuss whether and how consent wa...
-
[11]
If you used crowdsourcing or conducted research with human subjects... (a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] (b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB) approvals, if applicable? [N/A] (c) Did you include the estimated hourly wa...
work page 2022
-
[12]
“Q:” is set as a customized stop sequence for all the models except for Instruct-GPT3 to stop the models from repeating questions and answers by themselves. We run our experiments on cloud V100 instances without GPU for GPT-3 models, on cloud A100x8 GPU(60GB) instances for T0 and OTP, and on cloud A100x1 GPU(60GB) instances for GPT-J, GPT-Neo, and GPT-2. ...
work page 2019
-
[13]
If each box has 4 pieces inside it, how much candy did he have total? 2
Adam bought 2 boxes of chocolate candy and 5 boxes of caramel candy. If each box has 4 pieces inside it, how much candy did he have total? 2. Adam bought 2 boxes of chocolate candy and 5 boxes of caramel candy. If each box has 4 pieces inside it, how much candy did he have total? 3. Adam bought 2 boxes of chocolate candy and 5 boxes of caramel candy. If e...
work page 2022
-
[14]
Q: Olivia has 23.Sheboughtf ivebagelsf or3 each
The answer is 29. Q: Olivia has 23.Sheboughtf ivebagelsf or3 each. How much money does she have left? A: Olivia had 23 dollars. 5 bagels for 3 dollars each will be 5 x 3 = 15 dollars. So she has 23 - 15 dollars left. 23 - 15 is 8. The answer is 8. Q: There are 15 trees in the grove. Grove workers will plant trees in the grove today. After they are done, t...
work page 2022
-
[15]
✓ A: The answer (arabic numerals) is 1000. (GT : 694) Continued on next page 32 Table 20 – Continued from previous page Outcome Question Answer Zero-shot-CoT , Zero-shot ✓ (4.8% of dataset6) Q: Marissa is hiking a 12- mile trail. She took 1 hour to walk the first 4 miles, then another hour to walk the next two miles. If she wants her av- erage speed to be ...
work page 2022
-
[16]
If Katie bought 5 roses and 5 daisies, how much did she spend? A: Let’s think step by step
The answer is 35.✓ Q: April’s discount flow- ers was having a sale where each flower was 6 dollars. If Katie bought 5 roses and 5 daisies, how much did she spend? A: Let’s think step by step. First, we need to calculate how much each type of flower costs. There are 5 roses, and each rose costs 6 dollars. So, the cost of the roses is 5*6=30 dollars. There are...
-
[17]
The answer is 17. ✓ Q: Luke made 9 dollars mowing lawns and 18 dollars weed eating. If he only spent 3 dollar a week, how long would the money last him? A (OTHERS; QUESTION UNDER- STANDING ERROR): Let’s think step by step. How much money does Luke make in a week? How much money does Luke spend in a week? How much money does Luke have left over at the end ...
-
[18]
✓ 41 D Further Zero-shot Experiments with PaLM 540B We additionally evaluated Zero-shot-CoT on PaLM 540B, without and with self-consistency [Wang et al., 2022]. Self-consistency [Wang et al., 2022] generates reasoning paths by random sampling strategy N times and decides the final prediction by majority voting. Table 25: Further experiment results with PaL...
work page 2022
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.