CoolFace
Modelpublic

prithivMLmods/tiiuae_Falcon-H1R-7B-GGUF

sourceHugging Faceotherupdated 9mo agoView on Hugging Face
2likes660downloads
Model Card

tiiuae_Falcon-H1R-7B-GGUF

Falcon-H1R-7B from TII (Technology Innovation Institute) is a 7-billion-parameter reasoning-specialized causal decoder-only model built on the Falcon-H1-7B-Base foundation, featuring a hybrid Transformer + Mamba2 architecture trained via cold-start supervised fine-tuning with long reasoning traces and scaled RL using GRPO (Generalized Reward Preference Optimization) for exceptional performance in mathematics, programming, instruction following, and general logic. It achieves state-of-the-art results among <8B models across benchmarks like 88.1% on AIME24 (96.7% with test-time scaling), 68.6% on LiveCodeBench v5-v6, 61.3% on GPQA-Diamond, 72.1% on MMLU-Pro, and 53.4% on IFBench—often matching or exceeding 14B-47B competitors like Qwen3-32B, Phi-4-14B, and Nemotron-H-47B while enabling 2x faster inference (e.g., ~1800 tokens/s/GPU at batch=64) and up to 262k context length with low memory footprint. Optimized for multilingual use (English primary, trained on 18 languages including Arabic, Hindi, Chinese) under Falcon-LLM License, it generates structured <think>...</think> reasoning blocks followed by final answers, deployable via Transformers (temperature=0.6, topp=0.95, maxnewtokens=65536), vLLM (>=0.11.0, --reasoning-parser deepseekr1), or SGLang for efficient real-world applications on TP=2 setups.

Quick Start with llama-cpp-python

py
from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="prithivMLmods/tiiuae_Falcon-H1R-7B-GGUF",
	filename="Falcon-H1R-7B.Q4_K_M.gguf",
)
py
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

Falcon-H1R-7B [GGUF]

File NameQuant TypeFile SizeFile Link
Falcon-H1R-7B-bf16.ggufBF1615.2 GBDownload
Falcon-H1R-7B-f32.ggufF3230.3 GBDownload
Falcon-H1R-7B.IQ4_XS.ggufIQ4_XS4.19 GBDownload
Falcon-H1R-7B.Q2_K.ggufQ2_K2.89 GBDownload
Falcon-H1R-7B.Q3KL.ggufQ3KL3.92 GBDownload
Falcon-H1R-7B.Q3KM.ggufQ3KM3.69 GBDownload
Falcon-H1R-7B.Q3KS.ggufQ3KS3.43 GBDownload
Falcon-H1R-7B.Q4KM.ggufQ4KM4.6 GBDownload
Falcon-H1R-7B.Q4KS.ggufQ4KS4.4 GBDownload
Falcon-H1R-7B.Q5KM.ggufQ5KM5.39 GBDownload
Falcon-H1R-7B.Q5KS.ggufQ5KS5.28 GBDownload
Falcon-H1R-7B.Q6_K.ggufQ6_K6.23 GBDownload
Falcon-H1R-7B.Q8_0.ggufQ8_08.07 GBDownload
Falcon-H1R-7B.f16.ggufF1615.2 GBDownload

Quants Usage

(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants)

Here is a handy graph by ikawrakow comparing some lower-quality quant types (lower is better):

image.png