LLMs are more and more widespread for reasoning duties, similar to multi-turn QA, activity completion, code era, or arithmetic. But very like individuals, they don’t all the time remedy issues appropriately on the primary strive, particularly on duties for which they weren’t educated. Subsequently, for such techniques to be most helpful, they need to be capable of 1) determine the place their reasoning went fallacious and a couple of) backtrack to seek out one other answer.
This has led to a surge in strategies associated to self-correction, the place an LLM is used to determine issues in its personal output, after which produce improved outcomes primarily based on the suggestions. Self-correction is usually considered a single course of, however we determined to interrupt it down into two elements, mistake discovering and output correction.
In “LLMs can not discover reasoning errors, however can appropriate them!”, we check state-of-the-art LLMs on mistake discovering and output correction individually. We current BIG-Bench Mistake, an analysis benchmark dataset for mistake identification, which we use to handle the next questions:
Can LLMs discover logical errors in Chain-of-Thought (CoT) type reasoning?
Can mistake-finding be used as a proxy for correctness?
Realizing the place the error is, can LLMs then be prompted to backtrack and arrive on the appropriate reply?
Can mistake discovering as a talent generalize to duties the LLMs have by no means seen?
About our dataset
Mistake discovering is an underexplored downside in pure language processing, with a selected lack of analysis duties on this area. To finest assess the flexibility of LLMs to seek out errors, analysis duties ought to exhibit errors which are non-ambiguous. To our data, most present mistake-finding datasets don’t transcend the realm of arithmetic for that reason.
To evaluate the flexibility of LLMs to purpose about errors outdoors of the mathematics area, we produce a brand new dataset to be used by the analysis neighborhood, known as BIG-Bench Mistake. This dataset consists of Chain-of-Thought traces generated utilizing PaLM 2 on 5 duties in BIG-Bench. Every hint is annotated with the situation of the primary logical mistake.
To maximise the variety of errors in our dataset, we pattern 255 traces the place the reply is inaccurate (so we all know there may be undoubtedly a mistake), and 45 traces the place the reply is appropriate (so there might or is probably not a mistake). We then ask human labelers to undergo every hint and determine the primary mistake step. Every hint has been annotated by no less than three labelers, whose solutions had inter-rater reliability ranges of >0.98 (utilizing Krippendorff’s α). The labeling was carried out for all duties besides the Dyck Languages activity, which entails predicting the sequence of closing parentheses for a given enter sequence. This activity we labeled algorithmically.
The logical errors made on this dataset are easy and unambiguous, offering a very good benchmark for testing an LLM’s capability to seek out its personal errors earlier than utilizing them on more durable, extra ambiguous duties.

Core questions on mistake identification
1. Can LLMs discover logical errors in Chain-of-Thought type reasoning?
First, we wish to discover out if LLMs can determine errors independently of their capability to appropriate them. We try a number of prompting strategies to check GPT collection fashions for his or her capability to find errors (prompts right here) beneath the idea that they’re usually consultant of contemporary LLM efficiency.
Typically, we discovered these state-of-the-art fashions carry out poorly, with the perfect mannequin attaining 52.9% accuracy total. Therefore, there’s a want to enhance LLMs’ capability on this space of reasoning.
In our experiments, we strive three completely different prompting strategies: direct (hint), direct (step) and CoT (step). In direct (hint), we offer the LLM with the hint and ask for the situation step of the error or no mistake. In direct (step), we immediate the LLM to ask itself this query for every step it takes. In CoT (step), we immediate the LLM to provide its reasoning for whether or not every step is a mistake or not a mistake.
A diagram exhibiting the three prompting strategies direct (hint), direct (step) and CoT (step).
Our discovering is in line and builds upon prior outcomes, however goes additional in exhibiting that LLMs wrestle with even easy and unambiguous errors (for comparability, our human raters with out prior experience remedy the issue with a excessive diploma of settlement). We hypothesize that it is a huge purpose why LLMs are unable to self-correct reasoning errors. See the paper for the complete outcomes.
2. Can mistake-finding be used as a proxy for correctness of the reply?
When persons are confronted with an issue the place we’re uncertain of the reply, we are able to work by our options step-by-step. If no error is discovered, we are able to make the idea that we did the precise factor.
Whereas we hypothesized that this may work equally for LLMs, we found that it is a poor technique. On our dataset of 85% incorrect traces and 15% appropriate traces, utilizing this methodology just isn’t a lot better than the naïve technique of all the time labeling traces as incorrect, which provides a weighted common F1 of 78.
A diagram exhibiting how nicely mistake-finding with LLMs can be utilized as a proxy for correctness of the reply on every dataset.
3. Can LLMs backtrack figuring out the place the error is?
Since we’ve proven that LLMs exhibit poor efficiency to find reasoning errors in CoT traces, we wish to know whether or not LLMs may even appropriate errors in any respect, even when they know the place the error is.
Observe that figuring out the error location is completely different from figuring out the precise reply: CoT traces can include logical errors even when the ultimate reply is appropriate, or vice versa. In most real-world conditions, we received’t know what the precise reply is, however we’d be capable of determine logical errors in intermediate steps.
We suggest the next backtracking methodology:
Generate CoT traces as traditional, at temperature = 0. (Temperature is a parameter that controls the randomness of generated responses, with increased values producing extra various and artistic outputs, normally on the expense of high quality.)
Establish the situation of the primary logical mistake (for instance with a classifier, or right here we simply use labels from our dataset).
Re-generate the error step at temperature = 1 and produce a set of eight outputs. For the reason that authentic output is understood to result in incorrect outcomes, the objective is to seek out another era at this step that’s considerably completely different from the unique.
From these eight outputs, choose one that’s completely different from the unique mistake step. (We simply use precise matching right here, however sooner or later this may be one thing extra subtle.)
Utilizing the brand new step, generate the remainder of the hint as regular at temperature = 0.
It’s a quite simple methodology that doesn’t require any extra immediate crafting and avoids having to re-generate all the hint. We check it utilizing the error location information from BIG-Bench Mistake, and we discover that it could possibly appropriate CoT errors.
Current work confirmed that self-correction strategies, like Reflexion and RCI, trigger deterioration in accuracy scores as a result of there are extra appropriate solutions changing into incorrect than vice versa. Our methodology, then again, produces extra positive aspects (by correcting fallacious solutions) than losses (by altering proper solutions to fallacious solutions).
We additionally examine our methodology with a random baseline, the place we randomly assume a step to be a mistake. Our outcomes present that this random baseline does produce some positive aspects, however not as a lot as backtracking with the proper mistake location, and with extra losses.
A diagram exhibiting the positive aspects and losses in accuracy for our methodology in addition to a random baseline on every dataset.
4. Can mistake discovering generalize to duties the LLMs have by no means seen?
To reply this query, we fine-tuned a small mannequin on 4 of the BIG-Bench duties and examined it on the fifth, held-out activity. We do that for each activity, producing 5 fine-tuned fashions in complete. Then we examine the outcomes with simply zero-shot prompting PaLM 2-L-Unicorn, a a lot bigger mannequin.
Bar chart exhibiting the accuracy enchancment of the fine-tuned small mannequin in comparison with zero-shot prompting with PaLM 2-L-Unicorn.
Our outcomes present that the a lot smaller fine-tuned reward mannequin usually performs higher than zero-shot prompting a big mannequin, regardless that the reward mannequin has by no means seen information from the duty within the check set. The one exception is logical deduction, the place it performs on par with zero-shot prompting.
This can be a very promising outcome as we are able to probably simply use a small fine-tuned reward mannequin to carry out backtracking and enhance accuracy on any activity, even when we don’t have the information for it. This smaller reward mannequin is totally impartial of the generator LLM, and will be up to date and additional fine-tuned for particular person use circumstances.
An illustration exhibiting how our backtracking methodology works.
Conclusion
On this work, we created an analysis benchmark dataset that the broader educational neighborhood can use to guage future LLMs. We additional confirmed that LLMs at the moment wrestle to seek out logical errors. Nevertheless, if they may, we present the effectiveness of backtracking as a method that may present positive aspects on duties. Lastly, a smaller reward mannequin will be educated on basic mistake-finding duties and be used to enhance out-of-domain mistake discovering, exhibiting that mistake-finding can generalize.
Acknowledgements
Thanks to Peter Chen, Tony Mak, Hassan Mansoor and Victor Cărbune for contributing concepts and serving to with the experiments and information assortment. We might additionally prefer to thank Sian Gooding and Vicky Zayats for his or her feedback and strategies on the paper.