Views
No views yet
allenai/Olmo-3-7B-Think reason at compression level L1 — full natural-language reasoning.| Accuracy | |
|---|---|
| This adapter | 65.6% |
Scored with the project's LaTeX-aware grader (see the scoring note below).
Scoring note. MATH answers are\boxed{}, and the harness that produced the first pass of these evals looked for GSM8K's#### n. That silently scored three of these models at ~0%% when they were near 60%%. Numbers here come from the project's LaTeX-aware grader, which normalizes equivalent forms (\frac{14}{3}==14/3).
\boxed{}.| Stage | supervised fine-tuning (distillation) |
| Engine | HuggingFace transformers + peft |
| LoRA | r=16, alpha=32, dropout=0.05 |
| Epochs | 3 |
| Learning rate | 2e-4, cosine, warmup 0.03 |
| Batch | 16 x 4 grad-accum = 64 effective |
| Max sequence | 1024 |
| Precision | bf16 |
| Hardware | 1x NVIDIA A100 80GB |
Solve this using Level 1 (Verbose).
Problem: {your problem}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-unfiltered-l1")
6tok = AutoTokenizer.from_pretrained("allenai/Olmo-3-7B-Think")1@misc{cot-compression-dialects,
2 title = {Chain-of-Thought Compression Dialects},
3 author = {Frolov, Anatolii},
4 year = {2026}
5}