Home > Technology peripherals > AI > body text

Large model + Monte Carlo tree search, one move makes LLaMa-3 8B Mathematical Olympiad level close to GPT-4

PHPz
Release: 2024-06-18 16:46:12
Original
861 people have browsed it

Through innovation at the algorithm level, the ability of large language models to solve mathematical problems will continue to improve in the future.

In the past few days, the news that Jiang Ping, a 17-year-old technical secondary school student, ranked 12th in the world in the 2024 Alibaba Global Mathematics Competition qualifiers has flooded the screen. At the same time, the results of the AI ​​Challenge show that among all 563 AI participating teams, the highest score was 34 points and the average score was 18 points, catching up with the average level of human players.

The main shortcoming of AI participating in mathematics competitions is its weak logical reasoning ability, and it is difficult to get full points for proof questions. This is also a major challenge faced by current large language models (LLMs) such as GPT-4 and LLaMA in tasks that require strategy and logical reasoning.

One of the important obstacles is the accuracy and credibility of the output, especially in mathematical contexts where accuracy needs to be guaranteed, LLM often produces hallucinations when reasoning. The output results appear reasonable on the surface, but are actually irrelevant or factually incorrect, ultimately leading to unreasonable reasoning processes.

Naturally rewriting techniques like self-refinement can help address this bias, but can still lead to misleading or erroneous results for complex real-world mathematical problems.

Therefore, in order to deal with these challenges, researchers from Fudan University and Shanghai AI Lab proposed MCT Self-Refine (MCTSr), which combines LLM with the Monte Carlo Tree Search (MCTS) algorithm, and focuses on Improve the performance of LLM in complex mathematical reasoning tasks (such as Mathematical Olympiad competition questions).

MCTS is a decision-making tool widely used in artificial intelligence scenarios that require strategic planning, usually in games and complex problem-solving environments. By combining the system exploration capabilities of MCTS with the Self-Refine and Self-Evaluation capabilities of LLM, this paper aims to create a more powerful framework to deal with complex reasoning tasks that are currently difficult to solve with LLM.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

  • Paper address: https://arxiv.org/pdf/2406.07394

  • Project address: https://github.com/trotsky1997/MathBlackBox

However, there are some technical challenges in integrating MCTS with LLM. Traditional MCTS strategies may not fit well with the stochastic and generative nature of LLM outputs, which typically involve an infinite, continuous space of potential actions. This inconsistency requires customized expectation calculation and backpropagation methods within the MCTS framework to better accommodate the unique properties of LLM.

Additionally, the researchers introduced a dynamic pruning strategy that incorporates an improved confidence upper bound (UCB) formula to optimize the exploration-exploitation balance required for effective decision-making in high-risk tasks.

It can be said that this research advances the application of LLM in complex reasoning challenges and lays the foundation for future integration of AI-related technological innovations, thereby enabling LLM-driven applications to have more powerful decision-making and reasoning Accuracy and reliability.

Method Overview

MCTSr architecture diagram is shown in Figure 1:

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4MCTSr workflow includes:

  • Initialization: Use model-generated answers and dummy responses to establish root nodes to minimize the tendency of model overfitting;

  • Selection: The algorithm adopts the value function Q Sort all answers that are not fully expanded, and use a greedy strategy to select the node with the highest value for further exploration and optimization;

  • Self-Refine: Select a good answer a using Self- Refine framework for optimization. Initially, the model generates feedback m that guides the optimization process to produce an enhanced answer a ′;

  • Self-Evaluation: The refined answer is scored to sample a reward value, and its Q is calculated value. This involves model self-reward feedback and constraints, such as strict scoring standards and suppressing full scores to ensure the reliability and fairness of scoring;

  • Backpropagation: Reverse the value of the refined answer Propagates to its parent node and other related nodes to update the value information of the tree. If the Q value of any child node changes, update the Q value of the parent node;

  • UCT update: After the Q value update of all nodes is completed, determine a candidate node set C, using For further expansion or selection, the UCT update formula is then used to update the UCT values ​​of all nodes in preparation for the next selection stage.

Iterate the above stages until the termination condition T is met.

Self-Refine

In the self-refine stage, the model optimizes the answer a to question P through multiple rounds of dialogue refinement prompts. First, the model generates a reflective or critical comment m about answer a. Subsequently, under the guidance of m, the model modifies the answer a to produce an improved version a'. This iterative refinement improves the quality of the model response.

Self-Assessment

In the answer refining process of mathematical problem P, the Q value of an answer a is defined as the expected quality of further refining a into a better answer. This definition is based on the Markov property of the transition from a to its rewritten form, that is, the next state (i.e. the rewritten answer) only depends on the current state (i.e. the current answer a) and has nothing to do with the previous state.

In addition, the researchers also designed three constraints: prompt constraints, full score suppression, and repeated sampling. After sampling, calculate the Q value of a.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

Backpropagation

After the reward values ​​of all leaf nodes have been sampled and the Q values ​​are updated, these changes are then Propagates to its parent and ancestor nodes. During this update process, if the Q function value of any element in the set Children (a) of node a changes, the Q function value of node a will also be updated. Such propagation ensures that a node's Q-value reflects the latest status and evaluation of all its possible children.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

Update UCT and selection

After updating the Q values ​​of all nodes in the tree, the next round of selection phase will be entered . This process includes the following steps:

  • Candidate node selection: When selecting a node, the researcher does not need to start from the root node, but traverses the nodes in the tree in hierarchical order.

  • UCT Update: Drawing on AlphaGo, this study uses UCT and UCB-1 methods to balance the exploration and utilization of nodes; for node a in candidate set C, its UCT_a value is:

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

Termination function

Early termination: when the improvement of search results begins to decrease or continuous searches produce duplicate results when, termination occurs.

Search constraints: The search terminates once the number of expansions reaches a predetermined limit or one or more nodes in the tree satisfy the maximum depth constraint.

Experimental results

In order to evaluate the effectiveness of the MCTSr algorithm in solving mathematical problems, the researchers used LLaMA3-8B as the base model and used MCTSr for enhancement. They compared LLaMA3-8B with GPT-4, Claude 3, and Gemini 1.5-Pro ​​in several setups including Zero-Shot CoT, Self-Refine, 4-rollouts MCTSr, and 8-rollouts MCTSr.

The researchers evaluated the above method on the GSM8K and GSM-hard test sets (which contain typical and challenging mathematical problems respectively), and the results are shown in Table 1 below.

It can be found that there is a direct correlation between the number of rollouts and the success rate of MCTSr, and it increases significantly as the number of iterations increases, especially in the less complex GSM8K. However, for the more complex GSM-Hard test set, the performance limit will be reached even if the number of rollouts is higher, indicating that the current strategy has limitations in solving complex problems.

These results highlight the robustness and potential boundaries of the MCT-Self-refine algorithm, as well as the need for continuous improvement to effectively address more complex challenges.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

Table 2 below shows the results of applying the MCT-Self-refine algorithm at different complexity levels on the MATH dataset. The dataset is divided into five difficulty levels, from Level 1 (easiest) to Level 5 (most challenging).

The results show that Level 1 has the highest success rate. After 8 rollouts, MCTSr achieved a success rate of 90.16% and solved 394 of 437 problems. As the number of rollouts increases, the success rate at this level increases significantly.

At the most challenging Level 5 difficulty, after 8 rollouts, MCTSr had a success rate of 34.06%, solving 451 of 1324 problems. This illustrates that as the difficulty continues to increase, the algorithm's performance is limited in highly complex scenarios.

The overall performance of all levels shows that after 8 rollouts, MCTSr has a cumulative success rate of 58.24%, solving 2912 out of 5000 problems. This success rate is a significant improvement over Zero-Shot CoT’s initial success rate of 24.36%. This shows that the increase in the number of rollouts is consistent with the increase in success rate, emphasizing the effectiveness of the MCT-Self-refine algorithm in improving problem-solving capabilities at different levels of mathematical complexity.

These results also validate the potential of the MCT-Self-refine algorithm in academic and problem-solving contexts, and highlight its scalability and adaptability to problems of different complexity levels in the MATH dataset.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

Table 3 below shows the MCT-Self-refne algorithm tested on three data sets of the Mathematical Olympiad competition: AlME, GAIC Math Odyssey and OlympiadBench.

AIME: From 2.36% for Zero-Shot CoT (22 problems solved) to 11.79% for MCTSr (110 problems solved).

GAIC Math Odyssey: Success rate increased from 17.22% (67 problems solved) to 49.36% (192 problems solved).

OlympiadBench: Improved from 1.25% on Zero-Shot CoT (16 problems solved) to 7.76% on MCTSr (99 problems solved).

These results confirm the applicability of the MCT-Self-refine algorithm to unseen mathematical problems, indicating its advantages in competitive academic environments such as Olympiads.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

As shown in Table 4. When compared with current closed-source large models, MCTSr can effectively improve the mathematical reasoning capabilities of small-parameter open-source models (such as LLaMa-3) to a comparable level.

大模型+蒙特卡洛树搜索,一招让LLaMa-3 8B奥数水平直逼GPT-4

For more technical details and experimental results, please refer to the original paper.

The above is the detailed content of Large model + Monte Carlo tree search, one move makes LLaMa-3 8B Mathematical Olympiad level close to GPT-4. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jiqizhixin.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!