Views
No views yet
allenai/Olmo-3-7B-Think reason at compression level L3 — one named assignment per line.| Accuracy | |
|---|---|
| This adapter | 63.4% |
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{}.| Engine | trl.GRPOTrainer on stock transformers, attention sdpa |
| Reward | correctness, format |
| Loss type | dapo |
| Generations per prompt | 8 |
| Batch | 32 x 2 accum |
| Max completion | 256 tokens |
| Learning rate | 1e-05 |
| KL coefficient (beta) | 0.0 |
| Prompt set | math_grpo.json |
| Trained on | merged_math_olmo/l3 |
| LoRA | r=16, alpha=32 |
| Hardware | 1x NVIDIA A100 80GB |
correctness — +/- the gold solution's step count on an answer match, so harder problems are worth moreformat — the response must be one <think>...</think> block then #### <answer>transformers with sdpa attention, not a fused-kernel wrapper. The fused path produced adapters whose lora_B matrices were all zero — mathematically inert despite loading without error. Every adapter in this collection was verified lora_B != 0 before publishing; 13 that failed that check were withheld.Solve this using Level 3 (Symbolic).
Problem: {your problem}Stacks on the SFT model, not the raw base. Trained against the merged SFT model, so loading it straight ontoallenai/Olmo-3-7B-Thinkwill not reproduce the number above.
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-l3") # 1. SFT for this level
6model = model.merge_and_unload()
7model = PeftModel.from_pretrained(model, "ssurface/cot-dialect-math-olmo3-7b-think-grpo-base-l3") # 2. this adapter
8tok = 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}