REVIEW 4 major objections 5 minor 1 cited by
OPT-BENCH: Evaluating LLM Agent on Large-Scale Search Spaces Optimization Problems
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Incorporating historical context improves LLM optimization across 20 ML tasks and 10 NP problems, according to a new benchmark and agent framework.
desk verdict A useful new agent benchmark whose headline 'history helps' claim is undermined by a flawed Improvement Rate formula that mixes lower- and higher-is-better metrics. 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 load-bearing mechanism is OPT-Agent's draft-improve-debug loop. At each step the LLM receives the problem description, submission format, and, when history is enabled, the previous solution, its metric, and any validation error; it then either drafts a fresh solution, refines the last valid one, or repairs the last buggy one. A rule-based or metric-based validator turns every attempt into a concrete score or a validity verdict, so the loop always has a checkable quality signal to feed back into the next prompt. The headline comparison metric is Win Count, the number of tasks where the history-augmented run beats the no-history run under otherwise identical settings, supplemented by Improvement Rate, Buggy Rate, and Rank.
What would settle it
Run both conditions on the same 30 tasks, but in the history condition replace the agent's own previous solutions and metrics with an equal-length history drawn from a different task of the same type. If the advantage over the no-history baseline persists, the gain is not specific to learning from the current problem's feedback and the central claim would be falsified; if the advantage disappears, the paper's interpretation is supported.
Extended reading notes
Core claim
The central claim is that historical context is a measurable and general driver of LLM optimization quality. Using identical task definitions, datasets, validators, and evaluation metrics, OPT-Agent with history outperforms OPT-Agent without history on a majority of the 20 ML tasks and 10 NP problems for most of the nine LLMs tested; the paper's improvement-rate numbers are above 1 in nearly all ML configurations, and win counts favor the history condition on NP problems more often than not. The paper also reports that longer optimization horizons generally improve final metrics, that moderate temperatures tend to balance exploration and solution validity, and that open-source models produce more invalid solutions and trail proprietary models on NP tasks. On the ML side, the benefit of history appears as better hyperparameter choices and feature engineering; on the NP side, the benefit is real but weaker, because models often discard the previous solution and start over instead of repairing the specific failing constraint. The intended conclusion is that evaluating LLMs on iterative, feedback-driven optimization is feasible and that this capability is partly independent of one-shot reasoning strength.
Load-bearing premise
The comparison only demonstrates that history helps if the no-history baseline is otherwise identical in task information, prompt formatting, and starting conditions; the paper states that the only difference is the absence of historical information but does not fully specify how the baseline prompt is constructed, leaving open the possibility that the gain comes from extra context rather than from learning.
Editorial extensions
If this is right
- Benchmarks for LLM problem-solving should include iterative loops with feedback, since a single generation no longer measures the capability these results target.
- Optimization budgets matter: the paper reports that improvement over the initial solution rises with the number of steps, from 5 to 20, for most models.
- Temperature should be treated as a per-model hyperparameter for optimization agents, with low-to-moderate values usually but not always best.
- Draft-based optimization should be evaluated separately from refinement, since it yields higher invalid-solution rates yet often higher improvement rates when solutions are valid.
- Future LLM development can use the 30 validated tasks and public scripts as a reproducible yardstick for optimization ability.
Reading between the lines
- The paper's central result does not isolate why history helps; a natural follow-up is to give the no-history baseline a fixed amount of extra context that is task-irrelevant, so any remaining gain in the history condition is specifically about the current problem's feedback.
- The NP half of the benchmark could be used to test whether models genuinely reuse valid substructures from earlier attempts or merely regenerate answers, by logging how often the final solution contains segments of previous valid solutions.
- Because the paper names growing prompt size as a limitation, a testable extension is that compressing history, summaries of what changed and by how much rather than full previous code, preserves most of the benefit at much lower token cost.
- A skeptical reading is that the ML win counts may partly reflect the no-history baseline losing access to the previous code it needs for debugging; isolating that would require a baseline that receives the previous error message and metric but not the previous solution.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces OPT-BENCH, a benchmark containing 20 Kaggle machine-learning tasks and 10 classical NP problems, together with OPT-Agent, an LLM agent framework that iteratively drafts, improves, and debugs solutions using historical feedback. The authors evaluate nine LLMs from six families and report that including historical context improves optimization performance, as measured by win counts and an Improvement Rate, and also study the effects of iteration count, temperature, and draft versus refine settings. The benchmark, code, and evaluation tools are open-sourced.
Significance. If the empirical claims are validated, OPT-BENCH fills a clear gap: existing LLM benchmarks largely test single-pass responses, whereas iterative optimization with feedback is an important and under-measured capability. The benchmark's assets—real-world ML tasks, human-verified initial solutions, automated NP validation scripts, and an open-source framework—are valuable resources for the community. The paper's main weakness is that its central quantitative claim rests on a metric that is defined and interpreted inconsistently, and on win counts without statistical support. The benchmark itself is sound as a contribution; the empirical analysis needs correction before the headline claim is acceptable.
major comments (4)
- [Section 3.2, Table 2] The Improvement Rate as defined, IR(α,β) = (1/20) Σ α_i/β_i, with α_i the metric under the improved setting and β_i the baseline metric, is not a valid measure of improvement when the 20 ML tasks mix lower-is-better metrics (12 tasks per Table 7, e.g., MSE, RMSE, RMSLE, log loss) with higher-is-better metrics (8 tasks, e.g., accuracy, AUC, F1, kappa). For a lower-is-better metric, an actual improvement gives α_i/β_i < 1, while for a higher-is-better metric it gives a ratio > 1; averaging these incompatible quantities makes IR > 1 uninterpretable. Table 2 reports IR(w,w.o) > 1 for every model and step count, which is only possible if lower-is-better ratios were inverted without documentation. Section 3.3 then reads IR > 1 as "underscoring the value of contextual information," and the abstract's claim that history "significantly enhances" optimization relies on this measure. Please re-analyze the data using direction-aware ratios, report per-task signed improvements, and correct the conclusions accordingly.
- [Section 3.2, Tables 2-3] The win-count comparisons are based on a single run per condition, with no repeated seeds, confidence intervals, or significance tests. With only 20 ML tasks and 10 NP problems, win counts such as 12/8, 11/9, or 10/10 are within the range of random variation, so the abstract's word "significantly" is not supported by the evidence. Please report the number of seeds or runs, and provide a statistical test (e.g., a binomial test against the null of equal performance, or a paired test on per-task metric changes) to substantiate the claim.
- [Section 3.2 and Figure 4] The baseline "without historical information" is described as differing only by the absence of historical information, but the prompt template in Figure 4 contains separate fields for "History Information," "Previous Solution," "Previous (buggy) Implementation," and "Previous (buggy) Output." If the baseline omits all of these, the comparison does not isolate "history" from "having a previous solution," and the improvement might simply reflect the ability to start from an existing draft rather than learning from feedback. Please specify exactly which prompt fields are kept and which are removed in the baseline, and describe what action the baseline agent performs at each optimization step.
- [Section 5, Limitations] The paper's own Limitations section acknowledges that "averaging performance metrics may introduce scale inconsistencies" for OPT-BENCH-ML. The Improvement Rate in Section 3.2 is exactly such an average of ratios across heterogeneous metrics (MSE, accuracy, etc.). Since the central claim depends on this rate, the acknowledgment is not sufficient: the analysis should be corrected, for example, by reporting per-task signed improvements or normalized changes, and the corrected metric should be used to re-evaluate all claims in Section 3.3 and the abstract.
minor comments (5)
- [Section 3.3] There is a typo: "which is a key sapect for future improvement" should read "a key aspect."
- [Figure 2] The NP example is labeled "Hamiltonian-cycle" but the task description mentions finding a subgraph and maximizing the number of visited vertices, while the validation script checks for a cycle. Please clarify whether the task is to find a Hamiltonian cycle or to find the longest cycle/subgraph in a graph, and align the description with the actual validation logic.
- [Table 1] The table refers to "NPHardBench [10]" but the reference list and Section 4.1 use "NPHardEval"; the names should be consistent.
- [Section 2.1, Tables 7-8] The text says each NP problem contains "five distinct instances," but it is not specified how win counts and ranks aggregate across those instances. Please state whether win counts are computed per instance, per problem, or per problem set, and report the aggregation rule.
- [Figures 5 and 6] The trace diagrams are dense and hard to read at the current resolution. Please ensure the published figures are legible, or provide a zoomed view of representative paths.
Circularity Check
No circularity: the empirical history-vs-baseline comparison is self-contained and not derived from its own inputs.
full rationale
OPT-BENCH's central claim is an experimental result comparing OPT-Agent with and without historical context. The evaluation metrics (Win Count, IR, Buggy Rate, Rank) are defined directly on observed task outcomes; IR is a ratio of measured metrics, not a fitted parameter or a quantity equivalent to its input. The initial solutions are seeded using AIDE, but AIDE is an external framework by other authors and the claim does not depend on AIDE's correctness. No uniqueness theorem or ansatz is imported from prior work, and no known result is renamed. Section 3.2's IR formula does mix lower- and higher-is-better metrics, so reading IR(w,w.o)>1 as 'improvement' is a validity concern (also partially acknowledged in the Limitations as scale inconsistencies when averaging metrics), but this is a measurement-construction issue, not a case where a prediction reduces by construction to its inputs. The comparison is controlled as stated: the only intended difference is the inclusion of historical information. Accordingly the circularity score is 0.
Assumptions & free parameters
assumptions (3)
- domain assumption LLMs can improve their own optimization solutions when prompted with historical feedback.
- domain assumption Averaging ratios across tasks with heterogeneous metrics yields a meaningful improvement rate.
- domain assumption The validation scripts correctly judge NP solution validity.
invented entities (2)
-
OPT-BENCH dataset
-
OPT-Agent framework
Cite this review
Pith. "Pith review of OPT-BENCH: Evaluating LLM Agent on Large-Scale Search Spaces Optimization Problems." pith.science (2026). https://pith.science/paper/KDQNKFPE
@misc{pith2026250610764,
author = {Pith},
title = {Pith review of: OPT-BENCH: Evaluating LLM Agent on Large-Scale Search Spaces Optimization Problems},
year = {2026},
howpublished = {\url{https://pith.science/paper/KDQNKFPE}},
note = {Machine review of arXiv:2506.10764}
}
read the original abstract
Large Language Models (LLMs) have shown remarkable capabilities in solving diverse tasks. However, their proficiency in iteratively optimizing complex solutions through learning from previous feedback remains insufficiently explored. To bridge this gap, we present OPT-BENCH, a comprehensive benchmark designed to evaluate LLM agents on large-scale search space optimization problems. OPT-BENCH includes 20 real-world machine learning tasks sourced from Kaggle and 10 classical NP problems, offering a diverse and challenging environment for assessing LLM agents on iterative reasoning and solution refinement. To enable rigorous evaluation, we introduce OPT-Agent, an end-to-end optimization framework that emulates human reasoning when tackling complex problems by generating, validating, and iteratively improving solutions through leveraging historical feedback. Through extensive experiments on 9 state-of-the-art LLMs from 6 model families, we analyze the effects of optimization iterations, temperature settings, and model architectures on solution quality and convergence. Our results demonstrate that incorporating historical context significantly enhances optimization performance across both ML and NP tasks. All datasets, code, and evaluation tools are open-sourced to promote further research in advancing LLM-driven optimization and iterative reasoning. Project page: \href{https://github.com/OliverLeeXZ/OPT-BENCH}{https://github.com/OliverLeeXZ/OPT-BENCH}.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 1 Pith paper
-
PEARL: Solver-in-the-Loop Interactive Optimization Modeling from Natural Language
Training an LLM as a multi-turn agent that runs and repairs solver code raises verified optimization solve rates, with the 4B PEARL model outperforming DeepSeek-V3.2-685B in aggregate.
Reference graph
Works this paper leans on
-
[1]
Gpt-4 technical report.arXiv preprint arXiv:2303.08774, 2023
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report.arXiv preprint arXiv:2303.08774, 2023
arXiv 2023
-
[2]
Aida Amini, Saadia Gabriel, Peter Lin, Rik Koncel-Kedziorski, Yejin Choi, and Hannaneh Hajishirzi. Mathqa: Towards interpretable math word problem solving with operation-based formalisms.arXiv preprint arXiv:1905.13319, 2019
arXiv 1905
-
[3]
Program synthesis with large language models.arXiv preprint arXiv:2108.07732, 2021
Jacob Austin, Augustus Odena, Maxwell Nye, Maarten Bosma, Henryk Michalewski, David Dohan, Ellen Jiang, Carrie Cai, Michael Terry, Quoc Le, et al. Program synthesis with large language models.arXiv preprint arXiv:2108.07732, 2021
arXiv 2021
-
[4]
Language models are few-shot learners.Advances in neural information processing systems, 33:1877–1901, 2020
Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners.Advances in neural information processing systems, 33:1877–1901, 2020
1901
-
[6]
Evaluating large language models trained on code.arXiv preprint arXiv:2107.03374, 2021
Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique de Oliveira Pinto, Jared Kaplan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, et al. Evaluating large language models trained on code.arXiv preprint arXiv:2107.03374, 2021
arXiv 2021
-
[7]
Palm: Scaling language modeling with pathways.Journal of Machine Learning Research, 24(240):1– 113, 2023
Aakanksha Chowdhery, Sharan Narang, Jacob Devlin, Maarten Bosma, Gaurav Mishra, Adam Roberts, Paul Barham, Hyung Won Chung, Charles Sutton, Sebastian Gehrmann, et al. Palm: Scaling language modeling with pathways.Journal of Machine Learning Research, 24(240):1– 113, 2023
2023
-
[8]
Training verifiers to solve math word problems.arXiv preprint arXiv:2110.14168, 2021
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. Training verifiers to solve math word problems.arXiv preprint arXiv:2110.14168, 2021
-
[9]
Antonia Creswell, Murray Shanahan, and Irina Higgins. Selection-inference: Exploiting large language models for interpretable logical reasoning.arXiv preprint arXiv:2205.09712, 2022
arXiv 2022
Show all 45 references
-
[10]
Nphardeval: Dynamic benchmark on reasoning ability of large language models via complexity classes.arXiv preprint arXiv:2312.14890, 2023
Yao Fan, Xinyu Hua, et al. Nphardeval: Dynamic benchmark on reasoning ability of large language models via complexity classes.arXiv preprint arXiv:2312.14890, 2023
2023 arXiv
-
[11]
Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context
Google. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context. arXiv preprint arXiv:2403.05530, 2024
2024 arXiv
-
[12]
The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
2024 arXiv
-
[13]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[14]
R-bench: Graduate-level multi-disciplinary benchmarks for llm & mllm complex reasoning evaluation.arXiv preprint arXiv:2505.02018, 2025
Meng-Hao Guo, Jiajun Xu, Yi Zhang, Jiaxi Song, Haoyang Peng, Yi-Xuan Deng, Xinzhi Dong, Kiyohiro Nakayama, Zhengyang Geng, Chen Wang, et al. R-bench: Graduate-level multi-disciplinary benchmarks for llm & mllm complex reasoning evaluation.arXiv preprint arXiv:2505.02018, 2025
2025 arXiv
-
[15]
Measuring massive multitask language understanding.arXiv preprint arXiv:2009.03300, 2020
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. Measuring massive multitask language understanding.arXiv preprint arXiv:2009.03300, 2020
2009 arXiv
-
[16]
Measuring mathematical problem solving with the math dataset
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset. arXiv preprint arXiv:2103.03874, 2021. 14
2021 arXiv
-
[17]
Mlagentbench: Evaluating language agents on machine learning experimentation
Qian Huang, Jian V ora, Percy Liang, and Jure Leskovec. Mlagentbench: Evaluating language agents on machine learning experimentation. InForty-first International Conference on Machine Learning, 2024
2024
-
[18]
Aide: Ai-driven exploration in the space of code, 2025
Zhengyao Jiang, Dominik Schmidt, Dhruv Srikanth, Dixing Xu, Ian Kaplan, Deniss Jacenko, and Yuxiang Wu. Aide: Ai-driven exploration in the space of code, 2025
2025
-
[19]
Let’s verify step by step
Hunter Lightman, Vineet Kosaraju, Yuri Burda, Harrison Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. Let’s verify step by step. InThe Twelfth International Conference on Learning Representations, 2023
2023
-
[20]
Truthfulqa: Measuring how models mimic human falsehoods
Stephanie Lin, Jacob Hilton, and Owain Evans. Truthfulqa: Measuring how models mimic human falsehoods. InProceedings of the 60th Annual Meeting of the Association for Computa- tional Linguistics, pages 3214–3252, 2022
2022
-
[21]
Criticbench: Benchmarking llms for critique-correct reasoning, 2024
Zicheng Lin, Zhibin Gou, Tian Liang, Ruilin Luo, Haowei Liu, and Yujiu Yang. Criticbench: Benchmarking llms for critique-correct reasoning, 2024
2024
-
[22]
Agentbench: Evaluating llms as agents.arXiv preprint arXiv:2308.03688, 2023
Xiao Liu et al. Agentbench: Evaluating llms as agents.arXiv preprint arXiv:2308.03688, 2023
2023 arXiv
-
[23]
Self-refine: Iterative refinement with self-feedback.arXiv preprint arXiv:2303.17651, 2023
Aman Madaan et al. Self-refine: Iterative refinement with self-feedback.arXiv preprint arXiv:2303.17651, 2023
2023 arXiv
-
[24]
Mle-bench: Evaluating machine learning agents on real-world machine learning engineering tasks.arXiv preprint arXiv:2410.07095, 2024
OpenAI. Mle-bench: Evaluating machine learning agents on real-world machine learning engineering tasks.arXiv preprint arXiv:2410.07095, 2024
2024 arXiv
-
[25]
Openai o1 system card
OpenAI. Openai o1 system card. Technical report, OpenAI, 2025
2025
-
[26]
Toolbench: An open platform for training, serving, and evaluating large language models as tool agents.https://github.com/OpenBMB/ToolBench, 2023
OpenBMB. Toolbench: An open platform for training, serving, and evaluating large language models as tool agents.https://github.com/OpenBMB/ToolBench, 2023
2023
-
[27]
Training language models to follow instructions with human feedback.Advances in neural information processing systems, 35:27730–27744, 2022
Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback.Advances in neural information processing systems, 35:27730...
2022
-
[28]
Art: Automatic multi-step reasoning and tool-use for language models.arXiv preprint arXiv:2303.09014, 2023
Laura Parisi et al. Art: Automatic multi-step reasoning and tool-use for language models.arXiv preprint arXiv:2303.09014, 2023
2023 arXiv
-
[29]
Toolformer: Language models can teach themselves to use tools.arXiv preprint arXiv:2302.04761, 2023
Timo Schick, Jane Dwivedi-Yu, et al. Toolformer: Language models can teach themselves to use tools.arXiv preprint arXiv:2302.04761, 2023
2023 arXiv
-
[30]
Reflexion: Language agents with verbal reinforcement learning.arXiv preprint arXiv:2303.11366, 14, 2023
Noah Shinn, Federico Cassano, Beck Labash, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. Reflexion: Language agents with verbal reinforcement learning.arXiv preprint arXiv:2303.11366, 14, 2023
2023 arXiv
-
[31]
Alfworld: Aligning text and embodied environments for interactive learning.arXiv preprint arXiv:2010.03768, 2020
Mohit Shridhar et al. Alfworld: Aligning text and embodied environments for interactive learning.arXiv preprint arXiv:2010.03768, 2020
2010 arXiv
-
[32]
Beyond the imitation game: Quantifying and extrapolating the capabilities of language models
Aarohi Srivastava, Abhinav Rastogi, Abhishek Rao, Abu Awal Md Shoeb, Abubakar Abid, Adam Fisch, Adam R Brown, Adam Santoro, Aditya Gupta, Adrià Garriga-Alonso, et al. Beyond the imitation game: Quantifying and extrapolating the capabilities of language models. arXiv preprint a...
2022 arXiv
-
[33]
Commonsenseqa: A question answering challenge targeting commonsense knowledge
Alon Talmor, Jonathan Herzig, Nicholas Lourie, and Jonathan Berant. Commonsenseqa: A question answering challenge targeting commonsense knowledge. InProceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Languag...
2019
-
[34]
Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023. 15
2023 arXiv
-
[35]
Karthik Valmeekam, Matthew Marquez, Alberto Olmo, Sarath Sreedharan, and Subbarao Kambhampati. Planbench: An extensible benchmark for evaluating large language models on planning and reasoning about change.Advances in Neural Information Processing Systems, 36:38975–38987, 2023
2023
-
[36]
Superglue: A stickier benchmark for general-purpose language understanding systems
Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. Superglue: A stickier benchmark for general-purpose language understanding systems. InAdvances in Neural Information Processing Systems, volume 32, 2019
2019
-
[37]
Glue: A multi-task benchmark and analysis platform for natural language understanding
Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP, pages 353–355, 2018
2018
-
[38]
Chain-of-thought prompting elicits reasoning in large language models
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, volume 35, pages 24824–24837, 2022
2022
-
[39]
Are large language models really good logical reasoners? a comprehensive evaluation and beyond.IEEE Transactions on Knowledge and Data Engineering, 2025
Fangzhi Xu, Qika Lin, Jiawei Han, Tianzhe Zhao, Jun Liu, and Erik Cambria. Are large language models really good logical reasoners? a comprehensive evaluation and beyond.IEEE Transactions on Knowledge and Data Engineering, 2025
2025
-
[40]
Intercode: Standardizing and benchmarking interactive coding with execution feedback.arXiv preprint arXiv:2306.14898, 2023
John Yang et al. Intercode: Standardizing and benchmarking interactive coding with execution feedback.arXiv preprint arXiv:2306.14898, 2023
2023 arXiv
-
[41]
Webshop: Towards scalable real-world web interaction with grounded language agents.arXiv preprint arXiv:2207.01206, 2022
Shunyu Yao et al. Webshop: Towards scalable real-world web interaction with grounded language agents.arXiv preprint arXiv:2207.01206, 2022
2022 arXiv
-
[42]
Tree of thoughts: Deliberate problem solving with large language models.arXiv preprint arXiv:2305.10601, 2023
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Thomas L Griffiths, Yuan Cao, and Karthik Narasimhan. Tree of thoughts: Deliberate problem solving with large language models.arXiv preprint arXiv:2305.10601, 2023
2023 arXiv
-
[43]
React: Synergizing reasoning and acting in language models.arXiv preprint arXiv:2210.03629, 2022
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
2022 arXiv
-
[44]
Hellaswag: Can a machine really finish your sentence? InProceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 4791–4800, 2019
Rowan Zellers, Ari Holtzman, Yonatan Bisk, Ali Farhadi, and Yejin Choi. Hellaswag: Can a machine really finish your sentence? InProceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 4791–4800, 2019
2019
-
[45]
Iolbench: Benchmarking llms on linguistic reasoning.arXiv preprint arXiv:2501.04249, 2024
Yicheng Zhang et al. Iolbench: Benchmarking llms on linguistic reasoning.arXiv preprint arXiv:2501.04249, 2024
2024
-
[46]
Webarena: A realistic web environment for building autonomous agents
Shuyan Zhou et al. Webarena: A realistic web environment for building autonomous agents. arXiv preprint arXiv:2307.13854, 2023. 16
2023 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.