Views
No views yet
allenai/Olmo-3-7B-Think. We take the official one-epoch Olmo 3 7B Think checkpoint and train it for roughly one additional epoch (1,850 RLVR steps) on the original Olmo-3 RLVR mixture (allenai/Dolci-Think-RL-7B) — no recipe changes, no new data.| Benchmark (avg) | Olmo-3-7B-Think | Olmo 3.1 7B Think | Δ |
|---|---|---|---|
| Instruction Following | 64.9 | 71.5 | +6.6 🔥 |
| Safety | 70.7 | 74.5 | +3.8 |
| Reasoning | 75.8 | 76.7 | +0.9 |
| SLR-Bench | 15.1 | 15.7 | +0.6 |
| Logic | 59.1 | 59.1 | +0.0 |
| Math | 71.1 | 70.5 | −0.5 |
| Knowledge | 49.2 | 48.7 | −0.5 |
| Coding | 76.6 | 75.0 | −1.6 |
| Chat | 52.1 | 41.6 | −10.5 |
allenai/Olmo-3-7B-Thinkopen-instruct (DeepSpeed ZeRO-3)allenai/Dolci-Think-RL-7B (the original Olmo-3 RLVR mix, unchanged)1from vllm import LLM, SamplingParams
2
3model_id = "LukasHug/Olmo-3.1-7B-Think"
4llm = LLM(model=model_id)
5
6sampling_params = SamplingParams(
7 temperature=0.6,
8 top_p=0.95,
9 max_tokens=32768,
10)
11
12prompt = "Explain why the square root of 2 is irrational."
13outputs = llm.generate(prompt, sampling_params)
14print(outputs[0].outputs[0].text)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "LukasHug/Olmo-3.1-7B-Think"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
6
7messages = [{"role": "user", "content": "Explain why the square root of 2 is irrational."}]
8inputs = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
9out = model.generate(inputs, max_new_tokens=32768, temperature=0.6, top_p=0.95)
10print(tok.decode(out[0][inputs.shape[-1]:], skip_special_tokens=True))💡 This is a Think model with long chain-of-thought — allow a generousmax_tokens(16k–32k) for hard tasks.
allenai/Olmo-3-7B-Think1@inproceedings{helff2025slr,
2 title = {{SLR: Automated Synthesis for Scalable Logical Reasoning}},
3 author = {Helff, Lukas and Omar, Ahmad and Friedrich, Felix and W{\"u}st, Antonia
4 and Shindo, Hikaru and Woydt, Tim and Mitchell, Rupert
5 and Schramowski, Patrick and Stammer, Wolfgang and Kersting, Kristian},
6 booktitle = {Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (ACL 2026)},
7 year = {2026},
8 url = {https://openreview.net/forum?id=omMnuTTEn7}
9}1@inproceedings{helff2026llms,
2 title = {{LLMs Gaming Verifiers: RLVR can Lead to Reward Hacking}},
3 author = {Lukas Helff and Quentin Delfosse and David Steinmann and Ruben H{\"a}rle
4 and Hikaru Shindo and Patrick Schramowski and Wolfgang Stammer
5 and Kristian Kersting and Felix Friedrich},
6 booktitle = {ICLR 2026 Workshop on Logical Reasoning of Large Language Models},
7 year = {2026},
8 url = {https://openreview.net/forum?id=4B3WfRNqe3}
9}