Unveiling Reasoning Thresholds in Language Models: Scaling, Fine-Tuning, and Interpretability through Attention Maps
Yen-Che Hsiao, Abhishek Dutta
TL;DR
The paper investigates when decoder-only language models acquire reasoning abilities via in-context learning and chain-of-thought prompting. By evaluating 23 open-source LMs across commonsense (CSQA) and deductive (PrOntoQA-OOD) tasks, it identifies a critical threshold around $1.6$ billion parameters after which reasoning performance dramatically improves, with a smaller gap for specific deductions (e.g., ~$1.1$B for disjunction elimination and ~$1.5$B for proof by contradiction). It also shows that fine-tuning small models on task-specific exemplars substantially boosts reasoning, enabling correct CoT generation for several rules even without prompt exemplars, though longer chains remain challenging. An attention-map analysis reveals that successful CoT generation correlates with higher token-level attention to the next correct token and relevant parts of speech, offering a path to interpretability and targeted improvements in reasoning behavior.
Abstract
This study investigates the in-context learning capabilities of various decoder-only transformer-based language models with different model sizes and training data, including GPT2, SmolLM2, OpenELM, TinyLlama, Stable LM, and Gemma 2. We identify a critical parameter threshold (~1.6 billion), beyond which reasoning performance improves significantly in tasks such as commonsense reasoning in multiple-choice question answering and deductive reasoning. Specifically, models above this threshold achieve better success rates in chain-of-thought (CoT) prompting for deductive reasoning tasks, especially those requiring longer reasoning chains, such as proof by contradiction and disjunction elimination. To address limitations in sub-threshold models, we demonstrate that fine-tuning with task-specific exemplars substantially enhances reasoning performance, enabling accurate CoT generation even without additional exemplars in the prompt for tasks with shorter reasoning chains. Finally, our analysis of attention maps reveals that models capable of generating correct CoTs exhibit higher token-level attention scores on subsequent correct tokens and the correct parts of speech, providing interpretability insights into reasoning processes. These findings collectively advance understanding of reasoning capabilities in decoder-only transformer-based models. The code is available at: https://github.com/AnnonymousForPapers/CoT_Reasoning_Test.
