REVIEW 6 major objections 5 minor 51 references
Evolution of Thought: Diverse and High-Quality Reasoning via Multi-Objective Optimization
T0 review · 6 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper argues that searching for reasoning paths in multimodal language models should optimize answer quality and diversity jointly, and shows that a genetic multi-objective algorithm (NSGA-II) with crossover, mutation, and…
desk verdict The core idea is real but the evidence is thinner than the abstract admits; the efficiency claim is contradicted by the paper's own Table 3. 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 NSGA-II evolutionary loop is the engine: each candidate answer is scored by a quality metric $M_Q$ that compares against a reference answer generated by the same model, and a novelty metric $M_N$ combining normalized edit distance with semantic distance from Sentence BERT embeddings. Non-dominated sorting ranks solutions into Pareto layers and selects parents, then prompt-based crossover merges two parent answers and prompt-based mutation rewrites one parent to maintain diversity. The Condensation-Aggregation mechanism uses K-Medoids clustering on a joint distance matrix to discard the lowest-quality clusters and pass only cluster medoids to a final aggregation prompt, keeping the summarization context short.
What would settle it
Take a benchmark, compute the correlation between the model's $M_Q$ scores and ground-truth correctness; if it is near zero, EoT's selection is not optimizing for correctness. Alternatively, run EoT with reference answers that are deliberately wrong and see whether Pass@1 drops; if it does not, the quality score is not load-bearing.
Extended reading notes
Core claim
The central claim is that the local optima and inefficiency of existing reasoning-path search methods stem from optimizing quality alone, and that balancing quality with a novelty objective, computed from edit distance and semantic similarity, steers the search onto a Pareto front that preserves diverse, high-quality candidates. This is operationalized through NSGA-II's non-dominated sorting, followed by crossover and mutation prompts that recombine and perturb parent answers, and a final condensation-aggregation stage that clusters candidates by distance, drops low-quality clusters, and asks the model to synthesize a refined answer. The paper reports that EoT outperforms single-objective tree-search baselines on three mathematical reasoning benchmarks across three base models, including on Pass@k diversity-based evaluation, and that the performance gain is not sensitive to population size or number of generations.
Load-bearing premise
The quality score the model gives each answer, compared with a reference answer it wrote itself, is a trustworthy measure of whether the answer is actually correct.
Editorial extensions
If this is right
- Reasoning search methods for multimodal models can treat diversity as a first-class objective rather than a byproduct of sampling.
- Population-based search with crossover and mutation is fully parallelizable, avoiding the sequential cost of tree search.
- Reference-based scoring reduces the instability of direct self-scoring, enabling more consistent quality evaluation.
- The clustering-based condensation step lets the model summarize a large candidate set without exceeding context length limits.
Reading between the lines
- The framework could generalize to open-ended generation tasks where multiple valid answers exist, since it explicitly maintains a Pareto front of alternatives.
- The novelty metric could be replaced or augmented with task-specific diversity measures, such as structural diversity in code generation or plan diversity in embodied tasks.
- A testable extension is to feed an ensemble of reference answers instead of a single one, which may further stabilize the quality score and reduce reference bias.
- If the correlation between $M_Q$ and true correctness is weak, the observed gains may instead come from the extra computation and aggregation, which a careful ablation could isolate.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes Evolution of Thought (EoT), a multi-objective reasoning framework for multimodal large language models. EoT represents candidate reasoning paths as a population and applies NSGA-II-style non-dominated sorting over two objectives: a reference-based quality score MQ(A)=f(pq,ps,Aref,A) and a novelty score MN(A) based on edit and semantic distances. Crossover and mutation operations generate offspring, and a Condensation-Aggregation (CA) mechanism clusters candidates, drops low-quality clusters, and prompts the model to aggregate the remaining candidates into a final answer. The authors report experiments on MathVista, Math-Vision, and GSM8K with Qwen2-VL, LLaVA-NeXT, and Phi-3.5-vision, comparing against IO, CoT, ToT, MCTSr, and other baselines, and claim superior performance and efficiency.
Significance. If the central claims could be supported, the paper would offer a useful new application of multi-objective evolutionary search to LLM and MLLM reasoning, and the CA mechanism is a sensible answer to the redundancy problem in population-based search. The manuscript is clearly organized and the ablation study covers the main hyperparameters. However, the evidence as presented is not yet sufficient: the quality objective is an unvalidated self-score, the efficiency claim is contradicted by the paper's own Table 3, and no statistical uncertainty is reported. The core idea is promising and the shortcomings are addressable, so the result is of potential interest to the evolutionary computation and LLM reasoning communities.
major comments (6)
- [Sec. 3.1, Eq. (1)] The quality objective MQ(A)=f(pq,ps,Aref,A) is computed by the same MLLM that generates Aref, and no evidence is given that this score tracks ground-truth correctness. Since non-dominated sorting, parent selection, and the CA cluster-dropping step all rely on MQ, the reported gains in Tables 1 and 2 could be produced by optimizing the model's self-consistency rather than reasoning accuracy. Please validate MQ (e.g., correlation or calibration against correctness) and include an ablation that replaces MQ with a trivial or random score to show that the quality signal, not merely population expansion, drives the improvements.
- [Sec. 4.3, Table 3] The efficiency claim in Section 4.3 is not supported by Table 3: EoT uses 2K+1 inference steps versus 2K for ToT, and EoT's time per answer is 15.23s versus 14.62s for ToT. The text states that EoT requires fewer reasoning steps and less time per step, but the table shows the opposite for ToT on both values. Please correct the claim, clarify whether 'time per step' is the intended metric, and provide token or cost measurements.
- [Sec. 3.2, Step 2] The described ranking procedure ('rank them according to the number of candidates they dominate... those with the same dominance count are placed in the same level') is not NSGA-II's non-dominated sorting, which partitions the population into Pareto fronts and uses crowding distance within fronts. As written, the algorithm is a dominance-count heuristic, and the claimed connection to NSGA-II and its diversity guarantees is inaccurate. Please clarify the exact ranking and whether crowding distance is used.
- [Tables 1 and 2] No error bars, multiple runs, or significance tests are reported. Many margins are small, for example Qwen2-VL Pass@8 on MathVista (EoT 67.50 vs MCTSr 66.75) and LLaVA-NeXT Pass@1 on MathVista (EoT 21.50 vs MAD 21.00), so single-run differences may be noise. Report repeated runs with means and confidence intervals, or paired significance tests, before claiming superiority.
- [Sec. 4.4, Fig. 3] Hyperparameters N, T, r, K, κ, and m are tuned on the same benchmarks used for the final comparison, with r=1:5 and K=3 reported as best on the challenging Math-Vision dataset. Without a separate validation split or a fixed default configuration, the reported results may be inflated by test-set selection. Please specify the selection protocol or validate on held-out tasks.
- [Sec. 4.2 and Table 1] The evaluation protocol for Table 1 is under-specified. Section 4.2 calls it Pass@1, but Table 1 includes methods that output a single answer, and for EoT it is not stated whether the reported value is the top-1 candidate after non-dominated sorting or the output of the CA aggregation. Please state explicitly how each number is obtained.
minor comments (5)
- [Sec. 3.1, Eq. (2)] The notation A/A to denote the set excluding A is easily confused with quotient notation; please replace it with A\A or an explicit subscript.
- [Sec. 3.1, Eq. (3)] Equation (3) includes a factor of 2 in the denominator, but the text says DSE is the semantic distance; the relation between this normalized cosine distance and the edit-distance term should be spelled out.
- [Table 1 and Fig. 3 caption] In Table 1, the Phi-3.5-vision CoT GSM8K improvement is 42.50, not 42.20; the Figure 3 caption reads 'Impact of and m' and is missing κ.
- [Algorithm 1, line 22] The line 'Expand the candidate set size: N × = 2' should be written as N ← 2N or similar; the printed notation is ambiguous.
- [Reproducibility] The manuscript does not mention code or data release; please include a reproducibility statement with exact prompts, model versions, and hyperparameter settings.
Circularity Check
No significant circularity: the reported accuracy numbers are measured by exact match against ground truth, not by EoT's internal quality score, so the central performance claim is not equivalent to its own search objective.
full rationale
The central claim is an empirical benchmark result: EoT is compared to baselines using Pass@1 and Pass@k, defined as the probability that a ground-truth-correct answer appears among the top K generated answers (Section 4.1). The paper states 'An answer is considered correct if it matches the ground truth exactly' (Section 4), so the evaluation metric is external to the framework. The internal objective M(A)=(MQ(A), MN(A)) in Eq. (1) is a heuristic search signal; MQ(A)=f(pq,ps,Aref,A) uses a reference answer generated by the same MLLM, which is a self-referential proxy and a validity risk (if MQ does not track correctness, the evolutionary selection may optimize self-consistency rather than accuracy), but it is not circular: no equation in the paper makes Pass@1 or Pass@k equal to MQ or MN, and the reported numbers are not derived from the objective function. The hyperparameter ablations in Section 4.4 explore N, T, r, K, kappa, and m on the benchmark sets; even if some configurations were chosen using test results, this would be an overfitting/validity concern, not a by-construction equivalence between a fitted parameter and a prediction. The paper invokes NSGA-II [5,6] and baseline methods as external references; there are no load-bearing self-citations or imported uniqueness theorems. The condensation-aggregation step also uses MQ only to drop low-quality clusters before final aggregation, and the final answer is still evaluated against ground truth. Accordingly, no circular step is exhibited, and the derivation chain is self-contained with respect to circularity.
Assumptions & free parameters
free parameters (5)
- Population size N =
3, 6, 9 in ablations; main-run value not stated
- Generations T =
1, 2, 3 in ablations; main-run value not stated
- Crossover-to-mutation ratio r =
Varied 1:5, 1:2, 1:1, 2:1, 5:1; 1:5 'best' on Math-Vision
- Parent set size K =
Varied 3 to 6; K=3 'best' on Math-Vision
- Cluster count κ and dropped clusters m =
κ in {3,4,5,6}, m in {1,2,3}; main value not stated
assumptions (5)
- domain assumption The self-scored quality MQ(A) is a reliable proxy for answer correctness.
- domain assumption Edit distance plus Sentence-BERT semantic distance captures the diversity that helps reasoning.
- domain assumption Prompt-based crossover and mutation produce valid offspring that retain parent strengths.
- domain assumption Non-dominated sorting and Pareto fronts transfer from numerical optimization to text reasoning paths.
- domain assumption The reported benchmark numbers are stable and representative.
Cite this review
Pith. "Pith review of Evolution of Thought: Diverse and High-Quality Reasoning via Multi-Objective Optimization." pith.science (2026). https://pith.science/paper/SXGX6MAC
@misc{pith2026241207779,
author = {Pith},
title = {Pith review of: Evolution of Thought: Diverse and High-Quality Reasoning via Multi-Objective Optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/SXGX6MAC}},
note = {Machine review of arXiv:2412.07779}
}
read the original abstract
As multi-modal large language models (MLLMs) are increasingly applied to complex reasoning tasks, the diversity and quality of reasoning paths become crucial factors affecting their performance. Although current methods aim to enhance reasoning quality through path expansion, they often neglect the diversity of reasoning paths and effective information sharing, leading to local optima and inefficiency. To address these challenges, we propose Evolution of Thought (EoT), a multi-objective framework designed to improve reasoning by fostering both high-quality and diverse reasoning paths. Specifically, we introduce the Non-dominated Sorting Genetic Algorithm II for multi-objective optimization, utilizing crossover and mutation operators to promote greater diversity in reasoning solutions. Additionally, we propose a Condensation-Aggregation mechanism to cluster and eliminate redundant paths, facilitate improved information sharing among parent nodes, and ultimately enhance both the efficiency and quality of the reasoning process. Validation experiments on various vision-language and language reasoning tasks demonstrate that EoT achieves superior reasoning performance and efficiency compared to other competitive baselines. Our study provides a novel perspective on the design of heuristic reasoning frameworks for MLLMs.
Figures
Reference graph
Works this paper leans on
-
[1]
Large language models for mathemat- ical reasoning: Progresses and challenges
Janice Ahn, Rishu Verma, Renze Lou, Di Liu, Rui Zhang, and Wenpeng Yin. Large language models for mathemat- ical reasoning: Progresses and challenges. arXiv preprint arXiv:2402.00157, 2024. 1
arXiv 2024
-
[2]
Graph of thoughts: Solving elaborate prob- lems with large language models
Maciej Besta, Nils Blach, Ales Kubicek, Robert Gersten- berger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, and Torsten Hoefler. Graph of thoughts: Solving elaborate prob- lems with large language models. InConference on Artificial Intelligence, pages 17682–17690, 2024. 2, 3, 4
work page 2024
-
[3]
Al- phamath almost zero: process supervision without process
Guoxin Chen, Minpeng Liao, Chengxi Li, and Kai Fan. Al- phamath almost zero: process supervision without process. arXiv preprint arXiv:2405.03553, 2024. 3
arXiv 2024
-
[4]
Training verifiers to solve math word problems
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, Christopher Hesse, and John Schulman. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168, 2021. 6
-
[5]
K. Deb, A. Pratap, S. Agarwal, and T. Meyarivan. A fast and elitist multiobjective genetic algorithm: Nsga-ii. IEEE Transactions on Evolutionary Computation , 6(2):182–197,
-
[6]
A fast and elitist multiobjective genetic algo- rithm: Nsga-ii
Kalyanmoy Deb, Amrit Pratap, Sameer Agarwal, and TAMT Meyarivan. A fast and elitist multiobjective genetic algo- rithm: Nsga-ii. IEEE transactions on evolutionary computa- tion, 6(2):182–197, 2002. 3, 5
work page 2002
-
[7]
Improving factuality and reason- ing in language models through multiagent debate
Yilun Du, Shuang Li, Antonio Torralba, Joshua B Tenen- baum, and Igor Mordatch. Improving factuality and reason- ing in language models through multiagent debate. arXiv preprint arXiv:2305.14325, 2023. 3
arXiv 2023
-
[8]
Neural architecture search: A survey
Thomas Elsken, Jan Hendrik Metzen, and Frank Hutter. Neural architecture search: A survey. Journal of Machine Learning Research, 20(55):1–21, 2019. 3
work page 2019
Show all 51 references
-
[9]
Look before you leap: An exploratory study of uncertainty measurement for large language models
Yuheng Huang, Jiayang Song, Zhijie Wang, Huaming Chen, and Lei Ma. Look before you leap: An exploratory study of uncertainty measurement for large language models. CoRR, abs/2307.10236, 2023. 4
2023 arXiv
-
[10]
Hubert, Kim N
Kent F. Hubert, Kim N. Awa, and Darya L. Zabelina. The current state of artificial intelligence generative language models is more creative than humans on divergent thinking tasks. Scientific Reports, 14, 2024. 3
2024
-
[11]
Bigger ai chatbots more inclined to spew nonsense-and people don’t always realize
Nicola Jones. Bigger ai chatbots more inclined to spew nonsense-and people don’t always realize. Nature, 2024. 3
2024
-
[12]
Learn- ing to correct for qa reasoning with black-box llms
Jaehyung Kim, Dongyoung Kim, and Yiming Yang. Learn- ing to correct for qa reasoning with black-box llms. arXiv preprint arXiv:2406.18695, 2024. 1
2024 arXiv
-
[13]
Ex- ploring precision and recall to assess the quality and diver- sity of llms
Florian Le Bronnec, Alexandre V ´erine, Benjamin Ne- grevergne, Yann Chevaleyre, and Alexandre Allauzen. Ex- ploring precision and recall to assess the quality and diver- sity of llms. In 62nd Annual Meeting of the Association for Computational Linguistics, 2024. 5
2024
-
[14]
Encouraging divergent thinking in large lan- guage models through multi-agent debate
Tian Liang, Zhiwei He, Wenxiang Jiao, Xing Wang, Yan Wang, Rui Wang, Yujiu Yang, Zhaopeng Tu, and Shum- ing Shi. Encouraging divergent thinking in large lan- guage models through multi-agent debate. arXiv preprint arXiv:2305.19118, 2023. 3, 6, 2
2023 arXiv
-
[15]
Internal consistency and self-feedback in large lan- guage models: A survey
Xun Liang, Shichao Song, Zifan Zheng, Hanyu Wang, Qingchen Yu, Xunkai Li, Rong-Hua Li, Feiyu Xiong, and Zhiyu Li. Internal consistency and self-feedback in large lan- guage models: A survey. arXiv preprint arXiv:2407.14507,
-
[16]
Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024
Haotian Liu, Chunyuan Li, Yuheng Li, Bo Li, Yuanhan Zhang, Sheng Shen, and Yong Jae Lee. Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024. 6
2024
-
[17]
Mathvista: Evaluating mathemat- ical reasoning of foundation models in visual contexts
Pan Lu, Hritik Bansal, Tony Xia, Jiacheng Liu, Chunyuan Li, Hannaneh Hajishirzi, Hao Cheng, Kai-Wei Chang, Michel Galley, and Jianfeng Gao. Mathvista: Evaluating mathemat- ical reasoning of foundation models in visual contexts. InIn- ternational Conference on Learning Represen...
-
[18]
Self-refine: It- erative refinement with self-feedback
Aman Madaan, Niket Tandon, Prakhar Gupta, Skyler Hal- linan, Luyu Gao, Sarah Wiegreffe, Uri Alon, Nouha Dziri, Shrimai Prabhumoye, Yiming Yang, et al. Self-refine: It- erative refinement with self-feedback. Advances in Neural Information Processing Systems, 36, 2024. 3, 6
2024
-
[19]
Phi-3.5-vision-instruct model, 2024
Microsoft. Phi-3.5-vision-instruct model, 2024. 6
2024
-
[20]
K-medoids for k- means seeding
James Newling and Franc ¸ois Fleuret. K-medoids for k- means seeding. In Advances in Neural Information Process- ing Systems, pages 5195–5203, 2017. 6
2017
-
[21]
Refiner: Reasoning feedback on intermediate representa- tions, 2023
Debjit Paul, Mete Ismayilzada, Maxime Peyrard, Beatriz Borges, Antoine Bosselut, Robert West, and Boi Faltings. Refiner: Reasoning feedback on intermediate representa- tions, 2023. 3
2023
-
[22]
Sentence-bert: Sen- tence embeddings using siamese bert-networks
Nils Reimers and Iryna Gurevych. Sentence-bert: Sen- tence embeddings using siamese bert-networks. In Confer- ence on Empirical Methods in Natural Language Processing, pages 3980–3990. Association for Computational Linguis- tics, 2019. 4
2019
-
[23]
Multiobjective optimization using nondomi- nated sorting in genetic algorithms
JD Schaffer. Multiobjective optimization using nondomi- nated sorting in genetic algorithms. In Proceedings of the First International Conference on Genetic Algorithms and Their Applications, pages 160–168. Lawrence Erlbaum As- sociates, 1985. 3
1985
-
[24]
Reflexion: Language agents with verbal reinforcement learning
Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. Reflexion: Language agents with verbal reinforcement learning. Advances in Neural In- formation Processing Systems, 36, 2024. 3
2024
-
[25]
Monte carlo tree search: A review of recent modifications and applications
Maciej ´Swiechowski, Konrad Godlewski, Bartosz Sawicki, and Jacek Ma ´ndziuk. Monte carlo tree search: A review of recent modifications and applications. Artificial Intelligence Review, 56(3):2497–2562, 2023. 3
2023
-
[26]
Gemini: a family of highly capable multimodal models
Gemini Team, Rohan Anil, Sebastian Borgeaud, Jean- Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, Katie Millican, et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023. 6
2023 arXiv
-
[27]
Mixture-of-agents enhances large language model capabilities
Junlin Wang, Jue Wang, Ben Athiwaratkun, Ce Zhang, and James Zou. Mixture-of-agents enhances large language model capabilities. arXiv preprint arXiv:2406.04692, 2024. 3
2024 arXiv
-
[28]
Measuring multimodal mathemat- ical reasoning with math-vision dataset, 2024
Ke Wang, Junting Pan, Weikang Shi, Zimu Lu, Mingjie Zhan, and Hongsheng Li. Measuring multimodal mathemat- ical reasoning with math-vision dataset, 2024. 6
2024
-
[29]
Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution
Peng Wang, Shuai Bai, Sinan Tan, Shijie Wang, Zhihao Fan, Jinze Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Yang Fan, Kai Dang, Mengfei Du, Xuancheng Ren, Rui Men, Dayiheng Liu, Chang Zhou, Jingren Zhou, and Jun- yang Lin. Qwen2-vl: Enhancing vision-language model’s ...
2024 arXiv
-
[30]
Unleashing the emergent cogni- tive synergy in large language models: A task-solving agent through multi-persona self-collaboration
Zhenhailong Wang, Shaoguang Mao, Wenshan Wu, Tao Ge, Furu Wei, and Heng Ji. Unleashing the emergent cogni- tive synergy in large language models: A task-solving agent through multi-persona self-collaboration. arXiv preprint arXiv:2307.05300, 2023. 3, 6, 2
2023 arXiv
-
[31]
Chi, Quoc V
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed H. Chi, Quoc V . Le, and Denny Zhou. Chain-of-thought prompting elicits reasoning in large language models. InAdvances in Neural Information Processing Systems, 2022. 2, 3, 6
2022
-
[32]
No train still gain
Haotian Xu. No train still gain. unleash mathemati- cal reasoning of large language models with monte carlo tree search guided by energy function. arXiv preprint arXiv:2309.03224, 2023. 3
2023 arXiv
-
[33]
Unveiling the general- ization power of fine-tuned large language models
Haoran Yang, Yumeng Zhang, Jiaqi Xu, Hongyuan Lu, Pheng Ann Heng, and Wai Lam. Unveiling the general- ization power of fine-tuned large language models. arXiv preprint arXiv:2403.09162, 2024. 1
2024 arXiv
-
[34]
The dawn of lmms: Preliminary explorations with gpt-4v (ision)
Zhengyuan Yang, Linjie Li, Kevin Lin, Jianfeng Wang, Chung-Ching Lin, Zicheng Liu, and Lijuan Wang. The dawn of lmms: Preliminary explorations with gpt-4v (ision). arXiv preprint arXiv:2309.17421, 9(1):1, 2023. 6
2023 arXiv
-
[35]
React: Synergizing reasoning and acting in language models
Shunyu Yao, Jeffrey Zhao, Dian Yu, Nan Du, Izhak Shafran, Karthik Narasimhan, and Yuan Cao. React: Synergizing reasoning and acting in language models. arXiv preprint arXiv:2210.03629, 2022. 3
2022 arXiv
-
[36]
Tree of thoughts: Deliberate problem solving with large language models
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. Tree of thoughts: Deliberate problem solving with large language models. In Advances in Neural Information Processing Sys- tems, 2023. 2, 3, 6
2023
-
[37]
Wong, Emine Yilmaz, Shuming Shi, and Zhaopeng Tu
Fanghua Ye, Mingming Yang, Jianhui Pang, Longyue Wang, Derek F. Wong, Emine Yilmaz, Shuming Shi, and Zhaopeng Tu. Benchmarking llms via uncertainty quantification. CoRR, abs/2401.12794, 2024. 4
2024 arXiv
-
[38]
Accessing GPT-4 level mathemati- cal olympiad solutions via monte carlo tree self-refine with llama-3 8b
Di Zhang, Xiaoshui Huang, Dongzhan Zhou, Yuqiang Li, and Wanli Ouyang. Accessing GPT-4 level mathemati- cal olympiad solutions via monte carlo tree self-refine with llama-3 8b. CoRR, abs/2406.07394, 2024. 2, 3, 4, 6
2024 arXiv
-
[39]
A many-objective evo- lutionary algorithm based on three states for solving many- objective optimization problem
Jiale Zhao, Huijie Zhang, Huanhuan Yu, Hansheng Fei, Xi- angdang Huang, and Qiuling Yang. A many-objective evo- lutionary algorithm based on three states for solving many- objective optimization problem. Scientific Reports , 14(1): 19140, 2024. 2
2024
-
[40]
Pareto deep long-tailed recognition: A conflict-averse solution
Zhipeng Zhou, Liu Liu, Peilin Zhao, and Wei Gong. Pareto deep long-tailed recognition: A conflict-averse solution. In International Conference on Learning Representations ,
-
[42]
We use the 7B parameter version, released in August 2024
Qwen2VL: The latest multimodal model from the Qwen family. We use the 7B parameter version, released in August 2024
2024
-
[43]
This model is trained with a more advanced language model, improving its perfor- mance and capabilities
LLaV A-NeXT: We use the version based on LLaMA3- 8B, released in May 2024. This model is trained with a more advanced language model, improving its perfor- mance and capabilities
2024
-
[44]
Phi3.5-vision: A lightweight multimodal model devel- oped by the Microsoft team with 4.5B parameters, re- leased in August 2024. The model weights used in our work are sourced from Hug- ging Face, and we deploy the models using the Transform- ers library, utilizing Flash-Atten...
2024
-
[45]
The Answer is \boxed{{}}
IO (Input-Output): We use a standard zero-shot input- output prompt, where the model will only response with “The Answer is \boxed{{}} ”
-
[46]
[Reasoning process]...[Verification]
CoT (Chain-of-Thought): We apply prompting formats as “[Reasoning process]...[Verification]...” and “Let’s think step by step” to encourage the model to generate reasoning steps and validation steps
-
[47]
The process involves first providing feedback on the initial output, followed by re- fining the answer based on that feedback
Self-Refine: Self-Refine improves model outputs through one refinement iteration, without requiring ex- tra training or supervision. The process involves first providing feedback on the initial output, followed by re- fining the answer based on that feedback. We use the second...
-
[48]
In each round, five answers are sampled, and the best answer is selected via voting for further reasoning
ToT (Tree of Thoughts): ToT employs a greedy search strategy with two rounds of exploration. In each round, five answers are sampled, and the best answer is selected via voting for further reasoning. We adopt the original settings from [36]
-
[49]
We adopt the original settings from [38]
MCTSr (Monte Carlo Tree Self-Refine): MCTSr com- bines Monte Carlo Tree Search with self-refine to en- hance decision-making and solve complex reasoning tasks. We adopt the original settings from [38]
-
[50]
We adopt the origi- nal settings from [30]
SPP (Solo Performance Prompting) : SPP enables a single model to collaborate with itself through multiple personas in multi-turn interactions. We adopt the origi- nal settings from [30]
-
[51]
The Answer is \boxed{{}}
MAD (Multi-Agent Debate) : MAD utilizes multiple agents engaged in debate, guided by a judge, to promote divergent thinking and address complex reasoning tasks. We adopt the original settings from [14]. All prompts are zero-shot, with the model required to end the response wit...
-
[2024]
Algorithm of EoT Here, we introduce the algorithmic description of EoT, with its workflow depicted in Algorithm 1
5 Evolution of Thought: Diverse and High-Quality Reasoning via Multi-Objective Optimization Supplementary Material A. Algorithm of EoT Here, we introduce the algorithmic description of EoT, with its workflow depicted in Algorithm 1. Algorithm 1 EoT Search Algorithm 1: Input: U...
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.