reasoning-degeneration-dev/algo-sft-long-arithmetic-standard
08
Long Arithmetic — Standard
LoRA adapter for Qwen/Qwen2.5-1.5B-Instruct fine-tuned on long arithmetic via Algorithmic Template SFT.
Part of the Algorithmic SFT vs Distillation experiment studying whether deterministic algorithmic templates teach procedural reasoning more effectively than distillation from large reasoning models.
Training
Evaluation (v3, MAX_TOKENS=32768)
Notes
Strong in-distribution but collapses on structural OOD (chain operations). Neither algo nor distill generalizes here.
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
model = PeftModel.from_pretrained(base, "reasoning-degeneration-dev/algo-sft-long-arithmetic-standard")
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")Related Datasets
- Training data (63K algo traces)
- Distillation data (24K QwQ traces)
- Eval results (aggregate scores)
- Eval questions (11K test/val/harder/OOD)
