Model reference · open weights

OLMo-2-0425-DPO

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

OLMo-2-0425-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

Makerallenai
TypeLanguage models
TaskText gen
Context4k tokens
Runs withtransformers
Based onallenai/OLMo-2-0425-1B-SFT
Released2025-04-28
Popularity10k downloads / month
LicenceOpen weights

About

What OLMo-2-0425-DPO is

OLMo 2 1B DPO April 2025 is post-trained variant of the allenai/OLMo-2-0425-1B-SFT model, which has undergone supervised finetuning on an OLMo-specific variant of the Tülu 3 dataset and further DPO training on this dataset. Tülu 3 is designed for state-of-the-art performance on a diversity of tasks in addition to chat, such as MATH, GSM8K, and IFEval. Check out the OLMo 2 paper or Tülu 3 paper for more details!

OLMo is a series of Open Language Models designed to enable the science of language models. These models are trained on the Dolma dataset. We are releasing all code, checkpoints, logs, and associated training details.

Model description

  • Model type: A model trained on a mix of publicly available, synthetic and human-created datasets.
  • Language(s) (NLP): Primarily English
  • License: Apache 2.0
  • Finetuned from model: allenai/OLMo-2-0425-1B-SFT

Model Sources

  • Project Page: https://allenai.org/olmo
  • Repositories:
    • Core repo (training, inference, fine-tuning etc.): https://github.com/allenai/OLMo-core
    • Evaluation code: https://github.com/allenai/olmes
    • Further fine-tuning code: https://github.com/allenai/open-instruct
  • Paper: https://arxiv.org/abs/2501.00656
  • Demo: https://playground.allenai.org/

Installation

OLMo 2 1B is supported in transformers v4.48 or higher:

pip install transformers>=4.48

If using vLLM, you will need to install from the main branch until v0.7.4 is released. Please

Using the model

Loading with HuggingFace

To load the model with HuggingFace, use the following snippet:

from transformers import AutoModelForCausalLM

olmo_model = AutoModelForCausalLM.from_pretrained("allenai/OLMo-2-0425-1B-DPO")

Chat template

NOTE: This is different than previous OLMo 2 and Tülu 3 models due to a minor change in configuration. It does NOT have the bos token before the rest. Our other models have at the beginning of the chat template.

The chat template for our models is formatted as:

How are you doing?
I'm just a computer program, so I don't have feelings, but I'm functioning as expected. How can I assist you today?

Or with new lines expanded:

How are you doing?
I'm just a computer program, so I don't have feelings, but I'm functioning as expected. How can I assist you today?

It is embedded within the tokenizer as well, for tokenizer.apply_chat_template.

Intermediate Checkpoints

To facilitate research on RL finetuning, we have released our intermediate checkpoints during the model's RLVR training. The model weights are saved every 20 training steps, and can be accessible in the revisions of the HuggingFace repository. For example, you can load with:

olmo_model = AutoModelForCausalLM.from_pretrained("allenai/OLMo-2-0425-1B-DPO", revision="step_200")

Bias, Risks, and Limitations

The OLMo-2 models have limited safety training, but are not deployed automatically with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so).

Performance

ModelAverageAlpacaEval 2 LCBBHDROPGSM8KIFEvalMATHMMLUSafetyPopQATruthQA
OLMo 1B 072424.42.429.927.910.825.32.236.652.012.144.3
SmolLM2 1.7B34.25.839.830.945.351.620.334.352.416.445.3
Gemma 3 1B38.320.439.425.135.060.640.338.970.29.643.8
Llama 3.1 1B39.310.140.232.245.454.021.646.787.213.841.5
Qwen 2.5 1.5B41.77.445.813.466.244.240.659.777.615.546.5
---
OLMo 2 1B SFT36.92.432.833.852.150.513.236.493.212.742.1
OLMo 2 1B DPO40.69.533.034.559.067.114.139.989.912.346.4
OLMo 2 1B42.79.135.034.668.370.120.740.087.612.948.7

License and use

OLMo 2 is licensed under the Apache 2.0 license. OLMo 2 is intended for research and educational use. For more information, please see our Responsible Use Guidelines.

Citation

@article{olmo20242olmo2furious,
      title={2 OLMo 2 Furious},
      author={Team OLMo and Pete Walsh and Luca Soldaini and Dirk Groeneveld and Kyle Lo and Shane Arora and Akshita Bhagia and Yuling Gu and Shengyi Huang and Matt Jordan and Nathan Lambert and Dustin Schwenk and Oyvind Tafjord and Taira Anderson and David Atkinson and Faeze Brahman and Christopher Clark and Pradeep Dasigi and Nouha Dziri and Michal Guerquin and Hamish Ivison and Pang Wei Koh and Jiacheng Liu and Saumya Malik and William Merrill and Lester James V. Miranda and Jacob Morrison and Tyler Murray and Crystal Nam and Valentina Pyatkin and Aman Rangapur and Michael Schmitz and Sam Skjonsberg and David Wadden and Christopher Wilhelm and Michael Wilson and Luke Zettlemoyer and Ali Farhadi and Noah A. Smith and Hannaneh Hajishirzi},
      year={2024},
      eprint={2501.00656},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2501.00656},
}

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-2-0425-dpo for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (olmo-2-0425-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-2-0425-dpo","messages":[{"role":"user","content":"Hello"}]}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

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