This is a 100M parameter multilingual instruction-tuned Falcon H1 Tiny model with hybrid Transformer + Mamba architecture, optimized for edge deployment.
Model Details
Architecture: Hybrid Transformers + Mamba
Parameters: 100M
Languages: Multilingual (English, Chinese, and others)
1# Create a Modelfile2echo'FROM ./Falcon-H1-Tiny-Multilingual-100M-Instruct-IQ4_NL.gguf'> Modelfile
34# Build and run5ollama create Falcon-H1-Tiny-100M -f Modelfile
6ollama run Falcon-H1-Tiny-100M
Chat Template
The model uses ChatML format with <|im_start|> and <|im_end|> tokens:
<|im_start|>user
Your message here<|im_end|>
<|im_start|>assistant
Model response<|im_end|>
The chat template is automatically applied when using:
llama-cli with -cnv flag
llama-cpp-python with create_chat_completion() method
Model Performance
Quantization Comparison
Quantization
Quality
Speed
Use Case
F16
⭐⭐⭐
Fastest
Maximum quality
Q8_0
⭐⭐
Fast
Good quality, good balance
IQ4_NL
⭐⭐
Medium
Best size/quality trade-off
Recommendations
For edge/mobile devices: Use IQ4_NL (70 MB) - best compression with good quality
For desktop/server: Use Q8_0 (113 MB) - better quality with reasonable size
For maximum quality: Use F16 (209 MB) - no quantization loss
Limitations
The 100M multilingual model has limited capacity for complex multilingual tasks
Chinese factual accuracy may be lower than English due to training data distribution
Best performance on English; other languages may have reduced quality
Use higher temperature (0.7-0.9) for creative tasks
Use lower temperature (0.3-0.5) for factual tasks
Hardware Requirements
Quantization
RAM Required
IQ4_NL (70 MB)
~500 MB
Q8_0 (113 MB)
~600 MB
F16 (209 MB)
~800 MB
Citation
If you use this model, please cite the original model:
bibtex
1@misc{falcon_h1_tiny,
2 title={Falcon-H1-Tiny: A series of extremely small, yet powerful language models redefining capabilities at small scale},
3 author={Falcon-LLM Team},
4 year={2026},
5}