CoolFace
Modelpublic

Wither016/Falcon-H1-1.5B-Instruct

sourceHugging Faceotherupdated 2mo agoView on Hugging Face
0likes37downloads
Model Card

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

Falcon-H1 is a new series of large language models (LLMs) featuring hybrid architecture designs optimized for both high performance and efficiency across diverse use cases. Unlike earlier Falcon models built solely on Transformer or Mamba architectures, Falcon-H1 adopts a parallel hybrid approach that combines Transformer-based attention with State Space Models (SSMs), known for superior long-context memory and computational efficiency. These models excel across reasoning, mathematics, multilingual tasks, instruction following, and scientific knowledge.

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

Falcon-H1 is the latest evolution in the Falcon family of large language models, built upon an advanced hybrid architecture that integrates both State Space Models (SSMs) and Attention Mechanisms in each block. These models span from 500 million to 34 billion parameters, offering high performance and efficiency. They are optimized for diverse use cases, trained with support for 18 core languages (scalable to 100+), and achieve state-of-the-art multilingual and reasoning performances in instruction following, maths, coding, and scientific knowledge tasks.

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 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

You can find all GGUF files compatible with llama.cpp under our official collection

Evaluation

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

TasksFalcon-H1-1.5BQwen3-1.7BQwen2.5-1.5BGemma3-1BLlama3.2-1BFalcon3-1B
General
BBH46.4735.1842.4135.8633.2134.47
ARC-C42.0634.8140.5334.1334.6443.09
TruthfulQA45.9849.3947.0542.1742.0842.31
HellaSwag63.3349.2762.2342.2455.358.53
MMLU62.0357.0459.7640.8745.9346.1
Math
GSM8k74.9869.8357.4742.3844.2844.05
MATH-50074.073.048.445.413.219.8
AMC-2343.5946.0924.0619.227.196.87
AIME-2411.2512.52.290.421.460.41
AIME-259.588.121.251.250.00.21
Science
GPQA26.3427.6826.2628.1926.5926.76
GPQA_Diamond35.1933.3325.5921.5525.0831.31
MMLU-Pro37.823.5428.3514.4616.218.49
MMLU-stem64.1354.354.0435.3939.1639.64
Code
HumanEval68.2967.6856.140.8534.1522.56
HumanEval+61.5960.9650.6137.229.8820.73
MBPP64.8158.7364.8157.6733.620.63
MBPP+56.3549.7456.0850.029.3717.2
LiveCodeBench17.6114.8712.525.092.350.78
CRUXEval39.5718.8834.7612.70.0615.58
Instruction Following
IFEval80.6670.7745.3361.4855.3454.26
Alpaca-Eval28.1821.899.5417.879.386.98
MTBench8.467.617.17.036.376.03
LiveBench34.1340.7321.6518.7914.9714.1

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}
}