CoolFace
Modelpublic

tiiuae/Falcon-H1-3B-Base

sourceHugging Faceotherupdated 1y agoView on Hugging Face
7likes7.9kdownloads
Model Card

<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/falcon_mamba/falcon-h1-logo.png" alt="drawing" width="800"/>

Table of Contents

  1. 1.TL;DR
  2. 2.Model Details
  3. 3.Training Details
  4. 4.Usage
  5. 5.Evaluation
  6. 6.Citation

TL;DR

Model Details

Model Description

  • Developed by: https://www.tii.ae
  • Model type: Causal decoder-only
  • Architecture: Hybrid Transformers + Mamba architecture
  • Language(s) (NLP): English, Multilingual
  • License: Falcon-LLM License

Training details

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

Usage

Currently to use this model you can either rely on Hugging Face transformers, vLLM or our custom fork of llama.cpp library.

Inference

Make sure to install the latest version of transformers or vllm, eventually install these packages from source:

bash
pip install git+https://github.com/huggingface/transformers.git

For vLLM, make sure to install vllm>=0.9.0:

bash
pip install "vllm>=0.9.0"

🤗 transformers

Refer to the snippet below to run H1 models using 🤗 transformers:

python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "tiiuae/Falcon-H1-1B-Base"

model = AutoModelForCausalLM.from_pretrained(
  model_id,
  torch_dtype=torch.bfloat16,
  device_map="auto"
)

# Perform text generation

vLLM

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

# pip install vllm>=0.9.0
vllm serve tiiuae/Falcon-H1-1B-Instruct --tensor-parallel-size 2 --data-parallel-size 1

llama.cpp

While we are working on integrating our architecture directly into llama.cpp library, you can install our fork of the library and use it directly: https://github.com/tiiuae/llama.cpp-Falcon-H1 Use the same installing guidelines as llama.cpp.

Evaluation

Falcon-H1 series perform very well on a variety of tasks, including reasoning tasks.

TasksFalcon-H1-3BQwen3-4BQwen2.5-3BGemma3-4BLlama3.2-3BFalcon3-3B
General
BBH53.1756.8846.440.4139.4544.02
MMLU68.3972.9265.5659.4155.9456.77
ARC-C61.3564.3356.5758.3651.0255.12
HellaSwag73.8575.7474.677.6276.3967.13
Winogrande68.1172.371.0372.7772.2265.11
Math
GSM8k68.3181.6574.637.627.8264.67
MATH lvl525.8324.4716.096.951.7411.56
Science
GPQA32.6334.928.4429.7828.7829.78
MMLU-Pro40.5846.1832.1228.3425.0829.03
MMLU-stem69.5575.5862.2351.747.6755.34
Code
HumanEval59.1574.3942.6833.5429.2736.59
HumanEval+53.6668.935.3728.0526.2231.71
MBPP71.4374.659.5260.0548.9451.85
MBPP+57.9463.7650.5351.3239.4242.06

You can check more in detail on our our release blogpost, detailed benchmarks.

Useful links

Citation

If the Falcon-H1 family of models were helpful to your work, feel free to give us a cite.

@article{falconh1,
    title={Falcon-H1: A Family of Hybrid-Head Language Models Redefining Efficiency and Performance},
    author={Jingwei Zuo and Maksim Velikanov and Ilyas Chahed and Younes Belkada and Dhia Eddine Rhayem and Guillaume Kunsch and Hakim Hacid and Hamza Yous and Brahim Farhat and Ibrahim Khadraoui and Mugariya Farooq and Giulia Campesan and Ruxandra Cojocaru and Yasser Djilali and Shi Hu and Iheb Chaabane and Puneesh Khanna and Mohamed El Amine Seddik and Ngoc Dung Huynh and Phuc Le Khac and Leen AlQadi and Billel Mokeddem and Mohamed Chami and Abdalgader Abubaker and Mikhail Lubinets and Kacper Piskorski and Slim Frikha},
    journal = {arXiv preprint arXiv:2507.22448},
    year={2025}
}