A LoRA adapter that makes allenai/Olmo-3-7B-Think reason at compression level L3 — one named assignment per line.
This is an ablation, not one of the headline models: it is the same level trained under a different reward, published so the reward-design comparison in the paper can be rerun rather than taken on faith. For the main model at this level see ssurface/cot-dialect-olmo3-7b-think-grpo-l3.
Results
Accuracy
This adapter
80.5%
GSM8K test (n=1317), greedy decoding, single-turn, no exemplars, no self-consistency.
Also evaluated on (out-of-domain, not the headline metric):
Benchmark
n
Accuracy
AIME
60
5.0%
BBH
250
20.8%
SVAMP/transfer
250
74.8%
Training data
GSM8K train, re-expressed at level L3 by a teacher model: 6970 examples, median chain length 90 characters inside <think>.
Across the family the median chain runs from 532 characters at L1 to 16 at L5 — a 33x span. An L3 chain looks like this:
p = 40
w = 2 * 4 = 8
T = p * w = 40 * 8 = 320
Training setup
GRPO on top of the merged level-3 SFT model.
Engine
trl.GRPOTrainer on stock transformers, attention sdpa
Reward
correctness, format, chain, gr3
Loss type
dapo
Generations per prompt
8
Batch
64 x 1 accum
Max completion
256 tokens
Learning rate
1e-05
KL coefficient (beta)
0.0
Prompt set
gsm8k_grpo_balanced_1k.json
Trained on
./merged_olmo/l3
LoRA
r=16, alpha=32
Hardware
1x NVIDIA A100 80GB
Reward components
correctness — +/- the gold solution's step count on an answer match, so harder problems are worth more
format — the response must be one <think>...</think> block then #### <answer>
chain — a verifier: the arithmetic written inside the chain must actually check out
gr3 — multiplicative length rescaling of the positive combined reward, floored at 0.3 -- it scales rewards that are already positive, so it cannot reorder correct above incorrect
Engine note. Stock 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.
Usage
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 onto allenai/Olmo-3-7B-Think will not reproduce the number above.
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
34model = AutoModelForCausalLM.from_pretrained("allenai/Olmo-3-7B-Think", torch_dtype="bfloat16", device_map="auto")5model = PeftModel.from_pretrained(model,"ssurface/cot-dialect-olmo3-7b-think-sft-l3")# 1. SFT for this level6model = model.merge_and_unload()7model = PeftModel.from_pretrained(model,"ssurface/cot-dialect-olmo3-7b-think-grpo-gr3chain-l3")# 2. this adapter8tok = AutoTokenizer.from_pretrained("allenai/Olmo-3-7B-Think")
Limitations
Trained and evaluated on math word problems only.
Accuracy falls with problem difficulty, fastest at the compressed levels.
Single seed unless the repo name says otherwise; differences of a couple of points are within noise (95% half-width ~2.7 pp at n=1317, ~4.4 pp at n=500).
Ablation artefact. It was trained to answer one question about reward design and may be worse than the core model at the same level.
Citation
bibtex
1@misc{cot-compression-dialects,
2 title = {Chain-of-Thought Compression Dialects},
3 author = {Frolov, Anatolii},
4 year = {2026}
5}