REVIEW 4 major objections 5 minor 41 references
Clarifying Before Reasoning: A Coq Prover with Structural Context
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Structured semantic context raises an LLM's Coq theorem-proving success from 21.8% to 45.8%, beating a specialized prover.
desk verdict Real engineering, but the headline result is unproven until the paper rules out 'admit' and other axiom-level shortcuts. 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
Selective concept unfolding with a Planner-Executor search loop. Concept unfolding recursively expands each entity referenced in a proof state by its definition; selective means the expansion stops once the model likely already knows the concept, avoiding unnecessary bloat. The system also uses a domain-specific tokenizer that maps aliases and module paths to unique semantic identifiers, and a structured prompt containing dual surface and internal representations of the proof state, related premises and tactics, and a running proof trace. These components feed a Planner that writes a strategy and an Executor that proposes tactics via beam search, with compiler feedback used to retry failed tactics.
What would settle it
Look inside every successful proof trace produced by the system and see whether any step is the 'admit' tactic or an axiom-like shortcut; then rerun the benchmark with those tactics removed from the allowed set. If a large share of the 45.8% successes vanish, the clarity-driven improvement claim collapses.
Extended reading notes
Core claim
The paper claims that task clarity can be quantified and that improving it directly improves theorem-proving performance. The central empirical result is that a Planner-Executor system built on DeepSeek-V3, with structured context inserted into the prompt, achieves a 45.8% proof success rate on a random 10% sample of the Graph2Tac test set drawn from 15 standard Coq packages, outperforming Graph2Tac's 33.2%. The same architecture also shows a 0.98 correlation between clarity scores and success rates across information configurations, which the authors read as support for the causal claim that understanding precedes reasoning. The paper also reports that a 32B fine-tuned model reaches 48.6% success, indicating the structured data itself carries much of the value.
Load-bearing premise
The claim that structured context is what improves proof success rests on the baseline comparison, and the paper does not state that the allowed tactics exclude 'admit', which can discharge any goal without a real proof; if 'admit' is allowed, the reported success rates could be inflated.
Editorial extensions
If this is right
- General-purpose LLMs without specialized mathematical training can match or beat specialized provers when the task description is structured enough.
- Clarity score can act as a diagnostic: measuring concept comprehension before proof search predicts downstream success and can guide which concepts to unfold.
- Fine-tuning smaller models on structured context yields higher success than the larger general model, so data quality can substitute for parameter count.
- The method is model-agnostic and domain-agnostic, so the same structured-description recipe should transfer to other proof assistants and to precise-reasoning tasks like verification.
Reading between the lines
- Extension: the reported success rates count a goal as complete when the checker says no goals remain; if the tactic 'admit' is in the allowed tactic vocabulary, some 'solved' theorems may have been discharged by fiat, so a replication that bans admit is the real test of the comparison to Graph2Tac.
- Extension: since the test set is a 10% sample, the 45.8% figure is an estimate; a full benchmark run or repeated sampling would show how much variance surrounds the 12.6-point lead.
- Extension: the clarity-to-success correlation is measured over configurations that also change the prompt length and content; an ablation that holds total tokens roughly fixed would separate clarity from raw information volume.
- Extension: the same pipeline could be built for Lean or Isabelle, where elaborated terms are also available; if the correlation holds there, the clarity lever generalizes beyond Coq.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper argues that poor task understanding, rather than insufficient reasoning, is a major cause of LLM failures in formal theorem proving. It introduces a 'clarity score' that measures how accurately a model can reproduce formal definitions from a Coq proof context, and shows that adding structured semantic context extracted from Coq's compiler—surface syntax plus kernel-elaborated representations plus natural-language intuitions—raises this score from 44.5% to 82.3%. On theorem proving, the paper reports a DeepSeek-V3 Planner-Executor system achieving 45.8% success on a subset of the Graph2Tac benchmark, outperforming Graph2Tac's 33.2%, with a fine-tuned Qwen-2.5-32B reaching 48.6%. The paper also reports a near-perfect correlation (r=0.98) between clarity and proof success.
Significance. If the main empirical claim is correct, this is a meaningful result: it suggests that semantic enrichment of proof-state inputs can give a general-purpose LLM substantial gains over a specialized GNN-based prover, and it offers a reusable recipe for extracting both surface and kernel-level information from Coq. The paper's strengths include a concrete pipeline for intercepting Coq's elaboration stages, a domain-specific tokenizer that resolves naming ambiguities, and experiments spanning multiple Coq libraries. However, the central comparison to Graph2Tac is not yet robustly supported: the success metric appears to allow axiom-level shortcuts such as 'admit', the evaluation set size is reported inconsistently, and the clarity metric is self-judged by the same model family used for proving. The broad applicability claim is also weakened by an internal contradiction in the per-library results.
major comments (4)
- [§7.2.2, Table 2; Algorithm 1] The central comparison to Graph2Tac is unsound as reported because the paper never states that tactic candidates containing 'admit' or other axiom-level shortcuts (e.g., 'Admitted', 'Require Import Classical', or 'intuition' with classical axioms) are excluded from the success metric. In Algorithm 1, a tactic is accepted when 'COMPILE TACTIC' returns success and 'ISGOALCOMPLETE(S')' is true, but in Coq 'admit' discharges the current goal and is accepted by the compiler as a tactic, so such a result is not evidence that the theorem has been proved. If 'admit' occurred in any successful proof, the reported 45.8% success rate and the 12.6-point gain over Graph2Tac could be inflated. The authors must state explicitly that 'admit' and similar commands are forbidden, verify that all successful proofs are axiom-free in Coq's kernel, and rerun the evaluation if any axiom-level tactic was allowed.
- [Abstract vs. §7.2.1] The evaluation set is reported as 1,386 theorems in the abstract and in Section 7.4, but as 1,300 theorems in Section 7.2.1 and Table 2. This discrepancy matters because the main success rate is defined over this set; the authors should reconcile the numbers and state exactly how the random 10% sample of the Graph2Tac test set was filtered to produce the final set used for the headline comparison.
- [§4.2 and §7.2.3] The clarity score is produced and judged by DeepSeek-V3, the same model family used as the prover, and the 'Complete Information' condition supplies the very definitions the model is asked to reproduce. The near-perfect correlation in Table 3 therefore does not establish that clarity drives proving ability; it may partly reflect that the model can copy definitions verbatim from the prompt. Please add a human-calibrated evaluation or use a held-out judge from a different model family, and report inter-annotator agreement or a similarly direct validity check for the clarity score.
- [§7.2.1 and §7.4] The search parameters are stated inconsistently: Section 7.2.1 says 'Maximum retries R = 3' but immediately parenthesizes 'one retry with error feedback', while Table 8 compares Retry Count 0, 3, and 1. The reader cannot tell how many retries the main 45.8% result used. Please clarify the actual retry schedule and, if R=3 was used for the main result, explain how it is compatible with the 'one retry' comment and with Table 8's conclusion that a single retry is optimal.
minor comments (5)
- [§7.3, Table 5] The text states that 'Both DS+DS and fine-tuned approaches show gains across all library types,' but the iris row shows DS baseline 0.10 vs. DS+DS 0.09, a decrease. Please correct the claim or explain the discrepancy.
- [§7.4, Table 6] The sentence before Table 6 says the information-component analysis is performed on 1,386 theorems, while Table 7 and Table 8 use 78 theorems from Ceres; it is not clear which configuration produced the 48.6% success rate in the final row of Table 6. Please state explicitly which model and dataset each ablation row uses.
- [Algorithm 1] Line 55 uses the inconsistent function name 'ISSUBGOAL COMPLETE' with a space; this should be 'ISSUBGOALCOMPLETE' for consistency with line 51.
- [Introduction and Section 1] There are several typographical and grammatical errors, including 'truely', 'general purposed model', and 'specifical trained'; the manuscript needs a careful copyediting pass.
- [Reproducibility] The paper does not state whether the evaluation scripts, the extracted structured dataset, or the fine-tuned checkpoints will be released; providing these would substantially strengthen reproducibility, which is especially important given the discrepancies noted above.
Circularity Check
Clarity metric and the r=0.98 clarity–performance correlation reduce to the definition being placed in the prompt; the 45.8% vs 33.2% Graph2Tac comparison is external and not circular.
-
self definitional
[Section 4.1 'Experimental Design' with Section 5.3 'From Extracted Data to Structured Reasoning' (Table 1)]
"For example, when evaluating clarity in the context of structured prompts(which include concepts like nat, plus, and eq), we might ask: 'Given the following structural proof context: [full structural prompt], please provide the strict Coq definition of the concept plus.' ... For each referenced concept(examples in Appendix B): Origin: Source code definition; Internal: Kernel representation; Intuition: Natural language explanation."
In the Complete Information condition, the structured prompt already contains the queried concept's Origin/Internal/Intuition definitions. Asking the model to 'provide the strict Coq definition of plus' after that definition has been inserted into the prompt turns the clarity probe into a copying task. The improvement from 44.5% (No Context) to 82.3% (Complete Information) is therefore built into the input rather than evidence of an independent comprehension construct; the paper's claim that structured context improves clarity is true by construction.
-
renaming known result
[Section 7.2.3 'Clarity-Performance Correlation' (Table 3)]
"The correlation analysis reveals a remarkably strong linear relationship (correlation coefficient r = 0.98) between understanding and reasoning performance. As understanding scores increase from 44.5% to 82.3%, theorem proving success rates improve proportionally from 21% to 45%."
The five points in Table 3 are ordered by how much definitional content is placed in the prompt. That same single manipulation mechanically raises the clarity score (answer in prompt) and also helps proof search, so the near-perfect correlation is a monotone artifact of the experimental design. The paper renames 'adding definitions/context helps' as 'clarity improves reasoning' and presents this restatement as independent confirmation of its central hypothesis.
full rationale
The main Graph2Tac comparison is external and not circular: the 45.8% success rate is measured against an external baseline (Graph2Tac 33.2%) and does not depend on the clarity metric, so the theorem-proving performance claim retains independent content. However, the paper's conceptual contribution—that a measurable 'clarity' construct improves reasoning—is partially circular. The clarity score is defined by asking the model to reproduce definitions that the enriched prompt already contains, and the r=0.98 correlation then tracks the same manipulation that drives both the clarity score and proof success. The self-citations [38,39] are present but are not the load-bearing reduction; the reduction is the answer-in-prompt design of the clarity probe. The dataset-size discrepancy (1,386 vs 1,300) and the unstated exclusion of 'admit' are correctness/soundness concerns, not circularity, and do not change this score.
Assumptions & free parameters
free parameters (5)
- Maximum proof depth D =
15
- Beam width B =
3
- Maximum retries R =
3
- Number of tactic candidates per state =
10
- Public notebook cache size =
15
assumptions (3)
- domain assumption The LLM judge accurately evaluates the semantic correctness of Coq definitions.
- domain assumption The extracted Coq kernel representation is a faithful and complete semantic ground truth for disambiguation.
- ad hoc to paper Proofs that use 'admit' or similar axiom-level shortcuts are not counted as successes, even though no such exclusion is stated.
Cite this review
Pith. "Pith review of Clarifying Before Reasoning: A Coq Prover with Structural Context." pith.science (2026). https://pith.science/paper/7F4MJR56
@misc{pith2026250702541,
author = {Pith},
title = {Pith review of: Clarifying Before Reasoning: A Coq Prover with Structural Context},
year = {2026},
howpublished = {\url{https://pith.science/paper/7F4MJR56}},
note = {Machine review of arXiv:2507.02541}
}
abstract
In this work, we investigate whether improving task clarity can enhance reasoning ability of large language models, focusing on theorem proving in Coq. We introduce a concept-level metric to evaluate task clarity and show that adding structured semantic context to the standard input used by modern LLMs, leads to a 1.85$\times$ improvement in clarity score (44.5\%~$\rightarrow$~82.3\%). Using the general-purpose model \texttt{DeepSeek-V3}, our approach leads to a 2.1$\times$ improvement in proof success (21.8\%~$\rightarrow$~45.8\%) and outperforms the previous state-of-the-art \texttt{Graph2Tac} (33.2\%). We evaluate this on 1,386 theorems randomly sampled from 15 standard Coq packages, following the same evaluation protocol as \texttt{Graph2Tac}. Furthermore, fine-tuning smaller models on our structured data can achieve even higher performance (48.6\%). Our method uses selective concept unfolding to enrich task descriptions, and employs a Planner--Executor architecture. These findings highlight the value of structured task representations in bridging the gap between understanding and reasoning.
Figures
Reference graph
Works this paper leans on
-
[1]
Thinking fast and slow with deep learning and tree search
Thomas Anthony, Zheng Tian, and David Barber. Thinking fast and slow with deep learning and tree search. Advances in neural information processing systems, 30, 2017
2017
-
[2]
Serapi: Machine-friendly, data-centric serialization for coq
Emilio Jesús Gallego Arias. Serapi: Machine-friendly, data-centric serialization for coq. 2016
work page 2016
-
[3]
Llemma: An open language model for mathematics
Zhangir Azerbayev, Hailey Schoelkopf, Keiran Paster, Marco Dos Santos, Stephen McAleer, Albert Q Jiang, Jia Deng, Stella Biderman, and Sean Welleck. Llemma: An open language model for mathematics. arXiv preprint arXiv:2310.10631, 2023
-
[4]
The tactician: A seamless, interac- tive tactic learner and prover for coq
Lasse Blaauwbroek, Josef Urban, and Herman Geuvers. The tactician: A seamless, interac- tive tactic learner and prover for coq. In International Conference on Intelligent Computer Mathematics, pages 271–277. Springer, 2020
work page 2020
-
[5]
Haskell B. Curry. Functionality in combinatory logic. Proceedings of the National Academy of Sciences, 20(11):584–590, 1934
work page 1934
-
[6]
The lean theorem prover (system description)
Leonardo De Moura, Soonho Kong, Jeremy Avigad, Floris Van Doorn, and Jakob von Raumer. The lean theorem prover (system description). In Automated Deduction-CADE-25: 25th Inter- national Conference on Automated Deduction, Berlin, Germany, August 1-7, 2015, Proceedings 25, pages 378–388. Springer, 2015
work page 2015
-
[7]
Baldur: Whole-proof generation and repair with large language models
Emily First, Markus N Rabe, Talia Ringer, and Yuriy Brun. Baldur: Whole-proof generation and repair with large language models. In Proceedings of the 31st ACM Joint European Software 19 Engineering Conference and Symposium on the Foundations of Software Engineering, pages 1229–1241, 2023
work page 2023
-
[8]
Enhancing Formal Theorem Proving: A Comprehensive Dataset for Training AI Models on Coq Code
Andreas Florath. Enhancing formal theorem proving: a comprehensive dataset for training ai models on coq code. arXiv preprint arXiv:2403.12627, 2024
work page Pith review arXiv 2024
Show all 41 references
-
[9]
Proof artifact co-training for theorem proving with language models
Jesse Michael Han, Jason Rute, Yuhuai Wu, Edward W Ayers, and Stanislas Polu. Proof artifact co-training for theorem proving with language models. arXiv preprint arXiv:2102.06203, 2021
2021 arXiv
-
[10]
The formulae-as-types notion of construction
William Alvin Howard. The formulae-as-types notion of construction. In Haskell Curry, Hindley B., Seldin J. Roger, and P. Jonathan, editors, To H. B. Curry: Essays on Combinatory Logic, Lambda Calculus, and Formalism. Academic Press, 1980
1980
-
[11]
Deepmath-deep sequence models for premise selection
Geoffrey Irving, Christian Szegedy, Alexander A Alemi, Niklas Eén, François Chollet, and Josef Urban. Deepmath-deep sequence models for premise selection. Advances in neural information processing systems, 29, 2016
2016
-
[12]
Thor: Wielding hammers to integrate language models and automated theorem provers
Albert Qiaochu Jiang, Wenda Li, Szymon Tworkowski, Konrad Czechowski, Tomasz Odrzygó´ zd´ z, Piotr Miło´s, Yuhuai Wu, and Mateja Jamnik. Thor: Wielding hammers to integrate language models and automated theorem provers. Advances in Neural Information Processing Systems, 35:836...
2022
-
[13]
Cobblestone: Iterative automation for formal verification
Saketh Ram Kasibatla, Arpan Agarwal, Yuriy Brun, Sorin Lerner, Talia Ringer, and Emily First. Cobblestone: Iterative automation for formal verification. arXiv preprint arXiv:2410.19940, 2024
2024 arXiv
-
[14]
Coqpilot, a plugin for llm-based generation of proofs
Andrei Kozyrev, Gleb Solovev, Nikita Khramov, and Anton Podkopaev. Coqpilot, a plugin for llm-based generation of proofs. In Proceedings of the 39th IEEE/ACM International Conference on Automated Software Engineering, pages 2382–2385, 2024
2024
-
[15]
Hypertree proof search for neural theorem proving
Guillaume Lample, Timothee Lacroix, Marie-Anne Lachaux, Aurelien Rodriguez, Amaury Hayat, Thibaut Lavril, Gabriel Ebner, and Xavier Martinet. Hypertree proof search for neural theorem proving. Advances in neural information processing systems, 35:26337–26349, 2022
2022
-
[16]
Lean-star: Learning to interleave thinking and proving
Haohan Lin, Zhiqing Sun, Sean Welleck, and Yiming Yang. Lean-star: Learning to interleave thinking and proving. arXiv preprint arXiv:2407.10040, 2024
2024 arXiv
-
[17]
Goedel-prover: A frontier model for open-source automated theorem proving
Yong Lin, Shange Tang, Bohan Lyu, Jiayun Wu, Hongzhou Lin, Kaiyu Yang, Jia Li, Mengzhou Xia, Danqi Chen, Sanjeev Arora, et al. Goedel-prover: A frontier model for open-source automated theorem proving. arXiv preprint arXiv:2502.07640, 2025
2025 arXiv
-
[18]
Deepseek-v3 technical report
Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, et al. Deepseek-v3 technical report. arXiv preprint arXiv:2412.19437, 2024
2024 arXiv
-
[19]
Proof automation with large language models
Minghai Lu, Benjamin Delaware, and Tianyi Zhang. Proof automation with large language models. In Proceedings of the 39th IEEE/ACM International Conference on Automated Software Engineering, pages 1509–1520, 2024
2024
-
[20]
Magnushammer: A transformer-based approach to premise selection
Maciej Mikuła, Szymon Tworkowski, Szymon Antoniak, Bartosz Piotrowski, Albert Qiaochu Jiang, Jin Peng Zhou, Christian Szegedy, Łukasz Kuci ´nski, Piotr Miło ´s, and Yuhuai Wu. Magnushammer: A transformer-based approach to premise selection. arXiv preprint arXiv:2303.04488, 2023
2023 arXiv
-
[21]
The lean 4 theorem prover and programming language
Leonardo de Moura and Sebastian Ullrich. The lean 4 theorem prover and programming language. In Automated Deduction–CADE 28: 28th International Conference on Automated Deduction, Virtual Event, July 12–15, 2021, Proceedings 28, pages 625–635. Springer, 2021
2021
-
[22]
Apollo: Automated llm and lean collaboration for advanced formal reasoning
Azim Ospanov and Roozbeh Yousefzadeh. Apollo: Automated llm and lean collaboration for advanced formal reasoning. arXiv preprint arXiv:2505.05758, 2025
2025
-
[23]
Isabelle: A generic theorem prover
Lawrence C Paulson. Isabelle: A generic theorem prover. Springer, 1994. 20
1994
-
[24]
Formal mathematics statement curriculum learning.arXiv preprint arXiv:2202.01344, 2022
Stanislas Polu, Jesse Michael Han, Kunhao Zheng, Mantas Baksys, Igor Babuschkin, and Ilya Sutskever. Formal mathematics statement curriculum learning.arXiv preprint arXiv:2202.01344, 2022
2022 arXiv
-
[25]
Graph2tac: Learning hierarchical representations of math concepts in theorem proving
Jason Rute, Miroslav Olšák, Lasse Blaauwbroek, Fidel Ivan Schaposnik Massolo, Jelle Piepen- brock, and Vasily Pestun. Graph2tac: Learning hierarchical representations of math concepts in theorem proving. 2024
2024
-
[26]
A language-agent approach to formal theorem-proving
Amitayush Thakur, Yeming Wen, and Swarat Chaudhuri. A language-agent approach to formal theorem-proving. 2023
2023
-
[27]
The Coq Development Team. Coq
-
[28]
Kimina-prover preview: Towards large formal reasoning models with reinforcement learning
Haiming Wang, Mert Unsal, Xiaohan Lin, Mantas Baksys, Junqi Liu, Marco Dos Santos, Flood Sung, Marina Vinyes, Zhenzhe Ying, Zekai Zhu, Jianqiao Lu, Hugues de Saxcé, Bolton Bailey, Chendong Song, Chenjun Xiao, Dehao Zhang, Ebony Zhang, Frederick Pu, Han Zhu, Jiawei Liu, Jonas B...
2025 arXiv
-
[29]
Lego-prover: Neural theorem proving with growing libraries
Haiming Wang, Huajian Xin, Chuanyang Zheng, Lin Li, Zhengying Liu, Qingxing Cao, Yinya Huang, Jing Xiong, Han Shi, Enze Xie, et al. Lego-prover: Neural theorem proving with growing libraries. arXiv preprint arXiv:2310.00656, 2023
-
[30]
Ma-lot: Multi-agent lean-based long chain-of-thought reasoning enhances formal theorem proving
Ruida Wang, Rui Pan, Yuxin Li, Jipeng Zhang, Yizhen Jia, Shizhe Diao, Renjie Pi, Junjie Hu, and Tong Zhang. Ma-lot: Multi-agent lean-based long chain-of-thought reasoning enhances formal theorem proving. arXiv preprint arXiv:2503.03205, 2025
2025 arXiv
-
[31]
Theoremllama: Transforming general-purpose llms into lean4 experts
Ruida Wang, Jipeng Zhang, Yizhen Jia, Rui Pan, Shizhe Diao, Renjie Pi, and Tong Zhang. Theoremllama: Transforming general-purpose llms into lean4 experts. arXiv preprint arXiv:2407.03203, 2024
2024 arXiv
-
[32]
Llmstep: Llm proofstep suggestions in lean
Sean Welleck and Rahul Saha. Llmstep: Llm proofstep suggestions in lean. arXiv preprint arXiv:2310.18457, 2023
2023 arXiv
-
[33]
Autoformalization with large language models
Yuhuai Wu, Albert Qiaochu Jiang, Wenda Li, Markus Rabe, Charles Staats, Mateja Jamnik, and Christian Szegedy. Autoformalization with large language models. Advances in Neural Information Processing Systems, 35:32353–32368, 2022
2022
-
[34]
Internlm2
Zijian Wu, Suozhi Huang, Zhejian Zhou, Huaiyuan Ying, Jiayu Wang, Dahua Lin, and Kai Chen. Internlm2. 5-stepprover: Advancing automated theorem proving via expert iteration on large-scale lean problems. arXiv preprint arXiv:2410.15700, 2024
-
[35]
Deepseek-prover-v1
Huajian Xin, ZZ Ren, Junxiao Song, Zhihong Shao, Wanjia Zhao, Haocheng Wang, Bo Liu, Liyue Zhang, Xuan Lu, Qiushi Du, et al. Deepseek-prover-v1. 5: Harnessing proof assistant feed- back for reinforcement learning and monte-carlo tree search. arXiv preprint arXiv:2408.08152, 2024
2024 arXiv
-
[36]
Automated discovery of tactic libraries for interactive theorem proving
Yutong Xin, Jimmy Xin, Gabriel Poesia, Noah Goodman, Qiaochu Chen, and Isil Dillig. Automated discovery of tactic libraries for interactive theorem proving. arXiv preprint arXiv:2503.24036, 2025
2025 arXiv
-
[37]
Leandojo: Theorem proving with retrieval-augmented language models
Kaiyu Yang, Aidan Swope, Alex Gu, Rahul Chalamala, Peiyang Song, Shixing Yu, Saad Godil, Ryan J Prenger, and Animashree Anandkumar. Leandojo: Theorem proving with retrieval-augmented language models. Advances in Neural Information Processing Systems, 36:21573–21612, 2023
2023
-
[38]
Succinct representations for concepts
Yang Yuan. Succinct representations for concepts. arXiv preprint arXiv:2303.00446, 2023
2023 arXiv
-
[39]
Autonomous data selection with language models for mathematical texts
Yifan Zhang, Yifan Luo, Yang Yuan, and Andrew C Yao. Autonomous data selection with language models for mathematical texts. ICLR 2024 Workshop on Navigating and Addressing Data Problems for Foundation Models, 2024. 21 A Technical Implementation Details This part provides detai...
2024
-
[40]
info ": [
Request more i n f o r m a t i o n about sp eci fi c co nc ep ts / tactics m e n t i o n e d above Your re sp ons e must be in this format : {{ " info ": [" c o n c e p t _ n a m e 1 " , " c o n c e p t _ n a m e 2 " , " tactic1 " , " tactic2 " , ...] }}
-
[41]
tactic
Suggest a list of up to 10 tactics to try - prefer single atomic tactics over co mp oun d ,→ ones unless the c o m b i n a t i o n is highly c o n f i d e n t . I will provide the compiler ’ s ,→ re sp on se for each Your re sp ons e must be in this format : {{ tactics : [ {{"...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.