Views
No views yet
allenai/Olmo-3-7B-Instruct reason at compression level L1 — full natural-language reasoning.| Accuracy | |
|---|---|
| This adapter | 88.8% |
<think>.Madeline has $48. Her brother has half as much, so the brother's
amount is $48 divided by 2, equaling $24. Adding Madeline's $48 to her
brother's $24 gives $72.| 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-Instruct", torch_dtype="bfloat16", device_map="auto")
5model = PeftModel.from_pretrained(model, "ssurface/cot-dialect-olmo3-7b-instruct-sft-l1")
6tok = AutoTokenizer.from_pretrained("allenai/Olmo-3-7B-Instruct")1@misc{cot-compression-dialects,
2 title = {Chain-of-Thought Compression Dialects},
3 author = {Frolov, Anatolii},
4 year = {2026}
5}