tiiuae / Falcon-H1R-7B

huggingface.co
Total runs: 2.5K
24-hour runs: 0
7-day runs: -93
30-day runs: 1.2K
Model's Last Updated: January 21 2026
text-generation

Introduction of Falcon-H1R-7B

Model Details of Falcon-H1R-7B

drawing

Falcon-H1R-7B

This repository presents Falcon-H1R-7B , a reasoning-specialized model built on top of Falcon-H1-7B-Base and trained via cold-start supervised fine-tuning with long reasoning traces and further enhanced by scaling RL with GRPO. The model demonstrates outstanding performance across various benchmark evaluations, including mathematics, programming, instruction following, and general logic.

Model Description
Training details

For more details about the training protocol of this model, please refer to the Falcon-H1R technical blogpost and Technical Report .

Usage

Currently to use this model, you can either rely on Hugging Face transformers , vLLM or SGLang library.

Inference

Make sure to install the latest version of transformers or vLLM or SGLang .

pip install transformers
pip install mamba-ssm[causal-conv1d]

For vLLM, make sure to install vllm=0.11.0 :

pip install "vllm>=0.11.0"
Sampling Parameters

We recommend using a temperature of 0.6 and top-p as 0.95 with max new tokens up to 65536. For supported frameworks, you can adjust the repetition_penalty and presence_penalty parameters to reduce endless repetitions. For reasoning tasks with continuous batching and requiring higher max new tokens, we recommend to use TP=2.

🤗 Transformers

Refer to the snippet below to run H1R models using 🤗 transformers. Model will generate think content wrapped in a <think>...</think> block, followed by the final response.

Click to expand
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "tiiuae/Falcon-H1R-7B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", dtype="auto")

messages = [
    {"role": "user", "content": "What is the derivative of x^2?"},
]
inputs = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt")

outputs = model.generate(
    inputs.to(model.device),
    max_new_tokens=65536,
    temperature=0.6,
    top_p=0.95,
    do_sample=True,
)
print(tokenizer.decode(outputs[0]))
vLLM

For vLLM, simply start a server by executing the command below:

Click to expand
vllm serve tiiuae/Falcon-H1R-7B \
  --tensor-parallel-size 1 \
  --data-parallel-size 1 \
  --reasoning-parser deepseek_r1

Additional flags:
  • You can reduce --max-model-len to preserve memory. Default value is 262144 which is quite large but not necessary for most scenarios.

vLLM client execution code:

from openai import OpenAI
import json

client = OpenAI(
    base_url="http://localhost:8000/v1",
    api_key="EMPTY",
)

completion = client.chat.completions.create(
    model="tiiuae/Falcon-H1R-7B",
    messages=[
        {"role": "user", "content": "If the product of two numbers is 360 and their GCD is 6, what is their LCM?"},
    ],
    temperature=0.6,
    top_p=0.95,
    max_tokens=65536
)

msg = completion.choices[0].message

print(json.dumps({
    "reasoning": msg.reasoning_content,
    "answer": msg.content
}, indent=2))
SGLang

For SGLang, simply start a server by executing the command below:

Click to expand
python -m sglang.launch_server \
  --model tiiuae/Falcon-H1R-7B \
  --tensor-parallel-size 1 \
  --reasoning-parser deepseek-r1

SGLang client execution code:

from openai import OpenAI
import json

client = OpenAI(
    base_url="http://localhost:30000/v1",
    api_key="EMPTY",
)

completion = client.chat.completions.create(
    model="tiiuae/Falcon-H1R-7B",
    messages=[
        {"role": "user", "content": "How many solutions in integers satisfy ∣x∣+∣y∣=20?"},
    ],
    max_tokens=65536,
    temperature=0.6,
    top_p=0.95,
)

msg = completion.choices[0].message

print(json.dumps({
    "reasoning": msg.reasoning_content,
    "answer": msg.content
}, indent=2))

Evaluation

Falcon-H1R achieves state of art results in reasoning benchmarks.

Category Benchmark Falcon-H1R-7B Qwen3-8B DeepSeek-R1-0528-Qwen3-8B Phi-4-Reasoning-Plus-14B Apriel-1.5-15b-Thinker GPT-OSS-20B Qwen3-32B Nemotron-H-47B-Reasoning
MATH AIME24 88.1 77.9 83.3 77.2 86.2 83.3 79.4 64.6
AIME25 83.1 65.8 75.8 71.2 80.0 84.4 71.0 51.4
HMMT25 64.9 41.0 54.3 47.7 61.0 64.8 49.8 34.2
AMO-BENCH 36.3 14.1 23.3 15.0 22.2 26.0 21.3 7.0
MATH500 97.4 97.4 96.8 95.4 97.2 94.8 96.8 91.4
Code LCBv5-v6 68.6 53.0 57.2 53.1 53.0 72.0 61.0 47.4
SciCode (sub/main) 28.3 / 3.9 28.3 / 6.7 22.2 / 2.6 29.8 / 7.2 31.9 / 8.2 34.9 / 6.2 36.4 / 9.2 26.1 / 4.6
General GPQA-D 61.3 61.2 61.4 67.9 68.2 61.2 67.3 56.8
MMLU-Pro 72.1 63.5 69.1 79.2 76.5 75.6 73.9 78.6
HLE 11.1 4.2 5.6 5.9 12.0 9.8 8.3 4.4
IFBench 53.4 35.3 29.2 51.7 55.8 69.4 35.4 34.3
Agentic Workflows 𝜏²-Bench Telecom 25.4 27.8 68.4 60.2 29.8 11.4
Terminal-Bench Hard 4.9 2.1 1.4 2.1 9.9 9.9 2.8 1.4

TTS represents test time scaling results on few of the benchmarks that we evaluated via DeepConf . Note that AMO-Bench* is limited to the parser-verifiable subset which comprises 39 problems.

Benchmark Falcon-H1R-7B Qwen3-8B DeepSeek-R1-0528-Qwen3-8B Nemotron-H-8B Phi-4-Reasoning-Plus-14B Qwen3-32B
AIME24 96.7 80.0 90.0 53.3 86.7 86.7
AIME25 96.7 80.0 82.8 43.3 83.3 86.7
GPQA-D 70.2 60.9 59.9 61.1 73.2 70.1
AMO-Bench* 35.9 15.4 25.6 7.7 20.5 28.2

Useful links

Citation

If the Falcon-H1R family of reasoning models is helpful to your work, feel free to give us a cite.

@article{falconh1r,
    title = {Falcon-H1R: Pushing the Reasoning Frontiers with a Hybrid Model for Efficient Test-Time Scaling},
    url = {https://github.com/tiiuae/falcon-h1r/blob/main/tech_report.pdf},
    author = {Falcon Reasoning Team, Iheb Chaabane, Puneesh Khanna, Suhail Mohmad, Slim Frikha, Shi Hu, Abdalgader Abubaker, Reda Alami, Mikhail Lubinets, Mohamed El Amine Seddik, Hakim Hacid},
    month = {December},
    year = {2025}
}

Runs of tiiuae Falcon-H1R-7B on huggingface.co

2.5K
Total runs
0
24-hour runs
-7
3-day runs
-93
7-day runs
1.2K
30-day runs

More Information About Falcon-H1R-7B huggingface.co Model

More Falcon-H1R-7B license Visit here:

https://choosealicense.com/licenses/falcon-llm-license

Falcon-H1R-7B huggingface.co

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

Falcon-H1R-7B huggingface.co Url

https://huggingface.co/tiiuae/Falcon-H1R-7B

tiiuae Falcon-H1R-7B online free

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

tiiuae Falcon-H1R-7B online free url in huggingface.co:

https://huggingface.co/tiiuae/Falcon-H1R-7B

Falcon-H1R-7B install

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

Falcon-H1R-7B install url in huggingface.co:

https://huggingface.co/tiiuae/Falcon-H1R-7B

Url of Falcon-H1R-7B

Falcon-H1R-7B huggingface.co Url

Provider of Falcon-H1R-7B huggingface.co

tiiuae
ORGANIZATIONS

Other API from tiiuae

huggingface.co

Total runs: 346.3K
Run Growth: -684.4K
Growth Rate: -197.24%
Updated:October 12 2024
huggingface.co

Total runs: 44.6K
Run Growth: -125.2K
Growth Rate: -280.36%
Updated:December 17 2024
huggingface.co

Total runs: 7.8K
Run Growth: 3.6K
Growth Rate: 47.15%
Updated:July 13 2023
huggingface.co

Total runs: 7.6K
Run Growth: -12.8K
Growth Rate: -164.28%
Updated:August 09 2024
huggingface.co

Total runs: 4.6K
Run Growth: 1.2K
Growth Rate: 26.62%
Updated:September 12 2026
huggingface.co

Total runs: 4.5K
Run Growth: -222
Growth Rate: -4.88%
Updated:December 17 2024
huggingface.co

Total runs: 2.4K
Run Growth: 2.4K
Growth Rate: 100.00%
Updated:December 24 2025
huggingface.co

Total runs: 404
Run Growth: -271
Growth Rate: -70.57%
Updated:November 07 2024
huggingface.co

Total runs: 71
Run Growth: 14
Growth Rate: 19.44%
Updated:September 06 2023
huggingface.co

Total runs: 44
Run Growth: 44
Growth Rate: 100.00%
Updated:March 12 2026