Benutzer:Rosemann/Reasoning language model
Vorlage:Unreliable sources Vorlage:Short description
Reasoning language models are artificial intelligence systems that combine natural language processing with structured reasoning capabilities. These models are usually constructed by prompting, supervised finetuning (SFT), and reinforcement learning (RL) initialized with pretrained language models.
Prompting
[Bearbeiten | Quelltext bearbeiten]A language model is a generative model of a training dataset of texts. Prompting means constructing a text prompt, such that, conditional on the text prompt, the language model generates a solution to the task. Prompting can be applied to a pretrained model ("base model"), a base model that has undergone SFT, or RL, or both.[1]
Chain of thought
[Bearbeiten | Quelltext bearbeiten]Chain of Thought prompting (CoT) prompts the model to answer a question by first generating a "chain of thought", i.e. steps of reasoning that mimic a train of thought.[2] It was published in 2022 by the Brain team of Google on the PaLM-540B model.[3] In CoT prompting, the prompt is of the form "<Input> Let's think step by step", and the model would respond with a chain of reasoning steps, ended with an answer:Similarly, Tree of Thought prompting generalizes CoT by prompting the model to generate one or more "possible next steps", and then running the model on each of the possible next steps by breadth-first, beam, or some other method of tree search.[4] Similarly, Graph of Thought generalizes CoT so that the reasoning steps form a directed acyclic graph.[5]
Self-consistency decoding performs several chain-of-thought rollouts, then selects the most commonly reached conclusion out of all the rollouts.[6] If the rollouts disagree by a lot, a human can be queried for the correct chain of thought.[7]
Retrieval-augmented generation
[Bearbeiten | Quelltext bearbeiten]Vorlage:Main article A language model may answer a query by first querying a database of documents using the query. The document retrieval can be via a vector database, summary index, tree index, or keyword table index.[8] Following document retrieval, the LLM generates an output that incorporates information from both the query and the retrieved documents.[9]
Tool use
[Bearbeiten | Quelltext bearbeiten]Language models can perform long reasoning steps by calling external methods, such as numerical recipes, program interpreters, API calls, and so on. This can be prompt-engineered by describing the external methods in-context (an example of in-context learning) or finetuned into the model.[10]
Supervised finetuning
[Bearbeiten | Quelltext bearbeiten]A base model can be finetuned on a dataset of reasoning tasks with example solutions and reasoning traces. The finetuned model would then be able to generate reasoning traces for a given problem.[11][12]
As it is expensive to get humans to write reasoning traces for a SFT dataset, researchers have proposed ways to automatically construct SFT datasets. In rejection sampling finetuning (RFT), new reasoning traces are collected via a loop:[13]
- Sample a task prompt
- Generate many reasoning traces for the prompt.
- Use a verifier to remove reasoning traces with the wrong final answer.
- For each remaining trace, extract the set of equations appearing in it. Deduplicate the traces so that each one has a different set of equations. Add those to the dataset.
Reinforcement learning
[Bearbeiten | Quelltext bearbeiten]A pretrained language model can be further trained by RL. In the RL formalism, a generative language model is a policy . A prompt specifying a task to solve is an environmental state , and the response of the language model to the prompt is an action . The probability that the language model responds with is .
Training a reasoning language model by RL then consists of constructing a reward model to guide the RL process. Intuitively, a reward model describes how desirable/appropriate/good the response is for the prompt. For reasoning language model, the prompt describes a reasoning task, and the reward would be high if the response solves the task, and low if the response fails to solve the task.
For reasoning language models, the model's response may be broken down into multiple steps, in which case it is written as .
Outcome Reward Model
[Bearbeiten | Quelltext bearbeiten]
Outcome reward model, or outcome-supervised RM (ORM),[11] is a reward model that computes the reward of a step determined by the final answer: . They are also called "verifiers".
For tasks with an answer that is easy to verify, such as word problems in math, the outcome reward can simply be binary: 1 if the final answer is correct, and 0 otherwise.[11] If the answer is not easy to verify programmatically, humans can manually label the answers as correct or not, then the labels can be used to finetune a base model that predicts the human label.[12] For other kinds of tasks, such as creative writing, where task performance is not binary true/false, one can train a reward model by finetuning a base model on human ranked preference data, such as used in reinforcement learning from human feedback.[14] A base model can also be finetuned to predict, given a partial thinking trace , whether the final answer would be correct or not. This can then be used as a binary reward signal.[11]
The ORM is usually trained via logistic regression, i.e. minimizing cross-entropy loss.[15]
Given a PRM, an ORM can be constructed by multiplying the total process reward during the reasoning trace,[14] or by taking the minimum,[15] or some other method to aggregate the process rewards.
Process Reward Model
[Bearbeiten | Quelltext bearbeiten]
Process reward model, or process-supervised RM (PRM),[11] is a reward model that computes the reward of a step determined by the steps so far: .
Given a partial thinking trace , a human can be queried as to whether the steps so far are correct, regardless of whether the ultimate answer would be correct. This can then be used as a binary reward signal. As human labels are expensive, a base model can be finetuned to predict the human labels.[11] The PRM is usually trained via logistic regression, i.e. minimizing cross-entropy loss.[15]
As an example, in a 2023 OpenAI paper, 800K process labels were collected for 75K solution traces. A labeler would be presented with a solution trace, and keep labelling "positive" if the step progresses towards the solution, "neutral" if it is not wrong, but does not progress towards solution, and "negative" if it is a mistake. As soon as a "negative" label is entered, the labeler stops labeling that thinking trace, and begins labeling another one. The idea was that, while labelling subsequent reasoning steps can provide even richer supervision signals, simply labeling up to the first error was sufficient for training a competent PRM.[14][16]
As human labels are expensive, researchers have proposed methods to create PRM without human labels on the processes. Inspired by Monte Carlo tree search (MCTS), the Math-Shepherd method samples multiple continuations until the end, starting at each reasoning step , and set the reward at that step to be either in the case of "soft estimation", or in the case of "hard estimation". This creates process reward using only an ORM, which is usually easier or cheaper to construct. After creating these process reward labels, a PRM can be trained on them.[15] Some have tried a fully MCTS approach.[17]
One can also use an ORM to implicitly construct a PRM, similar to direct preference optimization.[18]
Guided sampling
[Bearbeiten | Quelltext bearbeiten]A trained ORM can be used to select the best response. The policy would rollout multiple responses, and a trained ORM would select the best response. This allows a simple form of test time compute scaling ("best-of-N").[12] [21]
A trained PRM can also be used to guide reasoning by greedy tree search. That is, the policy model generates several possible next reasoning steps, and the PRM selects the best one, and the process repeats. This is similar to how a trained ORM can be used to select the best response.[22] Beam search perform better than greedy search.
Lookahead search is another tree search method, where the policy model generates several possible next reasoning steps, then make a (partial) rollout for each. If a solution endpoint is reached during the forward simulation, the process halts early. Otherwise, the PRM is used to calculate the total reward for each rollout. The step with the highest rollout is selected.[23]
Self-consistency can be combined with an ORM. The model would be used to generate multiple answers, and the answers would be clustered, so that each cluster has the same answer. The ORM is used to compute the reward for each answer, and the rewards within each cluster is summed. The answer corresponding to the cluster with the highest summed reward is output.[15]
Applications
[Bearbeiten | Quelltext bearbeiten]Prompt engineering was discovered in GPT-3 as "few-shot learning",[24] which began a period of research into "eliciting" capacities of pretrained language models. It was then found that a model could be prompted to perform CoT reasoning, which improves its performance on reasoning tasks.
Benchmark
[Bearbeiten | Quelltext bearbeiten]The reasoning ability of language models are usually tested on problems of which there are unambiguous solutions that can be cheaply checked, and requires reasoning when solved by a human. These are usually in mathematics and competitive programming. The answer is usually an array of integers, a multiple choice letter, or a program that passes unit tests within a limited runtime. Some common ones include:
- GSM8K (Grade School Math): 8.5K linguistically diverse elementary school math word problems that require 2 to 8 basic arithmetic operations to solve.[12]
- MMLU (Measuring Massive Multitask Language Understanding): 16,000 multiple-choice questions spanning 57 academic subjects including mathematics, philosophy, law, and medicine.[25]
- GPQA (Google-Proof Q&A): 448 multiple-choice questions written by domain experts in biology, physics, and chemistry, and requires PhD-level experts to solve.[26]
- HumanEval: Programming problems where the solution is always a python function, often just a few lines long.[27]
The benchmark scores are of the following kinds:
- pass@n: The model is given attempts to solve each problem. If any attempt is correct, the model earns a point. The pass@n score is the model's average score over all problems.
- cons@n: The model is given attempts to solve each problem. If the most common answer is correct, the model earns a point. The cons@n score is the model's average score over all problems. Here "cons" stands for "consensus" or "majority voting".[28]
The pass@n score can be estimated more accurately by making attempts, and use the unbiased estimator , where is the number of correct attempts.[27]
See also
[Bearbeiten | Quelltext bearbeiten]- Generative pre-trained transformer
- Neuro-symbolic AI
- Automated theorem proving
- Automated reasoning
- Large language model
References
[Bearbeiten | Quelltext bearbeiten]External links
[Bearbeiten | Quelltext bearbeiten]Vorlage:Artificial intelligence navbox
- ↑ Vorlage:Citation
- ↑ Jason Wei, Xuezhi Wang, Dale Wang, Maarten Bosma, Brian Ichter, Fei Xia, Ed H. Chi, Quoc V. Le, Denny Zhou: Chain-of-Thought Prompting Elicits Reasoning in Large Language Models. Advances in Neural Information Processing Systems (NeurIPS 2022). Band 35, 31. Oktober 2022, arxiv:2201.11903 (englisch).
- ↑ Sharan Narang and Aakanksha Chowdhery: Pathways Language Model (PaLM): Scaling to 540 Billion Parameters for Breakthrough Performance. 4. April 2022 .
- ↑ Vorlage:Cite arXiv
- ↑ Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, Torsten Hoefler: Graph of Thoughts: Solving Elaborate Problems with Large Language Models. In: Proceedings of the AAAI Conference on Artificial Intelligence. 38. Jahrgang, Nr. 16, 24. März 2024, ISSN 2374-3468, S. 17682–17690, doi:10.1609/aaai.v38i16.29720, arxiv:2308.09687 (englisch, aaai.org).
- ↑ Vorlage:Cite arXiv
- ↑ Vorlage:Cite arXiv
- ↑ How Each Index Works - LlamaIndex 🦙 v0.10.17. In: docs.llamaindex.ai. Abgerufen am 8. April 2024.
- ↑ Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich Küttler, Mike Lewis, Wen-tau Yih, Tim Rocktäschel, Sebastian Riedel, Douwe Kiela: Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. In: Advances in Neural Information Processing Systems. 33. Jahrgang. Curran Associates, Inc., 2020, S. 9459–9474, arxiv:2005.11401 (neurips.cc).
- ↑ Timo Schick, Jane Dwivedi-Yu, Roberto Dessi, Roberta Raileanu, Maria Lomeli, Eric Hambro, Luke Zettlemoyer, Nicola Cancedda, Thomas Scialom: Toolformer: Language Models Can Teach Themselves to Use Tools. In: Advances in Neural Information Processing Systems. 36. Jahrgang, 15. Dezember 2023, S. 68539–68551, arxiv:2302.04761 (englisch, neurips.cc).
- ↑ a b c d e f Vorlage:Citation
- ↑ a b c d Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ a b c Vorlage:Citation
- ↑ a b c d e Peiyi Wang, Lei Li, Zhihong Shao, Runxin Xu, Damai Dai, Yifei Li, Deli Chen, Yu Wu, Zhifang Sui: Math-Shepherd: Verify and Reinforce LLMs Step-by-step without Human Annotations. In: Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). Association for Computational Linguistics, Bangkok, Thailand August 2024, S. 9426–9439, doi:10.18653/v1/2024.acl-long.510, arxiv:2312.08935 (aclanthology.org).
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child: Language models are few-shot learners. In: Proceedings of the 34th International Conference on Neural Information Processing Systems (= NIPS '20). Curran Associates Inc., Red Hook, NY, USA 6. Dezember 2020, S. 1877–1901 (acm.org).
- ↑ Vorlage:Citation
- ↑ Vorlage:Citation
- ↑ a b Vorlage:Citation
- ↑ Vorlage:Citation