Model reference · open weights

Falcon-H1-Tiny-R-pre-GRPO

Available as managed deployment Licence fee LLMs tiiuae Text gen 1 variants 254 dl/mo

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

Makertiiuae
TypeLanguage models
TaskText gen
Parameters (lead)622M
Context256k tokens
Runs withtransformers
Released2026-01-12
Popularity254 downloads / month
LicenceCommercial licence needed

About

What Falcon-H1-Tiny-R-pre-GRPO is

  1. TL;DR
  2. Model Details
  3. Training Details
  4. Usage
  5. Evaluation
  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
  • Number of Parameters: 90M
  • License: Falcon-LLM License

Training details

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

Usage

Currently to use this model you can either rely on Hugging Face transformers, vLLM, sglang, llama.cpp, ollama or mlx library.

Inference

🤗 transformers

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

You 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

ollama

ollama run hf.co/tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO:Q8_0

Apple mlx

mlx_lm.chat --model tiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO

vLLM

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

sglang

python -m sglang.launch_server \
  --model ttiiuae/Falcon-H1-Tiny-R-0.6B-pre-GRPO \
  --tensor-parallel-size 1

Evaluation

For detailed evaluation of Falcon-H1-Tiny series, please refer to our technical blogpost

Useful links

Citation

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

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms