REVIEW 3 major objections 4 minor 51 references
Toward Structured Knowledge Reasoning: Contrastive Retrieval-Augmented Generation on Experience
T0 review · 3 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read CoRE, a contrastive retrieval framework with MCTS-built experience memory, lifts structured knowledge reasoning by 3.44% on Text-to-SQL and 4.24% on TableQA.
desk verdict CoRE is a plausible and useful contrastive-RAG framework for structured reasoning, but the unvalidated self-generated reward labels mean the headline gains need a targeted ablation before I would trust the mechanism. 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 object is the Experience Memory: a set of $\langle q, a, r \rangle$ triples built by Monte Carlo Tree Search, where $q$ is a decomposed sub-question, $a$ is its answer, and $r$ is a reward label obtained by back-propagating the generator's self-evaluation (the answer to 'Is this reasoning step correct?') along successful and failed trajectories. Two mechanisms ride on it: the Retriever, which ranks stored cases by semantic similarity and then merges similarity rank with reward rank to split them into positives and negatives, and the Contrastive Thinker, which turns those examples into an in-context prompt. Together they replace a fixed few-shot demonstration set with a dynamic, contrastive one, and the reward labels are what make the positive/negative split possible.
What would settle it
Run the same CoRE pipeline on a fixed set of queries but replace the reward labels with random draws before re-ranking the retrieved cases; if accuracy does not fall to roughly the level of the baseline with random examples, the reward-based contrastive ordering is not carrying the claimed effect. A stronger version reverses the rewards so high-reward cases are shown as failures and low-reward cases as successes; the method should degrade noticeably if the reward signal is doing the work.
Extended reading notes
Core claim
The paper's central claim is that the bottleneck in structured knowledge reasoning is the reasoning step itself, and that reasoning can be improved by retrieving experience rather than raw documents. CoRE builds a memory whose entries are decomposed question-answer pairs with reward labels, produced by MCTS rollouts that expand, simulate, and back-propagate LLM-generated sub-questions. When a new query arrives, the framework retrieves the top-k entries by semantic similarity, re-ranks them by reward so high-reward cases become positive examples and low-reward cases become negative examples, and packages both into the prompt through a Contrastive Thinker that instructs the generator to follow the successful cases and avoid the failed ones. The paper reports execution-accuracy gains of 3.5 to 5.9 points on the Bird Text-to-SQL benchmark across baselines and table-reasoning accuracy gains of 1.7 to 6.6 points on WikiTQ and FinQA, with the largest relative improvements concentrated on hard questions.
Load-bearing premise
The method assumes the generator's own yes/no self-evaluation of each reasoning step is accurate enough to give the memory entries trustworthy reward labels and to rank retrieved positives above negatives.
Editorial extensions
If this is right
- Any existing Text-to-SQL or table-QA system that relies on fixed few-shot prompts can be upgraded by plugging in CoRE's retriever and memory, so the gains transfer across different base models without fine-tuning.
- Because the largest gains appear on the hardest queries, CoRE is most valuable where current systems fail most often, such as multi-join SQL and multi-step table arithmetic.
- The paper's ablations show that dynamically retrieved positive and negative examples outperform fixed examples, implying example selection matters more than example count, and that failed attempts help only when paired with a success to imitate.
- CoRE supports multi-turn and bootstrapped prompting, so under tight token budgets the contrastive signal can be delivered across turns, and repeated CoRE applications can refine answers when latency permits.
- Experience Memory is built once and reused, so the offline MCTS cost is amortized, and retrieval plus prompt construction at inference stays under about 60 ms per query.
Reading between the lines
- Extension: the same Experience Memory could be reused across tasks that share schemas or domains, giving a new database a cold-start bank of reasoning cases without rebuilding from scratch.
- Extension: because each entry carries a per-step reward, the memory is a ready-made curriculum signal that could be used to target weak steps or to create synthetic fine-tuning data for smaller models that cannot run MCTS themselves.
- Extension: the contrastive re-ranking mechanism should transfer to other structured formats, such as knowledge graphs or API schemas, wherever a semantic retriever and a scalar quality signal are available.
- Extension: a testable design choice is whether the self-evaluation reward can be replaced or augmented by execution feedback on SQL or by answer verification on tables, which would likely make both the memory and the re-ranking more trustworthy.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces CoRE, a training-free contrastive retrieval-augmented generation framework for structured knowledge reasoning. CoRE uses Monte Carlo Tree Search with self-evaluation rewards to build an Experience Memory of successful and failed reasoning trajectories, then retrieves and re-ranks these cases as positive and negative exemplars to prompt an LLM. Experiments on Bird (Text-to-SQL), WikiTQ, and FinQA (TableQA) report average gains of 3.44% and 4.24% over baselines, with larger gains on more challenging questions and one explicitly reported negative result (DAIL-SQL with self-consistency).
Significance. If the reported gains hold, CoRE is a simple, plug-and-play method that improves structured knowledge reasoning without fine-tuning, and the public code release supports reproducibility. The paper honestly reports a negative result and includes a systematic ablation design across 0/1/2-shot settings. However, the central mechanism relies on unvalidated self-generated reward labels, and the absence of significance testing leaves the modest average gains indistinguishable from noise. The framework and its qualitative claims are worth considering, but additional validation is needed before the performance advantage can be accepted.
major comments (3)
- [§3.1, §3.2, §4.2] The reward labels that control both Experience Memory construction and contrastive re-ranking are self-evaluations produced by the generator itself (r2 = G('Yes' | q_k, prompt) in §3.1, stored as Q-values in §4.2). These labels determine which entries are retrieved and ranked as positive or negative in §3.2, so any bias or miscalibration in self-evaluation propagates directly into the exemplar ordering. The paper reports no validation of r2 or of the resulting Q-values against actual step/answer correctness, and no experiment isolates the contribution of these rewards. Please add a calibration analysis (e.g., correlation between reward labels and success on a held-out sample) and an ablation that replaces the reward labels with random or similarity-only ranks to test whether the reported gains actually depend on the self-evaluation signal.
- [Tables 1–4] All results are reported as single point estimates with no error bars, confidence intervals, or significance tests. For example, the WikiTQ/StructGPT gain is 1.7 points; without variance estimates this is not distinguishable from normal run-to-run variation. Given that the headline claims are average gains of 3.44% and 4.24%, please provide standard deviations over repeated runs (or bootstrap confidence intervals) and, where appropriate, paired significance tests across baselines.
- [Tables 3 and 4, §4.4] The ablation tables are unreadable as printed: the symbols denoting fixed examples, positive cases, and negative cases are missing, and the column mapping is unclear (e.g., Table 3's '2-shot |' line shows multiple values without clear column headers). The text claims that contrastive ICL outperforms positive-positive combinations and that 'only using negative examples without pointing out the mistakes would harm performance,' but these claims cannot be verified from the current tables. Please reconstruct the tables with explicit textual column labels (e.g., 'fixed', 'positive', 'negative', 'positive+negative', 'two-round positive+negative') so each value can be mapped to a condition.
minor comments (4)
- [Throughout] The model name is misspelled as 'LlaMA-3'; it should be 'Llama-3'.
- [References] Lewis et al. 2020a and 2020b refer to the same paper, and Yan et al. 2024a and 2024b also refer to the same work; duplicate entries should be consolidated.
- [Abstract and §4.3, Figure 4] The claimed '17.2% and 8.2%' improvements on challenging tasks reference Figure 4, but the figure is not described and the definition of 'challenging' (e.g., Bird difficulty levels or question complexity thresholds) is not stated. Please specify how these percentages are computed.
- [§4.2] The statement that the Experience Memory shows 'increased diversity and domain coverage' is not supported by the presented evidence; Figure 3 is a histogram of reward values, not a diversity or coverage metric. Please provide quantitative measures such as example overlap, schema coverage, or distinct reasoning patterns.
Circularity Check
CoRE's headline gains are measured against external gold dev labels; self-generated reward labels affect retrieval quality but do not define the final accuracy, so no circular reduction is exhibited.
full rationale
CoRE is an empirical retrieval-augmented prompting system; its central claim is a measured end-to-end accuracy gain on held-out dev sets (Tables 1–2, §4.1–4.3) with external gold answers (EX on Bird, accuracy on WikiTQ/FinQA). The Experience Memory is built from training data via MCTS (§3.1, §4.2), and retrieval selects contrastive examples by similarity and reward labels; no parameter is fitted to the target dev labels, and no output quantity is defined to equal an input quantity by construction. The reward labels r2 = G('Yes'|q_k, prompt) are self-generated, so retrieval quality depends on an unvalidated calibration of the generator's self-judgment; this is an internal robustness concern—and the appended Limitation section explicitly acknowledges dependence on memory coverage and grounding accuracy—rather than a circular reduction, because the final evaluation is computed against gold labels. Self-citations (Gu et al. 2024a; Xie et al. 2023/2024; Liu et al. 2025) are used as background or component descriptions, not as premises that force the reported gains; no uniqueness theorem or fitted prediction is invoked. Therefore the derivation chain is self-contained against external benchmarks and no circular step is exhibitable.
Assumptions & free parameters
free parameters (7)
- MCTS exploration weight w =
0.5
- Reward exponent alpha =
0.5
- Candidate sub-questions d =
4
- Roll-outs N =
10
- Depth limit L =
5
- Sampling temperature =
0.8
- Qvalue visit threshold =
3
assumptions (5)
- domain assumption The self-evaluation reward r2 = G('Yes'|...) is a valid proxy for reasoning-step correctness.
- domain assumption MCTS with the simplified simulation policy generates diverse, useful reasoning trajectories.
- domain assumption Semantic similarity over natural-language descriptions of SQL ASTs is a good retrieval signal.
- domain assumption Contrastive in-context learning with one positive and one negative example improves structured reasoning.
- domain assumption The grounding phase (schema linking, evidence selection) is accurate enough for CoRE to be applied on top.
invented entities (1)
-
Experience Memory
Cite this review
Pith. "Pith review of Toward Structured Knowledge Reasoning: Contrastive Retrieval-Augmented Generation on Experience." pith.science (2026). https://pith.science/paper/CQH34LHT
@misc{pith2026250600842,
author = {Pith},
title = {Pith review of: Toward Structured Knowledge Reasoning: Contrastive Retrieval-Augmented Generation on Experience},
year = {2026},
howpublished = {\url{https://pith.science/paper/CQH34LHT}},
note = {Machine review of arXiv:2506.00842}
}
read the original abstract
Large language models (LLMs) achieve strong performance on plain text tasks but underperform on structured data like tables and databases. Potential challenges arise from their underexposure during pre-training and rigid text-to-structure transfer mechanisms. Unlike humans who seamlessly apply learned patterns across data modalities, LLMs struggle to infer implicit relationships embedded in tabular formats, especially in the absence of explicit structural guidance. To bridge this cognitive gap, we introduce Contrastive Retrieval-Augmented Generation on Experience (CoRE), a framework that builds experience memory representations and enhances generalization through contrastive In-Context Learning (ICL) to simulate human-like knowledge transfer. Experiments on Text-to-SQL and TableQA show CoRE significantly improves performance, achieving average gains of 3.44% and 4.24%, with up to 17.2% on challenging tasks. Our Monte Carlo Tree Search (MCTS)-generated Experience Memory expands training data 8-9x, enhancing diversity and domain coverage. This training-free and continual method propels LLMs toward structured knowledge expertise.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRING...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. 2023. Gpt-4 technical report. arXiv preprint arXiv:2303.08774
arXiv 2023
-
[4]
Akari Asai, Zeqiu Wu, Yizhong Wang, Avirup Sil, and Hannaneh Hajishirzi. 2023. Self-rag: Learning to retrieve, generate, and critique through self-reflection. arXiv preprint arXiv:2310.11511
arXiv 2023
-
[5]
Ding Chen, Shichao Song, Qingchen Yu, Zhiyu Li, Wenjin Wang, Feiyu Xiong, and Bo Tang. 2024. https://arxiv.org/abs/2401.03385 Grimoire is all you need for enhancing large language models . Preprint, arXiv:2401.03385
arXiv 2024
-
[6]
Zhiyu Chen, Wenhu Chen, Charese Smiley, Sameena Shah, Iana Borova, Dylan Langdon, Reema Moussa, Matt Beane, Ting-Hao Huang, Bryan Routledge, and William Yang Wang. 2021 a . Finqa: A dataset of numerical reasoning over financial data. Proceedings of EMNLP 2021
work page 2021
-
[7]
Zhiyu Chen, Wenhu Chen, Charese Smiley, Sameena Shah, Iana Borova, Dylan Langdon, Reema Moussa, Matt Beane, Ting-Hao Huang, Bryan Routledge, and William Yang Wang. 2021 b . Finqa: A dataset of numerical reasoning over financial data. Proceedings of EMNLP 2021
work page 2021
-
[8]
Yew Ken Chia, Guizhen Chen, Luu Anh Tuan, Soujanya Poria, and Lidong Bing. 2023. Contrastive chain-of-thought prompting. arXiv preprint arXiv:2311.09277
arXiv 2023
Show all 51 references
-
[9]
Ruomeng Ding, Chaoyun Zhang, Lu Wang, Yong Xu, Minghua Ma, Wei Zhang, Si Qin, Saravan Rajmohan, Qingwei Lin, and Dongmei Zhang. 2023. Everything of thoughts: Defying the law of penrose triangle for thought generation. arXiv preprint arXiv:2311.04254
2023 arXiv
-
[10]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. 2024. The llama 3 herd of models. arXiv preprint arXiv:2407.21783
2024 arXiv
-
[11]
Anders Ericsson and Robert Pool. 2016. Peak: Secrets from the new science of expertise. Random House
2016
-
[12]
Dawei Gao, Haibin Wang, Yaliang Li, Xiuyu Sun, Yichen Qian, Bolin Ding, and Jingren Zhou. 2023 a . Text-to-sql empowered by large language models: A benchmark evaluation. arXiv preprint arXiv:2308.15363
2023 arXiv
-
[13]
Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, and Haofen Wang. 2023 b . Retrieval-augmented generation for large language models: A survey. arXiv preprint arXiv:2312.10997
2023 arXiv
-
[14]
Jiawei Gu, Xuhui Jiang, Zhichao Shi, Hexiang Tan, Xuehao Zhai, Chengjin Xu, Wei Li, Yinghan Shen, Shengjie Ma, Honghao Liu, et al. 2024 a . A survey on llm-as-a-judge. arXiv preprint arXiv:2411.15594
2024 arXiv
-
[15]
Jiawei Gu, Zacc Yang, Chuanghao Ding, Rui Zhao, and Fei Tan. 2024 b . Cmr scaling law: Predicting critical mixture ratios for continual pre-training of language models. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 16143--16162
2024
-
[16]
Shibo Hao, Yi Gu, Haodi Ma, Joshua Jiahua Hong, Zhen Wang, Daisy Zhe Wang, and Zhiting Hu. 2023. Reasoning with language model is planning with world model. arXiv preprint arXiv:2305.14992
2023 arXiv
-
[17]
Gautier Izacard and Edouard Grave. 2021. https://doi.org/10.18653/v1/2021.eacl-main.74 Leveraging passage retrieval with generative models for open domain question answering . In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Li...
2021 doi
-
[18]
Jinhao Jiang, Kun Zhou, Zican Dong, Keming Ye, Wayne Xin Zhao, and Ji-Rong Wen. 2023. Structgpt: A general framework for large language model to reason over structured data. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, pages 9237--9251
2023
-
[19]
Nikhil Kandpal, Haikang Deng, Adam Roberts, Eric Wallace, and Colin Raffel. 2023. Large language models struggle to learn long-tail knowledge. In International Conference on Machine Learning, pages 15696--15707. PMLR
2023
-
[20]
Urvashi Khandelwal, Omer Levy, Dan Jurafsky, Luke Zettlemoyer, and Mike Lewis. 2020. Generalization through Memorization: Nearest Neighbor Language Models . In International Conference on Learning Representations (ICLR)
2020
-
[21]
Prannay Khosla, Piotr Teterwak, Chen Wang, Aaron Sarna, Yonglong Tian, Phillip Isola, Aaron Maschinot, Ce Liu, and Dilip Krishnan. 2020. Supervised contrastive learning. Advances in neural information processing systems, 33:18661--18673
2020
-
[22]
Jaehyung Kim, Jaehyun Nam, Sangwoo Mo, Jongjin Park, Sang-Woo Lee, Minjoon Seo, Jung-Woo Ha, and Jinwoo Shin. 2024. Sure: Summarizing retrievals using answer candidates for open-domain qa of llms. arXiv preprint arXiv:2404.13081
2024 arXiv
-
[23]
Aobo Kong, Shiwan Zhao, Hao Chen, Qicheng Li, Yong Qin, Ruiqi Sun, and Xin Zhou. 2023. https://arxiv.org/abs/2308.07702 Better zero-shot reasoning with role-play prompting . Preprint, arXiv:2308.07702
2023 arXiv
-
[24]
u ttler, Mike Lewis, Wen-tau Yih, Tim Rockt \
Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich K \"u ttler, Mike Lewis, Wen-tau Yih, Tim Rockt \"a schel, et al. 2020 a . Retrieval-augmented generation for knowledge-intensive nlp tasks. Advances in Neural Information P...
2020
-
[25]
u ttler, Mike Lewis, Wen-tau Yih, Tim Rockt \
Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich K \"u ttler, Mike Lewis, Wen-tau Yih, Tim Rockt \"a schel, et al. 2020 b . Retrieval-augmented generation for knowledge-intensive nlp tasks. Advances in Neural Information P...
2020
-
[26]
Jinyang Li, Binyuan Hui, Ge Qu, Binhua Li, Jiaxi Yang, Bowen Li, Bailin Wang, Bowen Qin, Ruiying Geng, Nan Huo, Xuanhe Zhou, Chenhao Ma, Guoliang Li, Kevin C. C. Chang, Fei Huang, Reynold Cheng, and Yongbin Li. 2023. https://arxiv.org/abs/2305.03111 Can llm already serve as a ...
2023 arXiv
-
[27]
Jinyang Li, Binyuan Hui, Ge Qu, Jiaxi Yang, Binhua Li, Bowen Li, Bailin Wang, Bowen Qin, Ruiying Geng, Nan Huo, et al. 2024. Can llm already serve as a database interface? a big bench for large-scale database grounded text-to-sqls. Advances in Neural Information Processing Systems, 36
2024
-
[28]
Hunter Lightman, Vineet Kosaraju, Yura Burda, Harri Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. 2023. Let's verify step by step. arXiv preprint arXiv:2305.20050
2023 arXiv
-
[29]
Chen Ling, Xujiang Zhao, Jiaying Lu, Chengyuan Deng, Can Zheng, Junxiang Wang, Tanmoy Chowdhury, Yun Li, Hejie Cui, Xuchao Zhang, et al. 2023. Domain specialization as the key to make large language models disruptive: A comprehensive survey. arXiv preprint arXiv:2305.18703
2023 arXiv
-
[30]
Geling Liu, Yunzhi Tan, Ruichao Zhong, Yuanzhen Xie, Lingchen Zhao, Qian Wang, Bo Hu, and Zang Li. 2025. https://aclanthology.org/2025.coling-main.654/ Solid- SQL : Enhanced schema-linking based in-context learning for robust text-to- SQL . In Proceedings of the 31st Internati...
2025
-
[31]
Nelson F Liu, Kevin Lin, John Hewitt, Ashwin Paranjape, Michele Bevilacqua, Fabio Petroni, and Percy Liang. 2024. Lost in the middle: How language models use long contexts. Transactions of the Association for Computational Linguistics, 12
2024
-
[32]
Hongyin Luo, Yung-Sung Chuang, Yuan Gong, Tianhua Zhang, Yoon Kim, Xixin Wu, Danny Fox, Helen Meng, and James Glass. 2023. Sail: Search-augmented instruction learning. arXiv preprint arXiv:2305.15225
2023 arXiv
-
[33]
Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. 2022. Training language models to follow instructions with human feedback. Advances in neural information processing systems, 3...
2022
-
[35]
Panupong Pasupat and Percy Liang. 2015 b . https://doi.org/10.3115/v1/P15-1142 Compositional semantic parsing on semi-structured tables . In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Na...
2015 doi
-
[36]
Mohammadreza Pourreza and Davood Rafiei. 2024. Din-sql: Decomposed in-context learning of text-to-sql with self-correction. Advances in Neural Information Processing Systems, 36
2024
-
[37]
Pranav Putta, Edmund Mills, Naman Garg, Sumeet Motwani, Chelsea Finn, Divyansh Garg, and Rafael Rafailov. 2024. Agent q: Advanced reasoning and learning for autonomous ai agents. arXiv preprint arXiv:2408.07199
2024 arXiv
-
[38]
Parth Sarthi, Salman Abdullah, Aditi Tuli, Shubh Khanna, Anna Goldie, and Christopher D Manning. 2024. Raptor: Recursive abstractive processing for tree-organized retrieval. arXiv preprint arXiv:2401.18059
2024 arXiv
-
[39]
Timo Schick, Jane Dwivedi-Yu, Roberto Dess \` , Roberta Raileanu, Maria Lomeli, Eric Hambro, Luke Zettlemoyer, Nicola Cancedda, and Thomas Scialom. 2024. Toolformer: Language models can teach themselves to use tools. Advances in Neural Information Processing Systems, 36
2024
-
[40]
Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik R Narasimhan, and Shunyu Yao. 2023. Reflexion: Language agents with verbal reinforcement learning. In Thirty-seventh Conference on Neural Information Processing Systems
2023
-
[41]
David Silver, Julian Schrittwieser, Karen Simonyan, Ioannis Antonoglou, Aja Huang, Arthur Guez, Thomas Hubert, Lucas Baker, Matthew Lai, Adrian Bolton, et al. 2017. Mastering the game of go without human knowledge. nature, 550(7676):354--359
2017
-
[42]
Yuan Sui, Mengyu Zhou, Mingjie Zhou, Shi Han, and Dongmei Zhang. 2024. Table meets llm: Can large language models understand structured table data? a benchmark and empirical study. In Proceedings of the 17th ACM International Conference on Web Search and Data Mining, pages 645--654
2024
-
[43]
Bing Wang, Changyu Ren, Jian Yang, Xinnian Liang, Jiaqi Bai, Qian-Wen Zhang, Zhao Yan, and Zhoujun Li. 2023. Mac-sql: Multi-agent collaboration for text-to-sql. arXiv preprint arXiv:2312.11242
2023 arXiv
-
[44]
Boshi Wang, Sewon Min, Xiang Deng, Jiaming Shen, You Wu, Luke Zettlemoyer, and Huan Sun. 2022. Towards understanding chain-of-thought prompting: An empirical study of what matters. arXiv preprint arXiv:2212.10001
2022 arXiv
-
[45]
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in Neural Information Processing Systems, 35:24824--24837
2022
-
[46]
Yuanzhen Xie, Xinzhou Jin, Tao Xie, Matrixmxlin Matrixmxlin, Liang Chen, Chenyun Yu, Cheng Lei, Chengxiang Zhuo, Bo Hu, and Zang Li. 2024. https://doi.org/10.18653/v1/2024.findings-acl.641 Decomposition for enhancing attention: Improving LLM -based text-to- SQL through workflo...
2024 doi
-
[47]
Yuanzhen Xie, Tao Xie, Mingxiong Lin, WenTao Wei, Chenglin Li, Beibei Kong, Lei Chen, Chengxiang Zhuo, Bo Hu, and Zang Li. 2023. Olagpt: Empowering llms with human-like problem-solving abilities. arXiv preprint arXiv:2305.16334
2023 arXiv
-
[48]
Zhengzhuo Xu, Bowen Qu, Yiyan Qi, Sinan Du, Chengjin Xu, Chun Yuan, and Jian Guo. 2024. Chartmoe: Mixture of expert connector for advanced chart understanding. arXiv preprint arXiv:2409.03277
2024 arXiv
-
[50]
Shi-Qi Yan, Jia-Chen Gu, Yun Zhu, and Zhen-Hua Ling. 2024 b . Corrective retrieval augmented generation. arXiv preprint arXiv:2401.15884
2024 arXiv
-
[51]
Yunhu Ye, Binyuan Hui, Min Yang, Binhua Li, Fei Huang, and Yongbin Li. 2023. Large language models are versatile decomposers: Decompose evidence and questions for table-based reasoning. arXiv preprint arXiv:2301.13808
2023 arXiv
-
[52]
Andrew Zhao, Daniel Huang, Quentin Xu, Matthieu Lin, Yong-Jin Liu, and Gao Huang. 2023. https://arxiv.org/abs/2308.10144 Expel: Llm agents are experiential learners . Preprint, arXiv:2308.10144
2023 arXiv
-
[53]
Huang, Jie Fu, Xiang Yue, and Wenhu Chen
Alex Zhuang, Ge Zhang, Tianyu Zheng, Xinrun Du, Junjie Wang, Weiming Ren, Stephen W. Huang, Jie Fu, Xiang Yue, and Wenhu Chen. 2024. https://arxiv.org/abs/2402.16671 Structlm: Towards building generalist models for structured knowledge grounding . Preprint, arXiv:2402.16671
2024 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.