REVIEW 4 major objections 6 minor 65 references
Learning Composable Chains-of-Thought
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A simple format change to chain-of-thought training data enables zero-shot composition of atomic reasoning skills in language models.
desk verdict Useful empirical paper with a clever format change that genuinely helps zero-shot composition, but the claimed chaining mechanism is untested and the 'zero-shot' label is a bit generous; needs revision, not rejection. 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 central mechanism is the Composable CoT data format. For each atomic task, training examples are split into two types: prefix examples of the form $(q, t^{\text{pre}})$ where $t^{\text{pre}} = <\text{prefix}> t a<\text{/prefix}>$, and suffix examples of the form $(q, t'_1 \ldots t'_{k-1}, t^{\text{suf}})$ where $t^{\text{suf}} = <\text{suffix}> t a<\text{/suffix}>$ and the $t'_i$ are random-letter proxy prefixes. The training objective maximizes $\log p_\theta(t^{\text{pre}}|q)$ on prefix examples and $\log p_\theta(t^{\text{suf}}|q, t'_{\text{pre}})$ on suffix examples, teaching the model to continue after an arbitrary preceding trace. At inference, the combined model generates a prefix trace, the pipeline appends a <suffix> tag, and generation continues, producing two atomic CoTs in one sequence.
What would settle it
Train a Composable CoT model on two atomic skills whose composition genuinely requires the output of the first skill as input to the second, then evaluate on test items where applying only the first skill yields a wrong answer; if the model's accuracy on those items is no higher than a standard CoT model trained with the same atomic data, the central claim is false.
Extended reading notes
Core claim
The paper claims that the standard CoT format teaches models to reproduce atomic reasoning patterns rather than to chain them, and that this can be fixed without compositional CoT annotations. By reformatting each atomic CoT example as either a prefix trace or a suffix trace that follows a random proxy prefix, the model learns to treat whatever trace precedes it as context and to continue with its own skill. When two such atomic models are combined via task-arithmetic merging or multitask learning, the combined model can at zero-shot produce one skill's trace followed by the other's, and rejection sampling fine-tuning on a small answer-only compositional set improves it further. The paper demonstrates this on string-operation compositions and on literary-plus-rhetorical language skill compositions.
Load-bearing premise
The approach assumes a compositional reasoning step can be represented as two independently learned CoT segments concatenated in a fixed order, with the second segment conditioned on the first only through the text that precedes it; the paper's own limitations note that only pairwise compositions are tested.
Editorial extensions
If this is right
- Within the same training-data budget, Composable CoT combined by model merging or multitask learning outperforms the corresponding standard CoT combinations on zero-shot compositional tasks.
- Zero-shot Composable CoT models sometimes match or beat supervised fine-tuning on compositional answer data, meaning the format itself, not compositional supervision, carries much of the benefit.
- Adding a small amount of answer-only compositional data through rejection sampling fine-tuning improves the combined model further and beats continued fine-tuning and multitask-learning baselines.
- Intrinsic evaluation shows Composable CoT models generate both atomic CoT patterns in a single response more often than standard CoT models, indicating the format increases genuine skill use rather than shortcut answers.
- The method requires only atomic CoT data and a small set of compositional answers, reducing the need for expensive compositional CoT annotations.
Reading between the lines
- An implication the paper leaves implicit is that the same prefix–suffix data augmentation could apply to any task pair with existing atomic CoT data, including code and symbolic reasoning, as long as the composition is sequential or pipeline-like.
- A natural extension is n-way composition, since the construction supports more than two tags; because the paper only tests pairs, whether the benefit persists with longer chains is an open empirical question.
- The random-letter proxy prefixes likely teach the model to ignore the content of the preceding trace, so the format may help with compositions where the second skill only needs the first skill's answer, not its intermediate reasoning, and may be less suited to compositions requiring joint planning or backtracking.
- The instability of model merging on one setting (Concat + Mult) suggests that routing-based or sampling-based combination methods could preserve the format benefit more reliably than fixed linear merging.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Composable CoT, a modification of the chain-of-thought format used when fine-tuning LLMs on atomic reasoning tasks. Each atomic CoT is split into a ``<prefix>'' segment conditioned only on the question and a ``<suffix>'' segment trained to follow a proxy prefix, which in the main implementation is a string of random letters. The resulting atomic CoT models are combined either by task-arithmetic model merging or by multitask learning, and are evaluated zero-shot on compositional tasks that combine two atomic skills. The paper reports that these combined Composable CoT models outperform standard-CoT baselines on string operations and Skill-Mix, and that further rejection-sampling fine-tuning on a limited amount of answer-only compositional data improves performance beyond continued fine-tuning baselines. The central claim is that the Composable CoT format change, rather than additional compositional CoT supervision, enables zero-shot skill composition.
Significance. If validated, the paper would make a useful empirical contribution: it suggests a lightweight, format-level intervention that improves compositional generalization without compositional CoT labels, and it demonstrates that model merging and multitask learning are viable ways to combine atomic reasoning skills. The experiments are controlled, use two 7B base models and multiple tasks, include ablations, and the authors release code and data, which strengthens reproducibility. However, the significance is tempered by two unresolved issues: the proposed training construction does not clearly teach the suffix model to consume the prefix's intermediate output, and the zero-shot evaluation is partly undermined by validation-set tuning of merge weights. Both issues bear directly on the paper's central mechanism and on the strength of the zero-shot claim, so the current evidence is suggestive rather than conclusive.
major comments (4)
- [Section 3.1 and Appendix B] The suffix training objective in Section 3.1 optimizes p_theta(t_suf | q, t'_pre), but t'_pre is a random-letter proxy prefix that is independent of q and of the intermediate result needed for the composition. Because the model can minimize the suffix loss by simply ignoring t'_pre, the training procedure does not actually teach output-to-output chaining from the prefix to the suffix. The paper's central claim that Composable CoT ``enables'' compositional reasoning at inference time therefore needs stronger support. Concretely, the authors should provide an intervention experiment that verifies whether the suffix's generated output depends on the content of the prefix, for example by corrupting, removing, or replacing the generated prefix at inference time and measuring the resulting change in suffix accuracy. Without such a test, the observed gains could be attributed to the two-block tag structure prompting two consecutive CoT segments, rather than to genuine composition of the intermediate result.
- [Appendix F.4 and Table 1] The zero-shot claim is weakened by the hyperparameter selection procedure. For all model-merging methods, the scaling factors alpha and beta are chosen by sweeping over alpha in {0.1,...,0.9} with beta = 1 - alpha on a validation set for each task. If that validation set contains examples from the compositional task distribution, then the 'zero-shot' methods in Table 1 are not actually zero-shot with respect to compositional supervision, since the merge weights are tuned to the target task. The authors should clarify what the validation set contains, report the selected alpha/beta values, and provide an ablation with a fixed default (e.g., alpha=beta=1) to show that the conclusions are not an artifact of validation-set tuning.
- [Table 1 and Section 5.1] The claim that Composable CoT variants 'outperform all baselines on a range of settings' is too strong given the data in Table 1. In the Qwen 2.5-7B results, ComposableCoT-Merge obtains 19.2 EM on Concat + Last Letter while StandardCoT-Merge obtains 54.8, and on Concat + Mult ComposableCoT-Merge obtains 75.4 versus StandardCoT-Merge's 77.0. The paper does acknowledge one of these as an error case, but the accompanying text should systematically qualify the settings where the proposed method improves and where it does not, and the discussion should address why the format transfer fails in the Concat + Last Letter case beyond 'model merging can be unstable.'
- [Section 5.3 and Appendix H] The intrinsic evaluation in Table 3 only checks whether both atomic CoT patterns appear somewhere in the generated response; it does not check whether the suffix uses the prefix's result. The error cases in Appendix H.1 and H.3 are examples where the suffix repeats the prefix's computation or recomputes from the original question, which is exactly the failure mode the intrinsic metric cannot detect. The authors should add a quantitative measure of information flow, such as a masked-prefix evaluation or a test of whether the suffix's answer changes when the prefix's content is altered, to distinguish genuine chaining from two independent atomic computations in the same response.
minor comments (6)
- [Section 4] The atomic task name 'Letter concentation' contains a typo; it should be 'Letter concatenation.'
- [Appendix D.1] The text says 'the rhetorical and literay skills' with a typo; 'literay' should be 'literary.'
- [Table 8] The formatting of Table 8 is confusing: the first row appears to read 'StandardCoT-Merge 0 0' before the task labels in the following rows, making it unclear whether these are zero-training entries or a layout artifact. Please reformat the table so that the task names are clearly associated with each row.
- [Appendix G.1] The compositional training set size for Concat + Mult differs between Llama 2-7B (N=500) and Qwen 2.5-7B (N=100). This is explained in the text, but the cross-model comparison in Table 2 would be cleaner if the same data budget were used for both models.
- [Appendix D.2] The Skill-Mix evaluation relies entirely on GPT-4o-mini as a judge, but no agreement analysis with human raters or error analysis of the judge is reported. A small validation of the judge's reliability would strengthen the Skill-Mix results.
- [Section 7 and Limitations] The limitations paragraph appropriately notes that only pairwise compositions are tested, but given the method's motivating narrative of composing chains of arbitrary length, the paper should state more explicitly that the n>2 extension in Section 3.1 has not been empirically validated.
Circularity Check
No significant circularity: the central claims are empirical comparisons with controlled data budgets; RFT is filtered by external answer labels, and the only tuned quantities are hyperparameters selected on validation sets.
full rationale
The paper's contribution is a data-format modification and an empirical evaluation, not a derivation that reduces to its inputs. Composable CoT training constructs prefix and suffix objectives (Section 3.1) from the same atomic CoT data used by the standard-CoT baselines, and the compositional evaluation is on held-out tasks; the reported gains are comparative measurements rather than consequences of a fitted parameter being renamed a prediction. The rejection-sampling fine-tuning stage uses self-generated CoTs, but only those verified against external direct-answer labels are retained, so the bootstrap is anchored by outside supervision rather than by the model's own outputs being treated as ground truth. Model merging weights and learning rates are tuned on validation sets for each method, which is standard model selection and does not make the test predictions equal to training inputs. The paper contains several citations to the authors' prior work, but these appear in related-work or methodological references (e.g., LoFiT as an example of modular updates, CoT/no-CoT as an analysis) and are not load-bearing for the central claim. The reviewer's mechanistic concern about whether the suffix is ever trained to consume the prefix's output is a validity/falsifiability issue about the method's proposed mechanism, not a circularity: the paper's empirical comparisons would still be meaningful (or not) independently of that mechanism. No step in the paper's chain of reasoning equates a predicted quantity to an input quantity by construction.
Assumptions & free parameters
free parameters (5)
- merge scale alpha =
varies per task; swept over {0.1,...,0.9}
- learning rate =
per method and task, from {5e-3,1e-3,5e-4,1e-4,5e-5}
- number of CoT tags n =
2
- proxy prefix content =
random letters
- RFT sample count and temperature =
10 samples, T=0.9
assumptions (5)
- domain assumption Atomic tasks are basic: each cannot be reduced into a combination of others.
- domain assumption A compositional task T(i,j) is a simple function g(Ti,Tj), either composite (Ti composed with Tj) or concatenation (Ti plus Tj).
- ad hoc to paper Training on random-letter proxy prefixes teaches the model to continue from arbitrary real prefix CoTs.
- domain assumption GPT-4o-mini grades Skill-Mix sentences consistently with the original rubric.
- domain assumption CoT traces of each atomic task come from a distribution distinct to that dataset.
Cite this review
Pith. "Pith review of Learning Composable Chains-of-Thought." pith.science (2026). https://pith.science/paper/WIUE2X76
@misc{pith2026250522635,
author = {Pith},
title = {Pith review of: Learning Composable Chains-of-Thought},
year = {2026},
howpublished = {\url{https://pith.science/paper/WIUE2X76}},
note = {Machine review of arXiv:2505.22635}
}
read the original abstract
A common approach for teaching large language models (LLMs) to reason is to train on chain-of-thought (CoT) traces of in-distribution reasoning problems, but such annotated data is costly to obtain for every problem of interest. We want reasoning models to generalize beyond their training distribution, and ideally to generalize compositionally: combine atomic reasoning skills to solve harder, unseen reasoning tasks. We take a step towards compositional generalization of reasoning skills when addressing a target compositional task that has no labeled CoT data. We find that simply training models on CoT data of atomic tasks leads to limited generalization, but minimally modifying CoT formats of constituent atomic tasks to be composable can lead to improvements. We can train "atomic CoT" models on the atomic tasks with Composable CoT data and combine them with multitask learning or model merging for better zero-shot performance on the target compositional task. Such a combined model can be further bootstrapped on a small amount of compositional data using rejection sampling fine-tuning (RFT). Results on string operations and natural language skill compositions show that training LLMs on Composable CoT outperforms multitask learning and continued fine-tuning baselines within a given training data budget.
Figures
Reference graph
Works this paper leans on
-
[1]
Compositional reasoning in early childhood
Steven Piantadosi and Richard Aslin. Compositional reasoning in early childhood. InPloS one, volume 11, September 2016
work page 2016
-
[2]
Denise M. Werchan, Anne G.E. Collins, Michael Joshua Frank, and Dima Amso. 8-month-old infants spontaneously learn and generalize hierarchical rules.Psychological Science, 26:805 – 815, 2015
work page 2015
-
[3]
Meta-learning to compositionally generalize
Henry Conklin, Bailin Wang, Kenny Smith, and Ivan Titov. Meta-learning to compositionally generalize. In Chengqing Zong, Fei Xia, Wenjie Li, and Roberto Navigli, editors,Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers),...
work page 2021
-
[4]
Hwang, Soumya Sanyal, Xiang Ren, Allyson Ettinger, Zaid Harchaoui, and Yejin Choi
Nouha Dziri, Ximing Lu, Melanie Sclar, Xiang Lorraine Li, Liwei Jiang, Bill Yuchen Lin, Sean Welleck, Peter West, Chandra Bhagavatula, Ronan Le Bras, Jena D. Hwang, Soumya Sanyal, Xiang Ren, Allyson Ettinger, Zaid Harchaoui, and Yejin Choi. Faith and fate: Limits of transformers on compositionality. InThirty-seventh Conference on Neural Information Proces...
work page 2023
-
[5]
DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z. F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, Aixin Liu, Bing Xue, Bingxuan Wang, Bochao Wu, Bei Feng, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, Damai D...
arXiv 2025
-
[6]
QwQ-32B: Embracing the Power of Reinforcement Learning, March 2025
Qwen Team. QwQ-32B: Embracing the Power of Reinforcement Learning, March 2025
2025
-
[7]
Easy-to-hard generalization: Scalable alignment beyond human supervision
Zhiqing Sun, Longhui Yu, Yikang Shen, Weiyang Liu, Yiming Yang, Sean Welleck, and Chuang Gan. Easy-to-hard generalization: Scalable alignment beyond human supervision. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
work page 2024
-
[8]
The unreasonable effectiveness of easy training data for hard tasks
Peter Hase, Mohit Bansal, Peter Clark, and Sarah Wiegreffe. The unreasonable effectiveness of easy training data for hard tasks. In Lun-Wei Ku, Andre Martins, and Vivek Srikumar, editors, Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 7002–7024, Bangkok, Thailand, August 2024. Associa...
work page 2024
Show all 65 references
-
[9]
Chi, Quoc V Le, and Denny Zhou
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. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors, Advances in...
2022
-
[10]
Large language models are zero-shot reasoners
Takeshi Kojima, Shixiang Shane Gu, Machel Reid, Yutaka Matsuo, and Yusuke Iwasawa. Large language models are zero-shot reasoners. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors,Advances in Neural Information Processing Systems, 2022
2022
-
[11]
s1: Simple test-time scaling.arXiv preprint arXiv:2501.19393, 2025
Niklas Muennighoff, Zitong Yang, Weijia Shi, Xiang Lisa Li, Li Fei-Fei, Hannaneh Hajishirzi, Luke Zettlemoyer, Percy Liang, Emmanuel Candès, and Tatsunori Hashimoto. s1: Simple test-time scaling.arXiv preprint arXiv:2501.19393, 2025
2025 arXiv
-
[13]
Merging Models with Fisher-Weighted Averaging
Michael S Matena and Colin Raffel. Merging Models with Fisher-Weighted Averaging. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors,Advances in Neural Information Processing Systems, 2022
2022
-
[14]
TIES-merging: Resolving interference when merging models
Prateek Yadav, Derek Tam, Leshem Choshen, Colin Raffel, and Mohit Bansal. TIES-merging: Resolving interference when merging models. InThirty-seventh Conference on Neural Informa- tion Processing Systems, 2023
2023
-
[15]
STaR: Bootstrapping Reasoning With Reasoning
Eric Zelikman, Yuhuai Wu, Jesse Mu, and Noah Goodman. STaR: Bootstrapping Reasoning With Reasoning. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors,Advances in Neural Information Processing Systems, 2022
2022
-
[16]
RAFT: Reward ranked finetuning for generative foundation model alignment.Transactions on Machine Learning Research, 2023
Hanze Dong, Wei Xiong, Deepanshu Goyal, Yihan Zhang, Winnie Chow, Rui Pan, Shizhe Diao, Jipeng Zhang, KaShun SHUM, and Tong Zhang. RAFT: Reward ranked finetuning for generative foundation model alignment.Transactions on Machine Learning Research, 2023
2023
-
[17]
Scaling relationship on learning mathematical reasoning with large language models
Zheng Yuan, Hongyi Yuan, Chengpeng Li, Guanting Dong, Keming Lu, Chuanqi Tan, Chang Zhou, and Jingren Zhou. Scaling relationship on learning mathematical reasoning with large language models. 2024. 11
2024
-
[18]
The unreliability of explanations in few-shot prompting for textual reasoning
Xi Ye and Greg Durrett. The unreliability of explanations in few-shot prompting for textual reasoning. InProceedings of NeurIPS, 2022
2022
-
[19]
SKILL-MIX: a flexible and expandable family of evaluations for AI models
Dingli Yu, Simran Kaur, Arushi Gupta, Jonah Brown-Cohen, Anirudh Goyal, and Sanjeev Arora. SKILL-MIX: a flexible and expandable family of evaluations for AI models. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[20]
Denny Zhou, Nathanael Schärli, Le Hou, Jason Wei, Nathan Scales, Xuezhi Wang, Dale Schuurmans, Claire Cui, Olivier Bousquet, Quoc V Le, and Ed H. Chi. Least-to-most prompting enables complex reasoning in large language models. InThe Eleventh International Conference on Learnin...
2023
-
[21]
OpenAI, :, Aaron Hurst, Adam Lerer, Adam P. Goucher, Adam Perelman, Aditya Ramesh, Aidan Clark, AJ Ostrow, Akila Welihinda, Alan Hayes, Alec Radford, Aleksander M ˛ adry, Alex Baker-Whitcomb, Alex Beutel, Alex Borzunov, Alex Carney, Alex Chow, Alex Kirillov, Alex Nichol, Alex ...
-
[22]
Can models learn skill composition from examples? InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
Haoyu Zhao, Simran Kaur, Dingli Yu, Anirudh Goyal, and Sanjeev Arora. Can models learn skill composition from examples? InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[23]
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, Dan Bikel, Lukas Blecher, Cristian Canton Ferrer, Moya Chen, Guillem Cucurull, David Esiobu, Jude Fernandes, Jeremy Fu, W...
2023 arXiv
-
[24]
Qwen2.5 technical report
An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, Huan Lin, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Yang, Jiaxi Yang, Jingren Zhou, Junyang Lin, Kai Dang, Keming Lu, Keqin Bao, Kexin Yang, Le Yu, Me...
2025 arXiv
-
[25]
LoRA: Low-rank adaptation of large language models
Edward J Hu, yelong shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. In International Conference on Learning Representations, 2022
2022
-
[26]
From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step .arXiv preprint arXiv:2405.14838, 2024
Yuntian Deng, Yejin Choi, and Stuart Shieber. From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step .arXiv preprint arXiv:2405.14838, 2024
2024 arXiv
-
[27]
Training large language models to reason in a continuous latent space.arXiv preprint arXiv:2412.06769, 2024
Shibo Hao, Sainbayar Sukhbaatar, DiJia Su, Xian Li, Zhiting Hu, Jason Weston, and Yuandong Tian. Training large language models to reason in a continuous latent space.arXiv preprint arXiv:2412.06769, 2024
2024 arXiv
-
[28]
Fodor and Zenon W
Jerry A. Fodor and Zenon W. Pylyshyn. Connectionism and cognitive architecture: A critical analysis.Cognition, 28:3–71, 1988. 13
1988
-
[29]
Lake and Marco Baroni
Brenden M. Lake and Marco Baroni. Human-like systematic generalization through a meta- learning neural network.Nature, 623:115 – 121, 2023
2023
-
[30]
Limits of transformer language models on learning to compose algorithms
Jonathan Thomm, Giacomo Camposampiero, Aleksandar Terzic, Michael Hersche, Bernhard Schölkopf, and Abbas Rahimi. Limits of transformer language models on learning to compose algorithms. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[31]
COGS: A compositional generalization challenge based on semantic interpretation
Najoung Kim and Tal Linzen. COGS: A compositional generalization challenge based on semantic interpretation. In Bonnie Webber, Trevor Cohn, Yulan He, and Yang Liu, editors, Proceedings of the 2020 Conference on Empirical Methods in Natural Language Process- ing (EMNLP), pages ...
2020
-
[32]
Generalization without systematicity: On the compositional skills of sequence-to-sequence recurrent networks
Brenden Lake and Marco Baroni. Generalization without systematicity: On the compositional skills of sequence-to-sequence recurrent networks. In Jennifer Dy and Andreas Krause, edi- tors,Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedi...
2018
-
[33]
Learning to recombine and resample data for compositional generalization
Ekin Akyürek, Afra Feyza Akyürek, and Jacob Andreas. Learning to recombine and resample data for compositional generalization. InInternational Conference on Learning Representations, 2021
2021
-
[34]
Compositional semantic parsing with large language models
Andrew Drozdov, Nathanael Schärli, Ekin Akyürek, Nathan Scales, Xinying Song, Xinyun Chen, Olivier Bousquet, and Denny Zhou. Compositional semantic parsing with large language models. InThe Eleventh International Conference on Learning Representations, 2023
2023
-
[35]
Chain of thought empowers transformers to solve inherently serial problems
Zhiyuan Li, Hong Liu, Denny Zhou, and Tengyu Ma. Chain of thought empowers transformers to solve inherently serial problems. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[36]
Dissecting chain-of-thought: Compositionality through in-context filtering and learning
Yingcong Li, Kartik Sreenivasan, Angeliki Giannou, Dimitris Papailiopoulos, and Samet Oymak. Dissecting chain-of-thought: Compositionality through in-context filtering and learning. In Thirty-seventh Conference on Neural Information Processing Systems, 2023
2023
-
[37]
Skills-in-context: Unlocking compositionality in large language models
Jiaao Chen, Xiaoman Pan, Dian Yu, Kaiqiang Song, Xiaoyang Wang, Dong Yu, and Jianshu Chen. Skills-in-context: Unlocking compositionality in large language models. In Yaser Al-Onaizan, Mohit Bansal, and Yun-Nung Chen, editors,Findings of the Association for Com- putational Ling...
2024
-
[38]
Meta reasoning for large language models.arXiv preprint arXiv:2406.11698, 2024
Peizhong Gao, Ao Xie, Shaoguang Mao, Wenshan Wu, Yan Xia, Haipeng Mi, and Furu Wei. Meta reasoning for large language models.arXiv preprint arXiv:2406.11698, 2024
2024 arXiv
-
[39]
Decomposed prompting: A modular approach for solving complex tasks
Tushar Khot, Harsh Trivedi, Matthew Finlayson, Yao Fu, Kyle Richardson, Peter Clark, and Ashish Sabharwal. Decomposed prompting: A modular approach for solving complex tasks. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[40]
Diverse demonstrations improve in-context compositional generalization
Itay Levy, Ben Bogin, and Jonathan Berant. Diverse demonstrations improve in-context compositional generalization. InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), Toronto, Canada, July 2023
2023
-
[41]
Complementary explanations for effective in-context learning
Xi Ye, Srinivasan Iyer, Asli Celikyilmaz, Veselin Stoyanov, Greg Durrett, and Ramakanth Pasunuru. Complementary explanations for effective in-context learning. InFindings of the Association for Computational Linguistics: ACL 2023, Toronto, Canada, July 2023. Association for Co...
2023
-
[42]
To CoT or not to CoT? Chain-of-thought helps mainly on math and symbolic reasoning
Zayne Rea Sprague, Fangcong Yin, Juan Diego Rodriguez, Dongwei Jiang, Manya Wadhwa, Prasann Singhal, Xinyu Zhao, Xi Ye, Kyle Mahowald, and Greg Durrett. To CoT or not to CoT? Chain-of-thought helps mainly on math and symbolic reasoning. InThe Thirteenth International Conferenc...
2025
-
[43]
Knowledge crosswords: Geometric knowledge reasoning with large language models
Wenxuan Ding, Shangbin Feng, Yuhan Liu, Zhaoxuan Tan, Vidhisha Balachandran, Tianxing He, and Yulia Tsvetkov. Knowledge crosswords: Geometric knowledge reasoning with large language models. In Lun-Wei Ku, Andre Martins, and Vivek Srikumar, editors,Findings of the Association f...
2024
-
[44]
LongProc: Benchmarking Long-Context Language Models on Long Procedural Generation.arXiv preprint arXiv:2501.05414, 2025
Xi Ye, Fangcong Yin, Yinghui He, Joie Zhang, Howard Yen, Tianyu Gao, Greg Durrett, and Danqi Chen. LongProc: Benchmarking Long-Context Language Models on Long Procedural Generation.arXiv preprint arXiv:2501.05414, 2025
2025
-
[45]
Curriculum learning
Yoshua Bengio, Jérôme Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. InProceedings of the 26th Annual International Conference on Machine Learning, ICML ’09, page 41–48, New York, NY , USA, 2009. Association for Computing Machinery
2009
-
[46]
Merging by matching models in task parameter subspaces.Transactions on Machine Learning Research, 2024
Derek Tam, Mohit Bansal, and Colin Raffel. Merging by matching models in task parameter subspaces.Transactions on Machine Learning Research, 2024
2024
-
[47]
Editing models with task arithmetic
Gabriel Ilharco, Marco Tulio Ribeiro, Mitchell Wortsman, Ludwig Schmidt, Hannaneh Ha- jishirzi, and Ali Farhadi. Editing models with task arithmetic. InThe Eleventh International Conference on Learning Representations, 2023
2023
-
[48]
Unlocking efficient long-to-short llm reasoning with model merging.arXiv preprint arXiv:2503.20641, 2025
Han Wu, Yuxuan Yao, Shuqi Liu, Zehua Liu, Xiaojin Fu, Xiongwei Han, Xing Li, Hui-Ling Zhen, Tao Zhong, and Mingxuan Yuan. Unlocking efficient long-to-short llm reasoning with model merging.arXiv preprint arXiv:2503.20641, 2025
2025 arXiv
-
[49]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, Chuning Tang, Congcong Wang, Dehao Zhang, Enming Yuan, Enzhe Lu, Fengxiang Tang, Flood Sung, Guangda Wei, Guokun Lai, Haiqing Guo, Han Zhu, Hao Ding, ...
2025 arXiv
-
[50]
CoT-Valve: Length-Compressible Chain-of-Thought Tuning.arXiv preprint arXiv:2502.09601, 2025
Xinyin Ma, Guangnian Wan, Runpeng Yu, Gongfan Fang, and Xinchao Wang. CoT-Valve: Length-Compressible Chain-of-Thought Tuning.arXiv preprint arXiv:2502.09601, 2025
2025 arXiv
-
[51]
Realistic evaluation of model merging for compositional generalization.arXiv preprint arXiv:2409.18314, 2024
Derek Tam, Yash Kant, Brian Lester, Igor Gilitschenski, and Colin Raffel. Realistic evaluation of model merging for compositional generalization.arXiv preprint arXiv:2409.18314, 2024
2024 arXiv
-
[52]
LoFiT: Localized Fine-tuning on LLM Representations
Fangcong Yin, Xi Ye, and Greg Durrett. LoFiT: Localized Fine-tuning on LLM Representations. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[53]
Transformer-squared: Self-adaptive LLMs
Qi Sun, Edoardo Cetin, and Yujin Tang. Transformer-squared: Self-adaptive LLMs. InThe Thirteenth International Conference on Learning Representations, 2025
2025
-
[54]
OpenWebText Corpus
Aaron Gokaslan and Vanya Cohen. OpenWebText Corpus. 2019
2019
-
[55]
Curator: A Tool for Synthetic Data Creation
Ryan* Marten, Trung* Vu, Charlie Cheng-Jie Ji, Kartik Sharma, Shreyas Pimpalgaonkar, Alex Dimakis, and Maheswaran Sathiamoorthy. Curator: A Tool for Synthetic Data Creation. January 2025
2025
-
[56]
LlamaFactory: Unified efficient fine-tuning of 100+ language models
Yaowei Zheng, Richong Zhang, Junhao Zhang, Yanhan Ye, and Zheyan Luo. LlamaFactory: Unified efficient fine-tuning of 100+ language models. In Yixin Cao, Yang Feng, and Deyi Xiong, editors,Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (...
-
[58]
15 Table 4: Performance of atomic CoT models fine-tuned on different variants of proxy prefix on Llama 2-7B
Association for Computational Linguistics. 15 Table 4: Performance of atomic CoT models fine-tuned on different variants of proxy prefix on Llama 2-7B. Using random letters as the proxy prefix achieves the best out-of-domain performance when evaluated with an unseen prefix at ...
-
[59]
This is because the rhetorical and literay skills have the least overlap while other categories have more (e.g
Filtering the categories of skills: We keep examples with skills of the rhetorical and literary categories out of the five categories from the original dataset. This is because the rhetorical and literay skills have the least overlap while other categories have more (e.g. the ...
-
[60]
Removing the requirements of post-hoc explanation and refinement from the prompt. The original dataset evaluates models by prompting the models to first write a sentence, provide an explanation for the written sentence, and then do another round of refinement based on 18 feedb...
-
[61]
To ensure reproducibility of our results, we use a public test set collected by [22]
Using a public test set: The original evaluation of [ 19] hides the test set from the public and models can only be evaluated based on API calls to the hidden test set. To ensure reproducibility of our results, we use a public test set collected by [22]. As an open-ended gener...
-
[62]
The hall was filled with a deafening silence
and graded as correct by the grader. We further prompt GPT-4o to transform the (sentence, explanation) pairs into (CoT, sentence) pairs to resolve potential coreference issues. Examples of the prompt, CoT traces, and sentence can be found in Examples D.1, D.2, and D.3. D.1 Ato...
-
[63]
Skill Fraction:The fraction of skills being demonstrated if all the other three criteria are satisfied;0otherwise We aggregate these metrics by averaging over all generated responses. In general, full marks evaluate the model’s capability of writing a perfect sentence for the ...
-
[64]
Example H.1 shows an example where the generated CoT is only able to replicate CoT of one atomic CoT and repeat the same CoT in the prefix and suffix
-
[65]
This is a common error for Composable models combined with model merging
Example H.2 shows an example where the combined model fails to continue generation after generating the prefix CoT. This is a common error for Composable models combined with model merging
-
[66]
Merge” stands for model merging; “MTL
Example H.3 shows an example where the combined model uses the wrong atomic CoT in the prefix that should have been used in the suffix. H.1 Error Case: Replicating One Atomic CoT Pattern [Instruction] Take the first letter of each word in the sequence, concatenate them in lowe...
-
[2024]
Association for Computational Linguistics
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.