Text Generation
Transformers
Safetensors
English
hy_v3
mixture-of-experts
Mixture of Experts
small-language-model
edge-inference
int4
from-scratch
distributed-training
conversational
Eval Results (legacy)
Instructions to use vovaRL/NanoColibri-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vovaRL/NanoColibri-Instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="vovaRL/NanoColibri-Instruct") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("vovaRL/NanoColibri-Instruct") model = AutoModelForCausalLM.from_pretrained("vovaRL/NanoColibri-Instruct", 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 vovaRL/NanoColibri-Instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "vovaRL/NanoColibri-Instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vovaRL/NanoColibri-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/vovaRL/NanoColibri-Instruct
- SGLang
How to use vovaRL/NanoColibri-Instruct 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 "vovaRL/NanoColibri-Instruct" \ --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": "vovaRL/NanoColibri-Instruct", "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 "vovaRL/NanoColibri-Instruct" \ --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": "vovaRL/NanoColibri-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use vovaRL/NanoColibri-Instruct with Docker Model Runner:
docker model run hf.co/vovaRL/NanoColibri-Instruct
File size: 7,187 Bytes
1df8213 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | ---
license: apache-2.0
language:
- en
library_name: transformers
pipeline_tag: text-generation
tags:
- mixture-of-experts
- moe
- small-language-model
- edge-inference
- int4
- from-scratch
- distributed-training
base_model: vovaRL/NanoColibri-Instruct
model-index:
- name: Colibri-Nano
results:
- task:
type: text-generation
dataset:
name: LAMBADA
type: lambada
metrics:
- type: accuracy
value: 26.3
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: PIQA
type: piqa
metrics:
- type: accuracy
value: 62.7
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: WinoGrande
type: winogrande
metrics:
- type: accuracy
value: 49.2
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: ARC-easy
type: arc_easy
metrics:
- type: accuracy
value: 43.4
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: ARC-challenge
type: arc_challenge
metrics:
- type: accuracy
value: 22.8
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: OpenBookQA
type: openbookqa
metrics:
- type: accuracy
value: 22.0
name: zero-shot accuracy
- task:
type: text-generation
dataset:
name: HellaSwag
type: hellaswag
metrics:
- type: accuracy
value: 31.1
name: zero-shot accuracy
---
# Colibri-Nano
*A 2.7B-parameter Mixture-of-Experts that runs on a 4 GB mini-PC β trained from
scratch by volunteers passing a GPU baton, for about the price of a game console.*
| | |
|---|---|
| **Parameters** | **2.7B** total Β· 0.34B active per token (~12%) |
| **Training tokens** | **~5.4B** (pretrain + chat SFT) |
| **Container** | **~1.2 GB** int4, streams experts from disk |
| **Compute** | **1 GPU** at a time Β· ~50β100 H100-hours for the whole run |
| **Cost** | **~$180β260** for the whole run |
| **License** | **Apache-2.0** β code, checkpoints, and a ledger of who trained what |
**Architecture.** 24 layers (1 dense + 23 MoE) Β· 64 experts, top-2 + a 2048-wide
always-resident shared expert Β· GQA 4Γ Β· per-head QK-norm Β· sigmoid+bias router
(DeepSeek-V3-style aux-loss-free balancing) Β· SmolLM2 tokenizer, 49 152 vocab Β·
4 096 context.
---
## How it was built
**1 β Relay pretraining.** Pretraining is sequential, so contributors take turns:
claim a lease on a HuggingFace repo (a real compare-and-swap, not a convention),
pull the checkpoint, train a leg, push, hand the baton on. 20 000 updates β 5.2B
tokens of FineWeb-Edu, then a 1 500-update chat SFT.
**2 β Engine-native.** The architecture was chosen *for the serving engine*
(hy3.c): int4 experts stream from disk under a fixed RAM budget, while the dense
backbone and the shared expert stay resident. No conversion shims.
**3 β The bet paid off.** At a matched token budget, the MoE beats dense
references that spend *more* compute per token.
---
## Evaluation 1 β beats dense at the same token budget
Zero-shot accuracy (%). Colibri-Nano (2.7B total / 0.34B active) against two
token-matched dense models.
| Task | Colibri-Nano<br>0.34B act / 5.4B tok | Pythia-410M<br>@ 6.3B tok (dense 405M) | Cerebras-GPT-256M<br>@ 5.1B tok (dense) | Random |
|---|---|---|---|---|
| LAMBADA | 26.3 | 26.3 | **29.3** | 0 |
| PIQA | **62.7** | 59.8 | 61.3 | 50 |
| WinoGrande β | 49.2 | 50.9 | 51.1 | 50 |
| ARC-easy | **43.4** | 41.3 | 41.0 | 25 |
| ARC-challenge | **22.8** | 18.8 | 17.0 | 25 |
| OpenBookQA | **22.0** | 15.6 | 15.8 | 25 |
| HellaSwag | **31.1** | 27.0 | 27.4 | 25 |
Identical prompts and scoring for all three columns (in-repo lm-eval-compatible
harness; Cerebras row from [arXiv:2304.03208](https://arxiv.org/abs/2304.03208)
Table 8, same protocol). **Colibri-Nano wins 5 of 7 against both token-matched
dense models β ties LAMBADA, WinoGrande within noise β with fewer active
parameters per token.**
> β WinoGrande differences are within noise (Β±1.4 pts).
>
> β‘ The Pythia checkpoint (`step3000`) is early in its LR schedule, which
> handicaps it somewhat β the fully-annealed Cerebras-GPT-256M column is the
> conservative comparison, and Nano wins that one too.
## Evaluation 2 β quality vs training tokens
Average zero-shot accuracy over the 7 tasks above. Random-guess average on this
task set: 28.6.
| Model | Tokens (B) | Avg accuracy | Kind |
|---|---|---|---|
| Cerebras-GPT-111M | 2.2 | 31.5 | dense |
| Cerebras-GPT-256M | 5.1 | 34.7 | dense |
| **Colibri-Nano** | **5.4** | **36.8** | **MoE (ours)** |
| Pythia-410M @ step3000 β‘ | 6.3 | 34.2 | dense |
| Cerebras-GPT-590M | 11.8 | 37.1 | dense |
| OPT-125M | 180 | 37.1 | dense |
| OPT-350M | 180 | 39.5 | dense |
| Pythia-160M | 300 | 37.4 | dense |
| Pythia-410M | 300 | 41.9 | dense |
At 5.4B tokens, Colibri-Nano matches OPT-125M (33Γ the tokens) and
Cerebras-GPT-590M (~4Γ the training compute), and clearly beats everything at its
own budget. Models further down the table just ate more data.
## Evaluation 3 β the efficiency frontier (context, not a target)
> **Different metric family.** These are `acc_norm` numbers under the SmolLM2-card
> protocol and are **not comparable** with the accuracies in Evaluation 1β2.
| Model | Active (M) | Total (M) | Tokens (B) | HellaSwag | ARC avg | PIQA | WinoGrande | OpenBookQA |
|---|---|---|---|---|---|---|---|---|
| **Colibri-Nano** | **341** | **2700** | **5.4** | 35.6 | 32.8 | 62.7 | 49.2 | 29.6 |
| SmolLM2-135M | 135 | 135 | 2000 | 42.1 | 43.9 | 68.4 | 51.3 | 34.6 |
| SmolLM2-360M | 360 | 360 | 4000 | 54.5 | 53.0 | 71.7 | 52.5 | 37.4 |
| Qwen2.5-0.5B | 494 | 494 | 18000 | 51.2 | 45.4 | 69.9 | 54.1 | 37.4 |
The trillions-of-tokens ceiling for this size class β context, not a target. The
gap is data volume (370β3300Γ more tokens), not architecture.
---
## Reproducing every number on this card
```bash
python -m scripts.bench_nano --indir checkpoints/nano_chat
```
Every number here regenerates from the repo (`docs/BENCH.md`, `docs/RESULTS.md`).
**Train it yourself:** the one-line `setup.sh` + `./train.sh` relay (see README in
the training repo).
## Limitations
- Undertrained by design of budget, not ambition: at ~5.4B tokens the model sits
370β3300Γ below the token counts of the frontier models in its size class, and
Evaluation 3 shows the resulting gap.
- Speed benchmarks across target devices (tokens/s vs engine memory budget) are
not yet published here; disk-pressure benchmarks (memory-capped cgroups, larger
containers) are the successor project's first milestone.
- Small-model failure modes apply: factual errors, repetition, and weak
multi-step reasoning.
## What's next
A 7B chat+code pilot with RL post-training, then a 24β28B flagship whose
container is deliberately bigger than a 16 GB laptop's memory β streaming experts
from NVMe at 20+ tok/s (plan: `docs/NEXT_MODEL.md`).
---
License Apache-2.0 Β· HF repo [`vovaRL/NanoColibri-Instruct`](https://huggingface.co/vovaRL/NanoColibri-Instruct) Β· engine: hy3.c
|