If you fine-tune a mannequin utilizing Supervised Positive-Tuning (SFT), creating high-quality chain-of-thought (CoT) reasoning traces in your coaching knowledge is commonly impractical and could be prohibitively costly. Because of this, you may select to skip reasoning throughout SFT and practice with solely inputs and outputs. Nevertheless, reasoning is a key functionality of the Amazon Nova 2 household of fashions, and it’s been proven to considerably improve prediction efficiency in Nova and different frontier fashions, usually with efficiency good points on exhausting issues like coding and math. With Amazon Nova 2 customization, you should utilize the ability of considering fashions in your particular domains by means of methods comparable to SFT and Reinforcement Positive-Tuning (RFT). For SFT, a key requirement to unlock these good points is the provision of golden CoT traces within the SFT dataset, that’s, considering traces from a powerful trainer mannequin which were additional validated and cleaned.
On this submit, we discover an thought for producing considering tokens for datasets that lack reasoning traces in SFT customization. We first look at the reasoning suppression drawback, then introduce Self-Distilled Reasoning (SDR), validate it throughout three benchmarks, and supply sensible suggestions. SDR re-uses the chain of thought from the bottom Amazon Nova 2 Lite mannequin as a stand-in for non-reasoning datasets. Via our experiments we make just a few observations on the impression of introducing SDR, from enhancing goal efficiency to mitigating catastrophic forgetting. That is consistent with a rising physique of labor that’s discovering the significance of distilling data from a mannequin into itself throughout coaching, in any other case generally known as self-distillation.
The next determine illustrates how SDR compares with vanilla SFT and mannequin merging throughout goal efficiency and math retention. Mannequin merging is a simple strategy to retain beforehand acquired expertise, that takes an SFT checkpoint and merges it again to the bottom mannequin (earlier than SFT). Nevertheless, merging usually comes on the expense of forgoing good points obtained on the SFT checkpoint due to catastrophic forgetting which manifests as a trade-off between goal and normal efficiency. SDR however mitigates this concern with related or higher goal efficiency as pure SFT (with no merging) whereas retaining most of normal efficiency.
Due to catastrophic forgetting, we observe that SFT on a dataset can result in earlier data being fully misplaced. For example, we discover that vanilla SFT results in Math efficiency dropping from 70 % (base) to six % on common (Desk 2). With SDR, we’re capable of virtually completely get better it again. Self-distilled reasoning permits us to retain the bottom mannequin’s capabilities with out compromising heading in the right direction efficiency, and in lots of instances it improves goal efficiency as properly. Mannequin merging is a standard resolution to mitigate catastrophic forgetting, however SDR achieves this retention extra successfully.
SDR offers in-training regularization by augmenting the dataset with the mannequin’s personal reasoning traces. It doesn’t require a separate trainer mannequin or post-hoc interpolation. This strategy requires no human annotation, is relevant to present SFT datasets no matter area, and is simpler than mannequin merging at preserving each goal and normal efficiency.
In contrast with mannequin merging, self-distillation yields practically an identical math efficiency (70 % in comparison with 68 %) whereas enhancing goal efficiency by over 6.5 % on common on the identical time. This discovering aligns with current analysis that advocates self-distillation as a strong mechanism to mitigate catastrophic forgetting.
Background: SFT on datasets with out reasoning tokens could end in lack of reasoning means
Earlier than introducing the strategy, it is very important perceive why SFT on datasets with out reasoning traces results in degraded mannequin efficiency. This part examines the reasoning suppression drawback, quantifies the impression of reasoning heading in the right direction efficiency, and discusses mannequin merging as an present restoration mechanism.
The reasoning suppression drawback
SFT coaching on non-reasoning datasets with reasoning mode energetic results in a important concern: the mannequin loses its means to purpose throughout inference, even while you explicitly activate reasoning mode. We hypothesize that this phenomenon happens as a result of the coaching goal calculates loss on each reasoning and output tokens collectively. When coaching knowledge incorporates solely input-output pairs with out intermediate reasoning steps, the mannequin receives no supervision sign for producing coherent reasoning traces. The loss operate successfully penalizes tokens that don’t instantly contribute to the ultimate output, coaching the mannequin to bypass its reasoning mechanisms. This conduct exemplifies shortcut studying, the place fashions depend on spurious correlations somewhat than studying sturdy reasoning patterns.
Quantifying the impression of reasoning
Regardless of the suppression concern, turning on reasoning throughout each coaching and inference produces important advantages in goal efficiency. To substantiate honest comparability, we keep consistency between practice and inference settings: evaluating reasoning-on throughout each coaching and inference versus reasoning-off throughout each coaching and inference. Our experiments reveal that turning on reasoning throughout coaching and inference results in a major enchancment. The next desk demonstrates this impact on the LLaVA CoT dataset with various LoRA (Low-Rank Adaptation) merge weights.
| Merge weight | Goal perf (reasoning on) | Goal perf (reasoning off) | Delta |
| 0.0 (base) | 12.30% | 12.30% | 0% |
| 0.3 | 34.38% | 35.28% | -0.9% |
| 0.5 | 60.51% | 48.80% | +11.7% |
| 0.7 | 66.67% | 54.05% | +12.6% |
| 1.0 (full merge) | 65.17% | 47.90% | +17.3% |
Desk 1: Influence of reasoning and merging weight heading in the right direction efficiency. Coaching and inference reasoning modes are stored constant.
Mannequin merging as a restoration mechanism
Our present advisable strategy to handle the reasoning suppression concern for SFT use instances with out reasoning tokens is to make use of mannequin merging as a mechanism to get better the reasoning ability. Just like how mannequin merging can restore mathematical or coding capabilities after domain-specific fine-tuning, we discover that reasoning functionality could be recovered by means of weighted interpolation between the fine-tuned mannequin and the bottom mannequin. This restoration is strongly correlated with the restoration of normal efficiency metrics (comparable to math and coding benchmarks), suggesting that reasoning is a elementary functionality that underlies a number of downstream expertise.
To know this higher, we use the next benchmarks on this experiment:
ToolACE – Device-calling benchmark (10K samples). Evaluates the mannequin’s means to generate right operate calls with correct argument names and values given a person question and accessible software definitions. Brief context (roughly 2K tokens). Scored on strict success fee (precise match of operate identify and all arguments). Requires exact structured output and argument worth inference.
CoCoHD – Lengthy-context structured extraction (730 samples). Evaluates extraction of 10 metadata fields (title, chamber, committee, members, dates) from U.S. congressional listening to transcripts in JSON format. Lengthy context (35K–85K characters). Scored on key/worth overlap between predicted and goal JSON. Requires parsing very lengthy paperwork and producing schema-conformant structured output. Extracted from GitHub.
GovReport – Lengthy-context abstractive summarization (17K samples). Evaluates technology of 250–450 phrase plain-text summaries of U.S. authorities reviews (GAO, CRS). Lengthy context (35K–85K characters enter). Scored on ROUGE-L (longest widespread subsequence overlap with reference abstract). Requires synthesizing dense coverage paperwork into concise, factual narratives. Extracted from HuggingFace.
Bill-OCR – Multimodal doc understanding (roughly 500 samples, picture and textual content). Evaluates extraction of structured fields from scanned bill photos. Brief context (single picture and immediate). Scored on ANLS (Common Normalized Levenshtein Similarity). Requires visible textual content recognition and field-level extraction from various doc layouts. Extracted from Kaggle.
CaptionGen – Video captioning (1800 samples, video and textual content). Evaluates technology of descriptive captions for video clips. Variable context (video frames and immediate). Scored utilizing automated analysis (possible CIDEr/METEOR or LLM-judge). Requires temporal understanding throughout video frames and pure language technology. Extracted from HuggingFace.
We examine whether or not reasoning emerges with mannequin merging. On an Instruction Following benchmark, we depend the variety of reasoning tokens on a mannequin that’s skilled with out reasoning. The x-axis reveals the merging weight between the customized and the bottom mannequin, the place 0.0 corresponds to the bottom mannequin and 1.0 is the SFT mannequin with out merging.

Implications for personalization
These findings have vital implications if you happen to’re deploying personalized fashions. First, sustaining the identical reasoning mode throughout coaching and inference is important for optimum efficiency. Second, with out intervention, domain-specific SFT can considerably degrade normal reasoning talents. Third, mannequin merging gives a post-hoc resolution, however requires cautious tuning of the merging weight to stability competing targets. These trade-offs motivated us to develop a coaching strategy that preserves reasoning functionality with out requiring post-hoc interventions.
Function of reasoning in SFT
Reasoning traces in SFT serve three important capabilities that join reinforcement fine-tuning (RFT), regularization, and self-distillation paradigms.
First, reasoning traces act as implicit coverage regularization by constraining the fine-tuned mannequin to remain near the bottom mannequin’s coverage. This prevents catastrophic forgetting and functionality degradation in a fashion just like KL-regularization in RLHF. Second, reasoning offers course of supervision, analogous to step-by-step reward shaping in RFT, somewhat than simply end result supervision. This results in extra sturdy generalization. Third, self-distillation, the place a mannequin learns from its personal predictions, has confirmed efficient throughout domains from Born-Once more Networks to Constitutional AI. Reasoning traces supply significantly wealthy self-supervision by capturing the mannequin’s problem-solving course of somewhat than simply closing outputs, as demonstrated in current continuous studying analysis.
Current work reveals that efficient fine-tuned fashions keep proximity to the bottom mannequin in parameter house, and our strategy makes use of this perception by making use of the bottom mannequin’s personal reasoning traces as coaching targets, making a studying sign in keeping with the mannequin’s inside representations whereas offering dense token-level supervision all through the reasoning course of.
Self-distilled reasoning
We suggest an efficient strategy that makes use of self-distilled reasoning (SDR) for SFT customization on datasets with out reasoning traces. The method works in three levels. First, you utilize the bottom reasoning mannequin (comparable to Amazon Nova 2 Lite) to generate reasoning traces for every instance within the SFT dataset. Subsequent, you increase the coaching knowledge by prepending the generated reasoning traces to the unique outputs. Lastly, you fine-tune the mannequin with reasoning mode turned on, offering supervision on each reasoning and output tokens.
SDR gives a number of benefits in your SFT workflow. There may be zero annotation price as a result of no human effort is required to create the reasoning traces. The reasoning traces are in keeping with the bottom mannequin’s personal problem-solving strategy. The method scales to present SFT datasets no matter area and offers you flexibility to make use of completely different trainer fashions.
Establishing reasoning traces for SFT
We question Amazon Bedrock to acquire reasoning traces for a given dataset. There are two approaches to assemble chain-of-thought reasoning, every with completely different trade-offs.
Primary reasoning
This strategy generates reasoning traces in a ahead method, the place the mannequin naturally produces its reasoning given solely the query. This mimics how the mannequin would purpose throughout inference. The immediate template is:
Guided reasoning
This strategy makes use of the provision of ground-truth solutions to information reasoning technology in a backward method. By offering each the query and reply, we ask the mannequin to reconstruct believable reasoning that connects them, just like hindsight studying approaches. The immediate template is:
To confirm the mannequin doesn’t by chance leak the reply into the reasoning hint (which might introduce noise), we carry out a secondary filtering step that removes mentions of the reply to acquire the ultimate reasoning hint.
Implementation pipeline
The next code reveals methods to implement guided reasoning utilizing the Amazon Bedrock Converse API. The pipeline reads your SFT coaching knowledge, generates Chain-of-Thought (CoT) reasoning traces, and assembles the ultimate dataset with reasoningContent blocks.
Setup and CoT immediate technology
Invoke Amazon Bedrock and assemble the ultimate dataset
Inference configuration parameters
- temperature: 0.3 Low randomness produces constant, deterministic reasoning traces appropriate for coaching knowledge.
- topP: 0.9 Nucleus sampling that retains the highest 90 % likelihood mass. Balances coherence with sufficient range to keep away from degenerate repetitions.
- topK: 50 Limits token candidates to the highest 50 at every step. Prevents unlikely tokens from showing in reasoning traces whereas preserving pure language move.
Pattern enter (no reasoning)
Pattern output (with reasoning prepended)
Our experiments (mentioned within the subsequent part) display that this strategy results in important enhancements in each goal area efficiency and normal functionality preservation, validating the speculation that self-distilled reasoning offers invaluable inductive bias throughout fine-tuning.
Experiments
We run experiments on three benchmarks that would not have reasoning.
- MedMCQA is a Q&A mode dataset that incorporates 10k coaching samples.
- CoCoHD is a congressional listening to dataset that has lengthy context (20-60k tokens) and has a job of manufacturing a JSON with particular fields.
- Bill-OCR is a multimodal dataset that has photos of invoices and requires a JSON output with the fields from the picture.
The next desk summarizes our SDR outcomes throughout three benchmarks. Every column captures a particular dimension of the experimental setup: Mannequin refers back to the dataset used for fine-tuning (or the bottom Nova 2 Lite mannequin when no fine-tuning is utilized). Reasoning Traces signifies which mannequin generated the chain-of-thought traces prepended to the coaching knowledge. “None” means no reasoning was added to the dataset. Coaching Reasoning specifies whether or not reasoning mode was enabled through the SFT coaching course of. Inference Reasoning specifies whether or not reasoning mode was enabled at prediction time. Merging signifies whether or not mannequin merging (weighted interpolation between the fine-tuned checkpoint and the bottom mannequin) was utilized after coaching to get better misplaced normal capabilities. Goal reviews accuracy on the domain-specific benchmark the mannequin was fine-tuned for. Math ↑ (management) reviews accuracy on a math benchmark used as a management metric to measure catastrophic forgetting. The bottom mannequin scores 70 %, so any important drop alerts that normal reasoning means has been misplaced throughout fine-tuning.
| Dataset | Reasoning Traces | Coaching Reasoning | Inference Reasoning | Merging | Goal |
Math ↑ (management) |
| Nova 2 Lite | None | No | No | – | 55.60% | 12.90% |
| Nova 2 Lite | None | No | Sure | – | 55.40% | 70% |
| MedMCQA | None | No | Sure | Sure | 60.50% | 8.30% |
| MedMCQA | None | No | Sure | No | 63.80% | 0% |
| MedMCQA | Nova 2 Lite Primary | Sure | Sure | No | 66.60% | 67.90% |
| MedMCQA | Nova 2 Lite Guided | Sure | Sure | No | 65.70% | 59.60% |
| Nova 2 Lite | None | No | No | – | 45% | 12.90% |
| Nova 2 Lite | None | No | Sure | – | 45% | 70% |
| CoCoHD | None | No | Sure | Sure | 59.30% | 70% |
| CoCoHD | None | No | Sure | No | 61.30% | 6.30% |
| CoCoHD | Nova 2 Lite Primary | Sure | Sure | No | 55.40% | 73.80% |
| CoCoHD | Nova 2 Lite Supervised | Sure | Sure | No | 61.30% | 65.80% |
| Nova 2 Lite | None | No | No | – | 82.10% | 12.90% |
| Nova 2 Lite | None | No | Sure | – | 81.40% | 70% |
| Bill-OCR | None | No | Sure | Sure | 82.30% | 70.80% |
| Bill-OCR | None | No | Sure | No | 88.10% | 9.60% |
| Bill-OCR | Nova 2 Lite Primary | Sure | Sure | No | 86.10% | 67.10% |
| Bill-OCR | Nova 2 Lite Supervised | Sure | Sure | No | 87.90% | 67.90% |
Desk 2: SDR outcomes throughout three benchmarks. Rows are grouped by dataset. All SDR rows use merge weight 1.0 (no merging wanted).
SFT with partial or lacking reasoning traces
Reasoning knowledge could be costly or tough to curate, and in consequence we frequently encounter conditions the place solely a portion of the SFT dataset incorporates reasoning. To raised perceive how SFT behaves on this state of affairs we conduct an ablation research subsequent. We additionally discover how SDR can assist on this state of affairs as a low-overhead and cost-effective different.
SFT coaching with solely partial reasoning traces
On this research, we look at the impact of SFT when solely a subset of the dataset incorporates reasoning, which simulates widespread real-world eventualities for a lot of customers. We ran ablations with reasoning traces for LoRA SFT on 10k coaching samples from LLaVA CoT benchmark. The eval benchmark for that is MathVista the place the bottom mannequin struggles (12.3 %) primarily due to formatting inconsistencies and LoRA SFT reveals a big enchancment (34.4 %).
Math (management) benchmark — catastrophic forgetting
The Math (management) benchmark measures whether or not the mannequin retains normal mathematical reasoning functionality after SFT. It is a notable discovering: with out SDR prefill, normal math functionality collapses from 68% to three% as you scale back the share of reasoning knowledge in coaching. With SDR, it stays secure at 65–72 % no matter how a lot reasoning knowledge you embody.

Key perception
With out SDR: Lowering reasoning knowledge under 75 % causes catastrophic forgetting on Math management: 66.6 % to 21.7 % to three.3 % to 2.5 %. The mannequin loses its normal math functionality completely.
With SDR: Math (management) stays secure at 64–72 % throughout all knowledge percentages, even with 0 % reasoning knowledge. SDR prefill fully prevents catastrophic forgetting.
Median reasoning tokens at inference
This chart reveals the token price range spent on reasoning traces throughout inference. SDR fashions produce extra reasoning tokens (400–860). Fashions skilled with lower than or equal to (≤) 25 % reasoning knowledge and no prefill produce zero reasoning tokens. This implies they’ve fully misplaced the flexibility to purpose step-by-step.

Key perception
SDR teaches reasoning conduct: Even with 0 % reasoning knowledge in coaching, SDR prefill causes the mannequin to supply 859 median reasoning tokens. With out SDR at lower than or equal to (≤) 25 % reasoning knowledge, the mannequin produces zero tokens. It has forgotten methods to purpose.
Base mannequin comparability: The bottom Amazon Nova 2 Lite mannequin produces 1,254 median reasoning tokens. After SFT with 100% reasoning knowledge, this drops to 367, and the mannequin turns into extra environment friendly (fewer tokens for a similar or higher accuracy).
MathVista (goal) — reasoning on versus off
This chart compares MathVista accuracy with reasoning enabled and disabled at inference time. Enabling reasoning at inference has the best impression. It roughly doubles efficiency no matter coaching knowledge composition.

Key perception
Reasoning on at inference persistently delivers 35–47 % accuracy, in comparison with 14–22 % with reasoning off. That is roughly a 2x enchancment.
Greatest configuration: 50 % reasoning knowledge plus SDR prefill achieves 45.2 % MathVista with 70.4 % Math management, avoiding forgetting whereas maximizing goal efficiency.
With out reasoning at inference, efficiency drops to close base-model ranges (roughly 15–22 %), no matter coaching composition. The mannequin wants the reasoning step to carry out properly on this benchmark. A notable remark right here is that coaching with SDR prefill (that’s, with reasoning enabled) leads to higher eval efficiency even with reasoning disabled throughout inference time. For instance, when solely 75 % of the dataset is lacking CoT supervision, SDR prefill boosts eval efficiency by over 5pp even with reasoning disabled at inference (16.4 % to 21.3 %), indicating that SDR has an impression in how the mannequin solves a job even when reasoning is disabled.
Conclusions and proposals
Our experiments throughout three benchmarks (MedMCQA, CoCoHD, Bill-OCR) and an ablation on partial-reasoning datasets (LLaVA-CoT) converge on a constant discovering: Self-Distilled Reasoning (SDR) gives a zero-cost strategy that concurrently improves goal efficiency and preserves normal capabilities, with out requiring mannequin merging.
The start line for these findings is that reasoning is fragile below vanilla SFT. Coaching on knowledge with out reasoning traces causes reasoning suppression: the mannequin shortcuts to the reply and loses normal expertise, with Math accuracy collapsing from 70 % to 0 %. Mannequin merging partially recovers these expertise, but it surely introduces a trade-off between goal and normal efficiency that’s exhausting to tune and provides a checkpoint-mixing step to the coaching pipeline.
SDR removes this trade-off. By augmenting the dataset with the bottom mannequin’s personal reasoning traces, SDR retains normal efficiency at Math ≈ 68 % whereas delivering a over 6.5 % relative acquire in goal efficiency over one of the best model-merging checkpoints, with no further annotation price. The strategy holds up even when the bottom mannequin is weak on the goal area: on MedMCQA, the place the bottom mannequin scores 55.6 %, SDR lifts goal accuracy by roughly three pp (63.8 % to 66.6 %) and recovers Math from 0 % to 67.9 %. In different phrases, SDR works each when the bottom mannequin has latent area ability to unlock and when it doesn’t.
The profit extends to mixed-reasoning coaching, the place solely a fraction of the SFT samples carry reasoning traces. It is a widespread real-world setting since reasoning knowledge is pricey to curate, and our LLaVA-CoT ablation reveals additionally it is fragile. Basic functionality holds up at 75 % reasoning protection (Math 66.6 %) however collapses sharply under that: at 50 % Math drops to 21.7 %, at 25 % to three.3 %, and at 0 % to 2.5 %. Goal accuracy strikes non-monotonically throughout these mixes, so there isn’t a protected dilution level. Pre-filling the lacking traces with Nova 2 Lite removes the cliff completely: Math stays within the 65–71 % vary throughout all mixes, and 50 % SDR reaches 45.2 % goal accuracy, greater than the 34.4 % seen with 100% human-authored reasoning. The acquire additionally transfers to reasoning-disabled inference, so groups can patch their datasets as soon as and maintain their present serving path.
One caveat shapes the advice on which trainer to make use of. A stronger trainer isn’t at all times higher: Amazon Nova 2 Professional (Preview) traces enhance goal accuracy however trigger a proportional drop normally efficiency, in keeping with prior findings {that a} massive student-teacher hole hurts distillation. Lite-generated traces supply essentially the most balanced end result throughout goal and normal efficiency and are the default we advocate.
Taken collectively, these outcomes level to a sensible practitioner path: use SDR with same-family traces (Amazon Nova 2 Lite for Amazon Nova 2 Lite clients) because the default SFT recipe, apply it as a gap-filler every time reasoning protection is under roughly 75 %, and reserve stronger-teacher or guided-reasoning variants for instances the place the bottom mannequin is weak on the goal area and the general-capability price is suitable. The broader implication is that SDR is a helpful inductive bias for continuous studying settings the place new expertise arrive over time and beforehand realized expertise must be preserved. Combining it with knowledge mixing and light-weight merging is a pure subsequent step to discover.
Practitioner choice information
Use this information to find out when to make use of Self-Distilled Reasoning (SDR), mannequin merging, or customary SFT based mostly in your knowledge composition and latency constraints.
| Situation | Suggestion | |
| 1 | Default or new SFT job with out reasoning, however seeing regression on normal efficiency | If latency delicate: Use mannequin merging to get better normal efficiency regression. If latency constraints accommodate reasoning: Use SDR with Nova 2 Lite-generated reasoning traces. This offers one of the best stability of goal efficiency and normal functionality preservation (usually greater than with mannequin merging) |
| 2 | Base mannequin is weak heading in the right direction area | Think about guided reasoning to supply further sign throughout hint technology. |
| 3 | Dataset already has partial reasoning (≥ 50%) | We advocate coaching with reasoning turned on. The prevailing traces are ample to protect normal expertise. |
| 4 | Dataset has < 50% reasoning traces | If latency constraints permit for reasoning throughout inference, pre-fill lacking traces with Nova 2 Lite reasoning (one-time, offline). With out this, normal efficiency will collapse. |
| 5 | You do not want normal capabilities | Reasoning knowledge has minimal impression heading in the right direction efficiency. Customary SFT is ok. |
| 6 | Continuous studying or multi-skill preservation | Think about combining SDR with knowledge mixing and a small (or zero) merge weight for one of the best retention of beforehand realized expertise. |
| 7 | You continue to wish to use mannequin merging | We advocate utilizing a smaller merge weight when SDR is utilized. SDR already offers the regularization that merging was compensating for. |
For extra details about Amazon Nova fashions and customization choices, see the Amazon Bedrock documentation. To get began with SFT customization, see the Amazon Bedrock mannequin customization information. In case you have questions or wish to share your expertise with SDR, attain out to your AWS account workforce.
In regards to the authors
