Skip to main content

tracedistill — distill reasoning traces into a LoRA adapter (NVIDIA Nemotron silver medal)

CI PyPI Python License: MIT Kaggle Silver

tracedistill

Distill teacher chains-of-thought into a LoRA adapter — so a model re-derives every answer itself, where no code may run.

tracedistill is the generalized core of team VCDAD's silver-medal solution to the NVIDIA Nemotron Model Reasoning Challenge (65 / 4182, Top 1.6%), extracted into a small, tested library you can run on your own data. The medal-winning code is preserved verbatim in competition/ and pinned to this library byte-for-byte by golden tests.

Give it (problem, teacher chain-of-thought, answer) triples and it trains a LoRA adapter that reasons step-by-step and then emits a parseable \boxed{} — the recipe for tasks where the grader can't run your code, so the solving procedure has to live inside the model's own chain-of-thought.


Why not just SFTTrainer on your traces?

Four design choices, each implemented as a library piece:

  1. A strict format contract (formatting.py). The SFT target is built byte-for-byte identical to the eval protocol — <think> … </think>\boxed{answer} — and the reasoning (from the teacher trace) is decoupled from the final answer (rewritten with the authoritative label). Train input ≈ eval input, so the model reliably boxes a correct answer instead of trailing off.
  2. Two-phase Train → Nudge (training.py). A hard, fast pass (high LR, clipping off) for broad coverage, then a tiny continuation (1/40 LR, cosine, clipping on) that squeezes the hard problem types while a balanced sprinkle of fresh easy data prevents catastrophic forgetting.
  3. Type-stratified batching (sampling.py). With a tiny effective batch, a naive shuffle can make a whole batch one problem type and swing the gradient. A round-robin "deal the cards" order keeps every effective batch type-balanced.
  4. Architecture-aware LoRA (lora.py). The competition base is a hybrid Mamba-2 + MoE model, so targets cover the SSM in_proj/out_proj and attention and MLP — the detail a vanilla Llama recipe misses.
flowchart LR
  D["CoT dataset<br/>prompt · cot · answer · type"] --> F["format contract<br/>&lt;think&gt;…&lt;/think&gt;\boxed{}"]
  F --> S["two-phase split<br/>(hard in both)"]
  S --> P1["Phase 1 · Train<br/>lr 2e-4 · clip off"]
  P1 --> P2["Phase 2 · Nudge<br/>lr 5e-6 · cosine · clip on"]
  P2 --> A["LoRA adapter"]

Install

pip install tracedistill            # light core: numpy / pandas / pyyaml
pip install "tracedistill[train]"   # + torch / transformers / trl / peft / datasets to train

The core (build_records, the stratified order, the split, target selection, config) is torch-free — it imports and unit-tests without a GPU stack.

60 seconds

import tracedistill as td

# Your data: a DataFrame (or list of dicts) with prompt / generated_cot / answer / type.
records, types = td.build_records(df)      # the <think>…</think>\boxed{} format contract
order = td.build_stratified_index_order(types, batch_size=8, seed=42)  # type-balanced order
targets = td.target_modules_from_model(model)   # attention + Mamba SSM + MLP, auto-detected

# The two non-overlapping training sets for Train → Nudge:
phase1_df, phase2_df = td.two_phase_split(df, hard_types=["cryptarithm_deduce"], seed=42)

Full two-phase training on an already-LoRA'd model:

from tracedistill import TwoPhaseConfig, PhaseConfig, train_two_phase

cfg = TwoPhaseConfig(hard_types=["cryptarithm_deduce", "cryptarithm_guess"],
                     phase1=PhaseConfig.train(), phase2=PhaseConfig.nudge())
train_two_phase(model, tokenizer, df, cfg)   # Phase 2 continues from Phase 1's weights

CLI

One YAML config drives an end-to-end run (load base model → architecture-aware LoRA → Train → Nudge → save / package the adapter):

tracedistill --cfg examples/configs/quickstart.yaml             # small single-GPU
tracedistill --cfg examples/configs/reproduce_competition.yaml  # the medal setup (Kaggle)

Measured: does distilling the trace actually help? (GSM8K, one RTX 4080)

examples/gsm8k_trace_distillation.py runs four arms on a base (non-instruct) Qwen2.5-0.5B + LoRA through the public API and scores boxed-answer accuracy on held-out GSM8K (greedy, parse \boxed{} exactly like a grader). A base model is used on purpose: it's weak at the "reason then box" protocol zero-shot, so distilling a teacher trace has real room to help — the regime trace distillation is built for. The only difference between answer-only SFT and trace-distill is whether a reasoning trace sits between the <think> tags, so that gap isolates the value of distilling the trace.

GSM8K results: trace distillation lifts a base model 9.5% to 35.0% (~3.7x); answer-only SFT, with no reasoning trace, drops to 3.5%

arm boxed accuracy parse rate hard-problem acc (≥5 steps)
zero-shot (base, no training) 9.5% 30% 0%
answer-only SFT 3.5% 100% 0%
trace-distill, 1 phase 33.0% 98.5% 6.1%
trace-distill, 2 phase (Train→Nudge) 35.0% 96.5% 6.1%

Distil the trace, not the answer. Trace distillation lifts the weak base from 9.5% → 35.0% (≈3.7×). Answer-only SFT — the same boxed format but with no reasoning trace — instead drops to 3.5% (it learns to always emit a \boxed{}, but having been taught to skip the reasoning, it just boxes wrong answers). The 10× gap between the two SFT arms (35.0% vs 3.5%) is purely the reasoning trace.

Distillation also fixes the format. Zero-shot, the base emits a parseable \boxed{} only 30% of the time; after distillation, ~97%. And ≥5-step hard problems go from 0% → 6.1% — only the trace-distilled arms crack any at all.

The Nudge adds a little more. Phase 2 edges 1-phase 33.0% → 35.0%.

Honest caveat. This is a 0.5B model on GSM8K, so the absolute numbers are modest; the result demonstrates the relative value of distilling the trace. It's the same recipe that took silver on the competition's harder, code-derived puzzles — where the fixed base likewise can't solve them zero-shot and the teacher trace encodes the procedure.

Provenance of these specific numbers. They were captured with an earlier revision of this script's SFTTrainer call, before a later fix (see the git history of training.py) that restricts the SFT loss to the assistant turn only — the version used here also let some loss gradient fall on the user's question text, rather than purely on the <think>…</think>\boxed{} span being distilled. That applied identically to all three trained arms, so the relative story above (trace-distill ≫ answer-only, 2-phase ≥ 1-phase) is expected to hold, but the absolute percentages haven't been re-measured since the fix and may shift on a re-run; treat them as directional rather than final.

pip install "tracedistill[train]" datasets
python examples/gsm8k_trace_distillation.py        # ~1h on one RTX 4080 (16 GB)

The competition result

On the hidden test set, the two-phase recipe on Nemotron-3-Nano-30B-A3B reached a silver medal (65 / 4182, Top 1.6%). ~84% of the benchmark is "free" points that almost everyone clears (gravity, unit conversion, Roman numerals, ciphers); the ranking is decided by two hard families — cryptarithm and bit-manipulation — which is exactly what the two-phase Nudge and the hard/easy split target. See docs/solution.md, docs/dataset.md and docs/model-card.md for the full methodology, and competition/ for the verbatim solution.

How it compares

vanilla SFTTrainer tracedistill
Target format freeform text strict <think>…</think>\boxed{} contract
Answer source as written in the trace decoupled — official label re-boxed
Schedule single pass two-phase Train → Nudge
Batching shuffle type-stratified round-robin
LoRA targets attention (+ MLP) + Mamba-2 SSM in_proj/out_proj

Provenance & validation

  • competition/ — the original silver-medal solution, unmodified.
  • tests/golden tests: tests/reference_impl.py holds verbatim copies of the competition's build_records / build_stratified_index_order, and the suite asserts tracedistill reproduces them byte-for-byte over hundreds of fuzzed cases. 48 tests, torch-free, run in well under a second.

The official Kaggle Certificate of Achievement — Silver Medalist, 65th of 4182 teams:

Kaggle Certificate of Achievement — Daoyuan Li, Silver Medalist, NVIDIA Nemotron Model Reasoning Challenge

Citation

@misc{li2026tracedistill,
  title  = {tracedistill: Two-Phase LoRA Trace-Distillation for Reasoning Models},
  author = {Li, Daoyuan},
  year   = {2026},
  note   = {Silver medal (65/4182), NVIDIA Nemotron Model Reasoning Challenge},
  url    = {https://github.com/DaoyuanLi2816/tracedistill}
}

License

MIT. The license covers the code and documentation in this repository; it does not extend to the competition data or the base model, which remain under their respective terms (see data/README.md).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tracedistill-0.1.1.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracedistill-0.1.1-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file tracedistill-0.1.1.tar.gz.

File metadata

  • Download URL: tracedistill-0.1.1.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tracedistill-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d1f230cd0ec386588d98e391fe64f4b956b64248faeb985783ac4f14b6bae4e7
MD5 bd2bcbc4a80a613857a480eb06d27e9c
BLAKE2b-256 08d40d85e0ed27ed0540a8d576a770ed872d921be469038887ea07fd24263d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracedistill-0.1.1.tar.gz:

Publisher: release.yml on DaoyuanLi2816/tracedistill

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tracedistill-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: tracedistill-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tracedistill-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 77271d45216d12d914355ddf43a9022273689e64ce7f8fe149095f6900781ea4
MD5 602e0d2350c2cc553629094df9ea4b39
BLAKE2b-256 7ec21e1c2716ef8bf0d8e799abe29b9743ff6094d05125829d1049d5c3cfd12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracedistill-0.1.1-py3-none-any.whl:

Publisher: release.yml on DaoyuanLi2816/tracedistill

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page