Papers › Unveiling the Key Factors for Distilling Chain-of-Thought Reasoning

Unveiling the Key Factors for Distilling Chain-of-Thought Reasoning

25 Feb 2025arXiv:2502.18001archive 2025-07-28

Xinghao Chen, Zhijing Sun, Wenjin Guo, Miaoran Zhang, Yanjun Chen, Yirong Sun, Hui Su, Yijie Pan, Dietrich Klakow, Wenjie Li, Xiaoyu Shen

Large Language Models (LLMs) excel in reasoning tasks through Chain-of-Thought (CoT) prompting. However, CoT prompting greatly increases computational demands, which has prompted growing interest in distilling CoT capabilities into Small Language Models (SLMs). This study systematically examines the factors influencing CoT distillation, including the choice of granularity, format and teacher model. Through experiments involving four teacher models and seven student models across seven mathematical and commonsense reasoning datasets, we uncover three key findings: (1) Unlike LLMs, SLMs exhibit a non-monotonic relationship with granularity, with stronger models benefiting from finer-grained reasoning and weaker models performing better with simpler CoT supervision; (2) CoT format significantly impacts LLMs but has minimal effect on SLMs, likely due to their reliance on supervised fine-tuning rather than pretraining preferences; (3) Stronger teacher models do NOT always produce better student models, as diversity and complexity in CoT supervision can outweigh accuracy alone. These findings emphasize the need to tailor CoT strategies to specific student model, offering actionable insights for optimizing CoT distillation in SLMs. The code and datasets are available at https://github.com/EIT-NLP/Distilling-CoT-Reasoning.

PaperPDFCodeCode Syntology ran

In Syntology View this paper on Syntology: its repositories, every harvested function with whether it ran, its licence and the call to fetch it.

Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2502.18001")

Code

Syntology Ran 12 of 12 code samples harvested from 1 repository linked to this paper; 0 have no recorded run. Of those that ran: 12 ran with no contract checked.

By repository: official repository: 12 samples from 1 repository, 12 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

eit-nlp/distilling-cot-reasoning officialmentioned in papermentioned on GitHubpytorchApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 12 ran; 0 honoured the contract we drafted; 0 have no recorded run. Read from Syntology's graph 2026-09-25; that is when this build read the record, not when the samples ran.

12ran

Licence: 0 of the 12 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from eit-nlp/distilling-cot-reasoning. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

clean_generated_output eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/run_reasoning.py official repository ran fingerprinted Apache-2.0 (permissive) · 35fe8d0bfce16d56 · report
delete_extra_zero eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/utils.py official repository ran fingerprinted Apache-2.0 (permissive) · 1d6b1921b6a73ff1 · report
determine_dataset eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/autoevaluate.py official repository ran fingerprinted Apache-2.0 (permissive) · 54544f8056f6555e · report
determine_form eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/autoevaluate.py official repository ran fingerprinted Apache-2.0 (permissive) · ed259618fd8cb0dd · report
extract_answer_label eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/run_reasoning.py official repository ran fingerprinted Apache-2.0 (permissive) · 9734572acf030e9c · report
extract_math_answer eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/utils.py official repository ran fingerprinted Apache-2.0 (permissive) · d8b71dceb40cd598 · report
find_box eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/utils.py official repository ran fingerprinted Apache-2.0 (permissive) · e004c74d60435f42 · report
find_model_directories eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/autoevaluate.py official repository ran fingerprinted Apache-2.0 (permissive) · db957f894b2b4da3 · report
get_prompt eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/prompt_utils.py official repository ran Apache-2.0 (permissive) · 9dcdd19fa07a9553 · report
get_tulu_prompt eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/prompt_utils.py official repository ran Apache-2.0 (permissive) · 645296d3bf573bfd · report
get_vicuna_prompt eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/prompt_utils.py official repository ran Apache-2.0 (permissive) · ba92d46452fe56dc · report
load_qa_data eit-nlp/distilling-cot-reasoning/Evaluation/reasoning_eval/run_reasoning.py official repository ran Apache-2.0 (permissive) · 06611f0dc33c8103 · report

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

CoT Prompting

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections