allenai / Olmo-3-7B-Instruct-SFT

huggingface.co
Total runs: 303.3K
24-hour runs: 0
7-day runs: 4.0K
30-day runs: 126.0K
Model's Last Updated: January 06 2026
text-generation

Introduction of Olmo-3-7B-Instruct-SFT

Model Details of Olmo-3-7B-Instruct-SFT

Model Details
OLMo Logo

Model Card for Olmo 3 7B Instruct SFT

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 O pen l anguage mo dels 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.

The core models released in this batch include the following:

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-Instruct-SFT")
tokenizer = AutoTokenizer.from_pretrained("allenai/Olmo-3-7B-Instruct-SFT")
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])
>> 'This is a fun and imaginative question! Let’s break it down...'

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

AutoModelForCausalLM.from_pretrained("allenai/Olmo-3-7B-Instruct-SFT", 
    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:

<|im_start|>system
You are a helpful function-calling AI assistant. 
You do not currently have access to any functions. <functions></functions><|im_end|>
Chat Format

The chat template for this model is formatted as:

<|im_start|>system
You are a helpful function-calling AI assistant. 
You do not currently have access to any functions. <functions></functions><|im_end|>
<|im_start|>user
Who would win in a fight - a dinosaur or a cow named Moo Moo?<|im_end|>
<|im_start|>assistant
This is a fun and imaginative question! Let’s break it down...
Moo Moo the cow would certinaly win.
<|endoftext|>
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: [email protected] . Press: [email protected]
  • Date cutoff: Dec. 2024.
Model Sources
Evaluation
Skill Benchmark Olmo 3 Instruct 7B SFT Olmo 3 Instruct 7B DPO Olmo3 Instruct 7B Qwen 3 8B (no reasoning) Qwen 3 VL 8B Instruct Qwen 2.5 7B Olmo 2 7B Instruct Apertus 8B Instruct Granite 3.3 8B Instruct
Math MATH 65.1 79.6 87.3 82.3 91.6 71.0 30.1 21.9 67.3
AIME 2024 6.7 23.5 44.3 26.2 55.1 11.3 1.3 0.5 7.3
AIME 2025 7.2 20.4 32.5 21.7 43.3 6.3 0.4 0.2 6.3
OMEGA 14.4 22.8 28.9 20.5 32.3 13.7 5.2 5.0 10.7
Reasoning BigBenchHard 51.0 69.3 71.2 73.7 85.6 68.8 43.8 42.2 61.2
ZebraLogic 18.0 28.4 32.9 25.4 64.3 10.7 5.3 5.3 17.6
AGI Eval English 59.2 64.0 64.4 76.0 84.5 69.8 56.1 50.8 64.0
Coding HumanEvalPlus 69.8 72.9 77.2 79.8 82.9 74.9 25.8 34.4 64.0
MBPP+ 56.5 55.9 60.2 64.4 66.3 62.6 40.7 42.1 54.0
LiveCodeBench v3 20.0 18.8 29.5 53.2 55.9 34.5 7.2 7.8 11.5
IF IFEval 81.7 82.0 85.6 86.3 87.8 73.4 72.2 71.4 77.5
IFBench 27.4 29.3 32.3 29.3 34.0 28.4 26.7 22.1 22.3
Knowledge MMLU 67.1 69.1 69.1 80.4 83.6 77.2 61.6 62.7 63.5
QA PopQA 16.5 20.7 14.1 20.4 26.5 21.5 25.5 25.5 28.9
GPQA 30.0 37.9 40.4 44.6 51.1 35.6 31.3 28.8 33.0
Chat AlpacaEval 2 LC 21.8 43.3 40.9 49.8 73.5 23.0 18.3 8.1 28.6
Tool Use SimpleQA 74.2 79.8 79.3 79.0 90.3 78.0
LitQA2 38.0 43.3 38.2 39.6 30.7 29.8
BFCL 48.9 49.6 49.8 60.2 66.2 55.8
Safety Safety 89.2 90.2 87.3 78.0 80.2 73.4 93.1 72.2 73.7
Model Details
Stage 1: SFT
Stage 2:DPO
Stage 3: RLVR
  • reinforcement learning from verifiable rewards on the Dolci-Think-RL-7B dataset. This dataset consits of math, code, instruction-following, and general chat queries.
  • Datasets: Dolci-Think-RL-7B , Dolci-Instruct-RL-7B
Bias, Risks, and Limitations

Like any base language model or fine-tuned model without safety filtering, these models can easily be prompted by users to generate harmful and sensitive content. Such content may also be produced unintentionally, especially in cases involving bias, so we recommend that users consider the risks when applying this technology. Additionally, many statements from OLMo or any LLM are often inaccurate, so facts should be verified.

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 .

Citation

A technical manuscript is forthcoming!

Model Card Contact

For errors in this model card, contact [email protected] .

Runs of allenai Olmo-3-7B-Instruct-SFT on huggingface.co

303.3K
Total runs
0
24-hour runs
0
3-day runs
4.0K
7-day runs
126.0K
30-day runs

More Information About Olmo-3-7B-Instruct-SFT huggingface.co Model

More Olmo-3-7B-Instruct-SFT license Visit here:

https://choosealicense.com/licenses/apache-2.0

Olmo-3-7B-Instruct-SFT huggingface.co

Olmo-3-7B-Instruct-SFT huggingface.co is an AI model on huggingface.co that provides Olmo-3-7B-Instruct-SFT's model effect (), which can be used instantly with this allenai Olmo-3-7B-Instruct-SFT model. huggingface.co supports a free trial of the Olmo-3-7B-Instruct-SFT model, and also provides paid use of the Olmo-3-7B-Instruct-SFT. Support call Olmo-3-7B-Instruct-SFT model through api, including Node.js, Python, http.

Olmo-3-7B-Instruct-SFT huggingface.co Url

https://huggingface.co/allenai/Olmo-3-7B-Instruct-SFT

allenai Olmo-3-7B-Instruct-SFT online free

Olmo-3-7B-Instruct-SFT huggingface.co is an online trial and call api platform, which integrates Olmo-3-7B-Instruct-SFT's modeling effects, including api services, and provides a free online trial of Olmo-3-7B-Instruct-SFT, you can try Olmo-3-7B-Instruct-SFT online for free by clicking the link below.

allenai Olmo-3-7B-Instruct-SFT online free url in huggingface.co:

https://huggingface.co/allenai/Olmo-3-7B-Instruct-SFT

Olmo-3-7B-Instruct-SFT install

Olmo-3-7B-Instruct-SFT is an open source model from GitHub that offers a free installation service, and any user can find Olmo-3-7B-Instruct-SFT on GitHub to install. At the same time, huggingface.co provides the effect of Olmo-3-7B-Instruct-SFT install, users can directly use Olmo-3-7B-Instruct-SFT installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Olmo-3-7B-Instruct-SFT install url in huggingface.co:

https://huggingface.co/allenai/Olmo-3-7B-Instruct-SFT

Url of Olmo-3-7B-Instruct-SFT

Olmo-3-7B-Instruct-SFT huggingface.co Url

Provider of Olmo-3-7B-Instruct-SFT huggingface.co

allenai
ORGANIZATIONS

Other API from allenai

huggingface.co

Total runs: 1.1M
Run Growth: 324.8K
Growth Rate: 30.50%
Updated:December 04 2024
huggingface.co

Total runs: 151.7K
Run Growth: 19.3K
Growth Rate: 13.21%
Updated:July 28 2025
huggingface.co

Total runs: 136.2K
Run Growth: -2.6K
Growth Rate: -1.93%
Updated:January 23 2026
huggingface.co

Total runs: 100.0K
Run Growth: 37.8K
Growth Rate: 37.79%
Updated:January 23 2026
huggingface.co

Total runs: 93.6K
Run Growth: -141.3K
Growth Rate: -123.42%
Updated:January 23 2026
huggingface.co

Total runs: 55.7K
Run Growth: 53.5K
Growth Rate: 95.99%
Updated:October 10 2025
huggingface.co

Total runs: 38.2K
Run Growth: 10.4K
Growth Rate: 27.18%
Updated:August 15 2024
huggingface.co

Total runs: 24.7K
Run Growth: -3.7K
Growth Rate: -14.81%
Updated:January 25 2023
huggingface.co

Total runs: 20.3K
Run Growth: 1.7K
Growth Rate: 8.20%
Updated:October 18 2023
huggingface.co

Total runs: 13.3K
Run Growth: 7.5K
Growth Rate: 65.13%
Updated:May 23 2026
huggingface.co

Total runs: 7.2K
Run Growth: 1.3K
Growth Rate: 18.08%
Updated:April 11 2026
huggingface.co

Total runs: 5.1K
Run Growth: 672
Growth Rate: 13.17%
Updated:December 04 2024
huggingface.co

Total runs: 4.4K
Run Growth: -1.2K
Growth Rate: -27.97%
Updated:July 17 2024
huggingface.co

Total runs: 4.3K
Run Growth: -22.2K
Growth Rate: -497.07%
Updated:June 23 2026
huggingface.co

Total runs: 3.9K
Run Growth: -788
Growth Rate: -20.07%
Updated:March 19 2026
huggingface.co

Total runs: 3.9K
Run Growth: -341
Growth Rate: -8.79%
Updated:June 23 2026
huggingface.co

Total runs: 3.3K
Run Growth: -998
Growth Rate: -30.33%
Updated:July 17 2024
huggingface.co

Total runs: 3.0K
Run Growth: 3.0K
Growth Rate: 100.00%
Updated:June 23 2026
huggingface.co

Total runs: 2.6K
Run Growth: -3.3K
Growth Rate: -127.96%
Updated:May 21 2026
huggingface.co

Total runs: 2.0K
Run Growth: -2.4K
Growth Rate: -119.11%
Updated:October 09 2025
huggingface.co

Total runs: 1.7K
Run Growth: -390
Growth Rate: -22.47%
Updated:April 11 2026