Model reference · open weights

Olmo-3-Think-DPO

Available as managed deployment LLMs allenai Text gen 1 variants 7k dl/mo

Olmo-3-Think-DPO is an open-weight language model from allenai. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byallenai
TypeLanguage models
TaskText gen
Parameters (lead)7.3B
Context64k tokens
Runs withtransformers
Based onallenai/Olmo-3-7B-Think-SFT
Released2025-11-18
Popularity7k downloads / month
LicenceOpen weights

About

What Olmo-3-Think-DPO is

Model Details

Model Card for Olmo 3 Think DPO

We introduce Olmo 3, a new family of 7B and 32B models both Instruct and Think variants. Long chain-of-thought thinking improves reasoning tasks like math and coding.

Olmo is a series of Open language models designed to enable the science of language models. These models are pre-trained on the Dolma 3 dataset and post-trained on the Dolci datasets. We are releasing all code, checkpoints, logs (coming soon), and associated training details.

Read the full model card

The core models released in this batch include the following:

StageOlmo 3 7B ThinkOlmo 3 32B ThinkOlmo 3 7B Instruct
Base ModelOlmo-3-7BOlmo-3-32BOlmo-3-7B
SFTOlmo-3-7B-Think-SFTOlmo-3-32B-Think-SFTOlmo-3-7B-Instruct-SFT
DPOOlmo-3-7B-Think-DPOOlmo-3-32B-Think-DPOOlmo-3-7B-Instruct-DPO
Final Models (RLVR)Olmo-3-7B-ThinkOlmo-3-32B-ThinkOlmo-3-7B-Instruct

Installation

Olmo 3 is supported in transformers 4.57.0 or higher:

pip install transformers>=4.57.0

Inference

You can use OLMo with the standard HuggingFace transformers library:

from transformers import AutoModelForCausalLM, AutoTokenizer
olmo = AutoModelForCausalLM.from_pretrained("allenai/Olmo-3-7B-Think-DPO")
tokenizer = AutoTokenizer.from_pretrained("allenai/Olmo-3-7B-Think-DPO")
message = ["Who would win in a fight - a dinosaur or a cow named Moo Moo?"]
inputs = tokenizer(message, return_tensors='pt', return_token_type_ids=False)
# optional verifying cuda
# inputs = {k: v.to('cuda') for k,v in inputs.items()}
# olmo = olmo.to('cuda')
response = olmo.generate(**inputs, max_new_tokens=100, do_sample=True, top_k=50, top_p=0.95)
print(tokenizer.batch_decode(response, skip_special_tokens=True)[0])
>> 'Okay, so the question is who would win in a fight...'

For faster performance, you can quantize the model using the following method:

AutoModelForCausalLM.from_pretrained("allenai/Olmo-3-7B-Think-DPO",
    torch_dtype=torch.float16,
    load_in_8bit=True)  # Requires bitsandbytes

The quantized model is more sensitive to data types and CUDA operations. To avoid potential issues, it's recommended to pass the inputs directly to CUDA using:

inputs.input_ids.to('cuda')

Chat template

Default System Message

The default system prompt for this model is:

You are Olmo, a helpful AI assistant built by Ai2. Your date cutoff is December 2024, and your model weights are available at https://huggingface.co/allenai.

Chat Format

The chat template for this model is formatted as:

You are Olmo, a helpful AI assistant built by Ai2. Your date cutoff is December 2024, and your model weights are available at https://huggingface.co/allenai.
Who would win in a fight - a dinosaur or a cow named Moo Moo?
Hmm, first I need to break this down. Let me think about the different factors involved here.....
Moo Moo the cow would certinaly win.

Model Description

  • Developed by: Allen Institute for AI (Ai2)
  • Model type: a Transformer style autoregressive language model.
  • Language(s) (NLP): English
  • License: This model is licensed under Apache 2.0. It is intended for research and educational use in accordance with Ai2's Responsible Use Guidelines.
  • Contact: Technical inquiries: olmo@allenai.org. Press: press@allenai.org
  • Date cutoff: Dec. 2024.

Model Sources

  • Project Page: https://allenai.org/olmo
  • Repositories:
    • Open-Instruct for DPO and RLVR: https://github.com/allenai/open-instruct
    • OLMo-Core for pre-training and SFT: https://github.com/allenai/OLMo-core
    • OLMo-Eval for evaluation: https://github.com/allenai/OLMo-Eval
  • Paper: [TBD]

Evaluation

SkillBenchmarkOlmo 3 Think 7B SFTOlmo 3 Think 7B DPOOlmo 3 Think 7BOpenThinker3-7BNemotron-Nano-9B-v2DeepSeek-R1-Distill-Qwen-7BQwen 3 8B (reasoning)Qwen 3 VL 8B ThinkerOpenReasoning Nemotron 7B
MathMATH94.492.495.194.594.487.995.195.294.6
AIME 202469.674.671.667.772.154.974.070.977.0
AIME 202557.662.764.657.258.940.267.861.573.1
OMEGA45.040.537.838.442.428.543.438.143.2
ReasoningBBH84.183.786.677.186.273.584.486.881.3
ZebraLogic57.960.666.534.960.826.185.291.222.4
AGI Eval77.279.181.578.683.169.587.090.181.4
CodingHumanEval+88.291.489.987.489.783.080.283.789.7
MBPP+63.263.064.761.466.163.569.163.061.2
LCB v367.875.175.268.083.458.886.285.582.3
IFIFEval77.975.988.251.786.059.687.485.542.5
IFBench30

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys olmo-3-think-dpo for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (olmo-3-think-dpo below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/chat/completions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"olmo-3-think-dpo","messages":[{"role":"user","content":"Hello"}]}'

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms