Views
No views yet
| Traces | MATH-500 accuracy |
|---|---|
| 250 | 51.0% |
| 500 | 51.2% |
| 1000 (this model) | 52.8% |
| 1396 | 45.6% |
\boxed{}, and a #### n extractor silently scores these models near 0%.| Stage | SFT (distillation), MATH L5 dialect |
| Traces | 1000 |
| Engine | HuggingFace transformers + peft |
| LoRA | r=16, alpha=32, dropout=0.05 |
| Epochs / LR | 3 / 2e-4 cosine, warmup 0.03 |
| Batch | 16 x 4 = 64 effective |
| Hardware | 1x NVIDIA A100 80GB |
Solve this using Level 5 (Extreme).
Problem: {your problem}<think>...</think> then \boxed{answer}.1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4model = AutoModelForCausalLM.from_pretrained("allenai/Olmo-3-7B-Think", torch_dtype="bfloat16", device_map="auto")
5model = PeftModel.from_pretrained(model, "ssurface/cot-dialect-math-olmo3-7b-think-sft-l5-scale1000")