Text Generation
Transformers
Safetensors
falcon_h1
falcon-h1
heretic
uncensored
decensored
abliterated
conversational
Instructions to use megabytes/Falcon-H1-0.5B-Instruct-heretic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use megabytes/Falcon-H1-0.5B-Instruct-heretic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="megabytes/Falcon-H1-0.5B-Instruct-heretic") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("megabytes/Falcon-H1-0.5B-Instruct-heretic") model = AutoModelForCausalLM.from_pretrained("megabytes/Falcon-H1-0.5B-Instruct-heretic", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use megabytes/Falcon-H1-0.5B-Instruct-heretic with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "megabytes/Falcon-H1-0.5B-Instruct-heretic" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "megabytes/Falcon-H1-0.5B-Instruct-heretic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/megabytes/Falcon-H1-0.5B-Instruct-heretic
- SGLang
How to use megabytes/Falcon-H1-0.5B-Instruct-heretic with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "megabytes/Falcon-H1-0.5B-Instruct-heretic" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "megabytes/Falcon-H1-0.5B-Instruct-heretic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "megabytes/Falcon-H1-0.5B-Instruct-heretic" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "megabytes/Falcon-H1-0.5B-Instruct-heretic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use megabytes/Falcon-H1-0.5B-Instruct-heretic with Docker Model Runner:
docker model run hf.co/megabytes/Falcon-H1-0.5B-Instruct-heretic
Fixed base model pointer to Instruct
Browse files
README.md
CHANGED
|
@@ -1,173 +1,173 @@
|
|
| 1 |
-
---
|
| 2 |
-
library_name: transformers
|
| 3 |
-
tags:
|
| 4 |
-
- falcon-h1
|
| 5 |
-
- heretic
|
| 6 |
-
- uncensored
|
| 7 |
-
- decensored
|
| 8 |
-
- abliterated
|
| 9 |
-
license: other
|
| 10 |
-
license_name: falcon-llm-license
|
| 11 |
-
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
| 12 |
-
base_model: tiiuae/Falcon-H1-0.5B-
|
| 13 |
-
inference: true
|
| 14 |
-
---
|
| 15 |
-
# This is a decensored version of [tiiuae/Falcon-H1-0.5B-Instruct](https://huggingface.co/tiiuae/Falcon-H1-0.5B-Instruct), made using [Heretic](https://github.com/p-e-w/heretic) v1.1.0
|
| 16 |
-
|
| 17 |
-
## Abliteration parameters
|
| 18 |
-
|
| 19 |
-
| Parameter | Value |
|
| 20 |
-
| :-------- | :---: |
|
| 21 |
-
| **direction_index** | per layer |
|
| 22 |
-
| **attn.o_proj.max_weight** | 1.49 |
|
| 23 |
-
| **attn.o_proj.max_weight_position** | 23.82 |
|
| 24 |
-
| **attn.o_proj.min_weight** | 1.27 |
|
| 25 |
-
| **attn.o_proj.min_weight_distance** | 20.96 |
|
| 26 |
-
| **mlp.down_proj.max_weight** | 1.47 |
|
| 27 |
-
| **mlp.down_proj.max_weight_position** | 21.57 |
|
| 28 |
-
| **mlp.down_proj.min_weight** | 1.46 |
|
| 29 |
-
| **mlp.down_proj.min_weight_distance** | 12.86 |
|
| 30 |
-
|
| 31 |
-
## Performance
|
| 32 |
-
|
| 33 |
-
| Metric | This model | Original model ([tiiuae/Falcon-H1-0.5B-Instruct](https://huggingface.co/tiiuae/Falcon-H1-0.5B-Instruct)) |
|
| 34 |
-
| :----- | :--------: | :---------------------------: |
|
| 35 |
-
| **KL divergence** | 0.0954 | 0 *(by definition)* |
|
| 36 |
-
| **Refusals** | 30/100 | 91/100 |
|
| 37 |
-
|
| 38 |
-
-----
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/falcon_mamba/falcon-h1-logo.png" alt="drawing" width="800"/>
|
| 42 |
-
|
| 43 |
-
# Table of Contents
|
| 44 |
-
|
| 45 |
-
0. [TL;DR](#TL;DR)
|
| 46 |
-
1. [Model Details](#model-details)
|
| 47 |
-
2. [Training Details](#training-details)
|
| 48 |
-
3. [Usage](#usage)
|
| 49 |
-
4. [Evaluation](#evaluation)
|
| 50 |
-
5. [Citation](#citation)
|
| 51 |
-
|
| 52 |
-
# TL;DR
|
| 53 |
-
|
| 54 |
-
# Model Details
|
| 55 |
-
|
| 56 |
-
## Model Description
|
| 57 |
-
|
| 58 |
-
- **Developed by:** [https://www.tii.ae](https://www.tii.ae)
|
| 59 |
-
- **Model type:** Causal decoder-only
|
| 60 |
-
- **Architecture:** Hybrid Transformers + Mamba architecture
|
| 61 |
-
- **Language(s) (NLP):** English
|
| 62 |
-
- **License:** Falcon-LLM License
|
| 63 |
-
|
| 64 |
-
# Training details
|
| 65 |
-
|
| 66 |
-
For more details about the training protocol of this model, please refer to the [Falcon-H1 technical blogpost](https://falcon-lm.github.io/blog/falcon-h1/) and [Technical Report](https://arxiv.org/abs/2507.22448).
|
| 67 |
-
|
| 68 |
-
# Usage
|
| 69 |
-
|
| 70 |
-
Currently to use this model you can either rely on Hugging Face `transformers`, `vLLM` or `llama.cpp` library.
|
| 71 |
-
|
| 72 |
-
## Inference
|
| 73 |
-
|
| 74 |
-
Make sure to install the latest version of `transformers` or `vllm`, eventually install these packages from source:
|
| 75 |
-
|
| 76 |
-
```bash
|
| 77 |
-
pip install git+https://github.com/huggingface/transformers.git
|
| 78 |
-
```
|
| 79 |
-
|
| 80 |
-
For vLLM, make sure to install `vllm>=0.9.0`:
|
| 81 |
-
|
| 82 |
-
```bash
|
| 83 |
-
pip install "vllm>=0.9.0"
|
| 84 |
-
```
|
| 85 |
-
|
| 86 |
-
### 🤗 transformers
|
| 87 |
-
|
| 88 |
-
Refer to the snippet below to run H1 models using 🤗 transformers:
|
| 89 |
-
|
| 90 |
-
```python
|
| 91 |
-
import torch
|
| 92 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 93 |
-
|
| 94 |
-
model_id = "tiiuae/Falcon-H1-1B-Base"
|
| 95 |
-
|
| 96 |
-
model = AutoModelForCausalLM.from_pretrained(
|
| 97 |
-
model_id,
|
| 98 |
-
torch_dtype=torch.bfloat16,
|
| 99 |
-
device_map="auto"
|
| 100 |
-
)
|
| 101 |
-
|
| 102 |
-
# Perform text generation
|
| 103 |
-
```
|
| 104 |
-
|
| 105 |
-
### vLLM
|
| 106 |
-
|
| 107 |
-
For vLLM, simply start a server by executing the command below:
|
| 108 |
-
|
| 109 |
-
```
|
| 110 |
-
# pip install vllm>=0.9.0
|
| 111 |
-
vllm serve tiiuae/Falcon-H1-1B-Instruct --tensor-parallel-size 2 --data-parallel-size 1
|
| 112 |
-
```
|
| 113 |
-
|
| 114 |
-
### `llama.cpp`
|
| 115 |
-
|
| 116 |
-
You can find all GGUF files compatible with `llama.cpp` under [our official collection](https://huggingface.co/collections/tiiuae/falcon-h1-6819f2795bc406da60fab8df)
|
| 117 |
-
|
| 118 |
-
# Evaluation
|
| 119 |
-
|
| 120 |
-
Falcon-H1 series perform very well on a variety of tasks, including reasoning tasks.
|
| 121 |
-
|
| 122 |
-
| Tasks | Falcon-H1-0.5B | Qwen3-0.6B | Qwen2.5-0.5B | Gemma3-1B | Llama3.2-1B | Falcon3-1B |
|
| 123 |
-
| --- | --- | --- | --- | --- | --- | --- |
|
| 124 |
-
| **General** | | | | | |
|
| 125 |
-
| BBH | **42.91** | 32.95 | 33.26 | 35.86 | 33.21 | 34.47 |
|
| 126 |
-
| ARC-C | 37.8 | 31.06 | 33.28 | 34.13 | 34.64 | **43.09** |
|
| 127 |
-
| TruthfulQA | 44.12 | **51.65** | 46.19 | 42.17 | 42.08 | 42.31 |
|
| 128 |
-
| HellaSwag | 51.93 | 42.17 | 52.38 | 42.24 | 55.3 | **58.53** |
|
| 129 |
-
| MMLU | **53.4** | 42.98 | 46.07 | 40.87 | 45.93 | 46.1 |
|
| 130 |
-
| **Math** | | | | | |
|
| 131 |
-
| GSM8k | **68.39** | 42.61 | 38.51 | 42.38 | 44.28 | 44.05 |
|
| 132 |
-
| MATH-500 | **58.4** | 46.0 | 27.8 | 45.4 | 13.2 | 19.8 |
|
| 133 |
-
| AMC-23 | **33.13** | 27.97 | 12.5 | 19.22 | 7.19 | 6.87 |
|
| 134 |
-
| AIME-24 | **3.75** | 2.71 | 0.62 | 0.42 | 1.46 | 0.41 |
|
| 135 |
-
| AIME-25 | **4.38** | 1.67 | 0.21 | 1.25 | 0.0 | 0.21 |
|
| 136 |
-
| **Science** | | | | | |
|
| 137 |
-
| GPQA | **29.95** | 26.09 | 26.85 | 28.19 | 26.59 | 26.76 |
|
| 138 |
-
| GPQA_Diamond | 27.95 | 25.08 | 24.24 | 21.55 | 25.08 | **31.31** |
|
| 139 |
-
| MMLU-Pro | **31.03** | 16.95 | 18.73 | 14.46 | 16.2 | 18.49 |
|
| 140 |
-
| MMLU-stem | **54.55** | 39.3 | 39.83 | 35.39 | 39.16 | 39.64 |
|
| 141 |
-
| **Code** | | | | | |
|
| 142 |
-
| HumanEval | **51.83** | 41.46 | 36.59 | 40.85 | 34.15 | 22.56 |
|
| 143 |
-
| HumanEval+ | **45.12** | 37.19 | 32.32 | 37.2 | 29.88 | 20.73 |
|
| 144 |
-
| MBPP | 42.59 | 56.08 | 46.83 | **57.67** | 33.6 | 20.63 |
|
| 145 |
-
| MBPP+ | 33.07 | 47.08 | 39.68 | **50.0** | 29.37 | 17.2 |
|
| 146 |
-
| LiveCodeBench | 7.05 | **9.78** | 2.94 | 5.09 | 2.35 | 0.78 |
|
| 147 |
-
| CRUXEval | **25.75** | 23.63 | 14.88 | 12.7 | 0.06 | 15.58 |
|
| 148 |
-
| **Instruction Following** | | | | | |
|
| 149 |
-
| IFEval | **72.07** | 62.16 | 32.11 | 61.48 | 55.34 | 54.26 |
|
| 150 |
-
| Alpaca-Eval | 10.79 | 9.59 | 3.26 | **17.87** | 9.38 | 6.98 |
|
| 151 |
-
| MTBench | **7.06** | 5.75 | 4.71 | 7.03 | 6.37 | 6.03 |
|
| 152 |
-
| LiveBench | 20.8 | **27.78** | 14.27 | 18.79 | 14.97 | 14.1 |
|
| 153 |
-
|
| 154 |
-
You can check more in detail on our [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/), detailed benchmarks.
|
| 155 |
-
|
| 156 |
-
# Useful links
|
| 157 |
-
|
| 158 |
-
- View [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/).
|
| 159 |
-
- View [our technical report](https://arxiv.org/abs/2507.22448).
|
| 160 |
-
- Feel free to join [our discord server](https://discord.gg/trwMYP9PYm) if you have any questions or to interact with our researchers and developers.
|
| 161 |
-
|
| 162 |
-
# Citation
|
| 163 |
-
|
| 164 |
-
If the Falcon-H1 family of models were helpful to your work, feel free to give us a cite.
|
| 165 |
-
|
| 166 |
-
```
|
| 167 |
-
@article{falconh1,
|
| 168 |
-
title={Falcon-H1: A Family of Hybrid-Head Language Models Redefining Efficiency and Performance},
|
| 169 |
-
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},
|
| 170 |
-
journal = {arXiv preprint arXiv:2507.22448},
|
| 171 |
-
year={2025}
|
| 172 |
-
}
|
| 173 |
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- falcon-h1
|
| 5 |
+
- heretic
|
| 6 |
+
- uncensored
|
| 7 |
+
- decensored
|
| 8 |
+
- abliterated
|
| 9 |
+
license: other
|
| 10 |
+
license_name: falcon-llm-license
|
| 11 |
+
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
| 12 |
+
base_model: tiiuae/Falcon-H1-0.5B-Instruct
|
| 13 |
+
inference: true
|
| 14 |
+
---
|
| 15 |
+
# This is a decensored version of [tiiuae/Falcon-H1-0.5B-Instruct](https://huggingface.co/tiiuae/Falcon-H1-0.5B-Instruct), made using [Heretic](https://github.com/p-e-w/heretic) v1.1.0
|
| 16 |
+
|
| 17 |
+
## Abliteration parameters
|
| 18 |
+
|
| 19 |
+
| Parameter | Value |
|
| 20 |
+
| :-------- | :---: |
|
| 21 |
+
| **direction_index** | per layer |
|
| 22 |
+
| **attn.o_proj.max_weight** | 1.49 |
|
| 23 |
+
| **attn.o_proj.max_weight_position** | 23.82 |
|
| 24 |
+
| **attn.o_proj.min_weight** | 1.27 |
|
| 25 |
+
| **attn.o_proj.min_weight_distance** | 20.96 |
|
| 26 |
+
| **mlp.down_proj.max_weight** | 1.47 |
|
| 27 |
+
| **mlp.down_proj.max_weight_position** | 21.57 |
|
| 28 |
+
| **mlp.down_proj.min_weight** | 1.46 |
|
| 29 |
+
| **mlp.down_proj.min_weight_distance** | 12.86 |
|
| 30 |
+
|
| 31 |
+
## Performance
|
| 32 |
+
|
| 33 |
+
| Metric | This model | Original model ([tiiuae/Falcon-H1-0.5B-Instruct](https://huggingface.co/tiiuae/Falcon-H1-0.5B-Instruct)) |
|
| 34 |
+
| :----- | :--------: | :---------------------------: |
|
| 35 |
+
| **KL divergence** | 0.0954 | 0 *(by definition)* |
|
| 36 |
+
| **Refusals** | 30/100 | 91/100 |
|
| 37 |
+
|
| 38 |
+
-----
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/falcon_mamba/falcon-h1-logo.png" alt="drawing" width="800"/>
|
| 42 |
+
|
| 43 |
+
# Table of Contents
|
| 44 |
+
|
| 45 |
+
0. [TL;DR](#TL;DR)
|
| 46 |
+
1. [Model Details](#model-details)
|
| 47 |
+
2. [Training Details](#training-details)
|
| 48 |
+
3. [Usage](#usage)
|
| 49 |
+
4. [Evaluation](#evaluation)
|
| 50 |
+
5. [Citation](#citation)
|
| 51 |
+
|
| 52 |
+
# TL;DR
|
| 53 |
+
|
| 54 |
+
# Model Details
|
| 55 |
+
|
| 56 |
+
## Model Description
|
| 57 |
+
|
| 58 |
+
- **Developed by:** [https://www.tii.ae](https://www.tii.ae)
|
| 59 |
+
- **Model type:** Causal decoder-only
|
| 60 |
+
- **Architecture:** Hybrid Transformers + Mamba architecture
|
| 61 |
+
- **Language(s) (NLP):** English
|
| 62 |
+
- **License:** Falcon-LLM License
|
| 63 |
+
|
| 64 |
+
# Training details
|
| 65 |
+
|
| 66 |
+
For more details about the training protocol of this model, please refer to the [Falcon-H1 technical blogpost](https://falcon-lm.github.io/blog/falcon-h1/) and [Technical Report](https://arxiv.org/abs/2507.22448).
|
| 67 |
+
|
| 68 |
+
# Usage
|
| 69 |
+
|
| 70 |
+
Currently to use this model you can either rely on Hugging Face `transformers`, `vLLM` or `llama.cpp` library.
|
| 71 |
+
|
| 72 |
+
## Inference
|
| 73 |
+
|
| 74 |
+
Make sure to install the latest version of `transformers` or `vllm`, eventually install these packages from source:
|
| 75 |
+
|
| 76 |
+
```bash
|
| 77 |
+
pip install git+https://github.com/huggingface/transformers.git
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
For vLLM, make sure to install `vllm>=0.9.0`:
|
| 81 |
+
|
| 82 |
+
```bash
|
| 83 |
+
pip install "vllm>=0.9.0"
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
### 🤗 transformers
|
| 87 |
+
|
| 88 |
+
Refer to the snippet below to run H1 models using 🤗 transformers:
|
| 89 |
+
|
| 90 |
+
```python
|
| 91 |
+
import torch
|
| 92 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 93 |
+
|
| 94 |
+
model_id = "tiiuae/Falcon-H1-1B-Base"
|
| 95 |
+
|
| 96 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 97 |
+
model_id,
|
| 98 |
+
torch_dtype=torch.bfloat16,
|
| 99 |
+
device_map="auto"
|
| 100 |
+
)
|
| 101 |
+
|
| 102 |
+
# Perform text generation
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
### vLLM
|
| 106 |
+
|
| 107 |
+
For vLLM, simply start a server by executing the command below:
|
| 108 |
+
|
| 109 |
+
```
|
| 110 |
+
# pip install vllm>=0.9.0
|
| 111 |
+
vllm serve tiiuae/Falcon-H1-1B-Instruct --tensor-parallel-size 2 --data-parallel-size 1
|
| 112 |
+
```
|
| 113 |
+
|
| 114 |
+
### `llama.cpp`
|
| 115 |
+
|
| 116 |
+
You can find all GGUF files compatible with `llama.cpp` under [our official collection](https://huggingface.co/collections/tiiuae/falcon-h1-6819f2795bc406da60fab8df)
|
| 117 |
+
|
| 118 |
+
# Evaluation
|
| 119 |
+
|
| 120 |
+
Falcon-H1 series perform very well on a variety of tasks, including reasoning tasks.
|
| 121 |
+
|
| 122 |
+
| Tasks | Falcon-H1-0.5B | Qwen3-0.6B | Qwen2.5-0.5B | Gemma3-1B | Llama3.2-1B | Falcon3-1B |
|
| 123 |
+
| --- | --- | --- | --- | --- | --- | --- |
|
| 124 |
+
| **General** | | | | | |
|
| 125 |
+
| BBH | **42.91** | 32.95 | 33.26 | 35.86 | 33.21 | 34.47 |
|
| 126 |
+
| ARC-C | 37.8 | 31.06 | 33.28 | 34.13 | 34.64 | **43.09** |
|
| 127 |
+
| TruthfulQA | 44.12 | **51.65** | 46.19 | 42.17 | 42.08 | 42.31 |
|
| 128 |
+
| HellaSwag | 51.93 | 42.17 | 52.38 | 42.24 | 55.3 | **58.53** |
|
| 129 |
+
| MMLU | **53.4** | 42.98 | 46.07 | 40.87 | 45.93 | 46.1 |
|
| 130 |
+
| **Math** | | | | | |
|
| 131 |
+
| GSM8k | **68.39** | 42.61 | 38.51 | 42.38 | 44.28 | 44.05 |
|
| 132 |
+
| MATH-500 | **58.4** | 46.0 | 27.8 | 45.4 | 13.2 | 19.8 |
|
| 133 |
+
| AMC-23 | **33.13** | 27.97 | 12.5 | 19.22 | 7.19 | 6.87 |
|
| 134 |
+
| AIME-24 | **3.75** | 2.71 | 0.62 | 0.42 | 1.46 | 0.41 |
|
| 135 |
+
| AIME-25 | **4.38** | 1.67 | 0.21 | 1.25 | 0.0 | 0.21 |
|
| 136 |
+
| **Science** | | | | | |
|
| 137 |
+
| GPQA | **29.95** | 26.09 | 26.85 | 28.19 | 26.59 | 26.76 |
|
| 138 |
+
| GPQA_Diamond | 27.95 | 25.08 | 24.24 | 21.55 | 25.08 | **31.31** |
|
| 139 |
+
| MMLU-Pro | **31.03** | 16.95 | 18.73 | 14.46 | 16.2 | 18.49 |
|
| 140 |
+
| MMLU-stem | **54.55** | 39.3 | 39.83 | 35.39 | 39.16 | 39.64 |
|
| 141 |
+
| **Code** | | | | | |
|
| 142 |
+
| HumanEval | **51.83** | 41.46 | 36.59 | 40.85 | 34.15 | 22.56 |
|
| 143 |
+
| HumanEval+ | **45.12** | 37.19 | 32.32 | 37.2 | 29.88 | 20.73 |
|
| 144 |
+
| MBPP | 42.59 | 56.08 | 46.83 | **57.67** | 33.6 | 20.63 |
|
| 145 |
+
| MBPP+ | 33.07 | 47.08 | 39.68 | **50.0** | 29.37 | 17.2 |
|
| 146 |
+
| LiveCodeBench | 7.05 | **9.78** | 2.94 | 5.09 | 2.35 | 0.78 |
|
| 147 |
+
| CRUXEval | **25.75** | 23.63 | 14.88 | 12.7 | 0.06 | 15.58 |
|
| 148 |
+
| **Instruction Following** | | | | | |
|
| 149 |
+
| IFEval | **72.07** | 62.16 | 32.11 | 61.48 | 55.34 | 54.26 |
|
| 150 |
+
| Alpaca-Eval | 10.79 | 9.59 | 3.26 | **17.87** | 9.38 | 6.98 |
|
| 151 |
+
| MTBench | **7.06** | 5.75 | 4.71 | 7.03 | 6.37 | 6.03 |
|
| 152 |
+
| LiveBench | 20.8 | **27.78** | 14.27 | 18.79 | 14.97 | 14.1 |
|
| 153 |
+
|
| 154 |
+
You can check more in detail on our [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/), detailed benchmarks.
|
| 155 |
+
|
| 156 |
+
# Useful links
|
| 157 |
+
|
| 158 |
+
- View [our release blogpost](https://falcon-lm.github.io/blog/falcon-h1/).
|
| 159 |
+
- View [our technical report](https://arxiv.org/abs/2507.22448).
|
| 160 |
+
- Feel free to join [our discord server](https://discord.gg/trwMYP9PYm) if you have any questions or to interact with our researchers and developers.
|
| 161 |
+
|
| 162 |
+
# Citation
|
| 163 |
+
|
| 164 |
+
If the Falcon-H1 family of models were helpful to your work, feel free to give us a cite.
|
| 165 |
+
|
| 166 |
+
```
|
| 167 |
+
@article{falconh1,
|
| 168 |
+
title={Falcon-H1: A Family of Hybrid-Head Language Models Redefining Efficiency and Performance},
|
| 169 |
+
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},
|
| 170 |
+
journal = {arXiv preprint arXiv:2507.22448},
|
| 171 |
+
year={2025}
|
| 172 |
+
}
|
| 173 |
```
|