Model reference · open weights
Falcon-H1-Tiny-R-pre-GRPO is an open-weight language model from tiiuae. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | tiiuae |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 622M |
| Context | 256k tokens |
| Runs with | transformers |
| Released | 2026-01-12 |
| Popularity | 254 downloads / month |
| Licence | Commercial licence needed |
About
For more details about the training protocol of this model, please refer to the Falcon-H1-Tiny technical blogpost.
Currently to use this model you can either rely on Hugging Face transformers, vLLM, sglang, llama.cpp, ollama or mlx library.
Refer to the snippet below to run H1 models using 🤗 transformers:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO"
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto"
)
# Perform text generation
or
transformers serve tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO
llama.cppYou can find all GGUF files compatible with llama.cpp under our official collection - an example setup could be:
brew install llama.cpp
pip install huggingface_hub
hf download tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO Falcon-H1-Tiny-R-0.6B-pre-GRPO-Q8_0.gguf --local-dir ./
llama-cli ./Falcon-H1-Tiny-R-0.6B-pre-GRPO-Q8_0.gguf -cnv
ollamaollama run hf.co/tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO:Q8_0
mlxmlx_lm.chat --model tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO
For vLLM, simply start a server by executing the command below:
# pip install vllm>=0.9.0
vllm serve tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO --tensor-parallel-size 2 --data-parallel-size 1
python -m sglang.launch_server \
--model ttiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO \
--tensor-parallel-size 1
For detailed evaluation of Falcon-H1-Tiny series, please refer to our technical blogpost
If the Falcon-H1-Tiny family of models were helpful to your work, feel free to give us a cite.
@misc{falcon_h1_tiny,
title={Falcon-H1-Tiny: A series of extremely small, yet powerful language models redefining capabilities at small scale},
author={Falcon-LLM Team},
year={2026},
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys falcon-h1-tiny-r-pre-grpo for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (falcon-h1-tiny-r-pre-grpo below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"falcon-h1-tiny-r-pre-grpo","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.