Text Generation
Transformers
Safetensors
English
qwen3-next
gated-deltanet
hybrid-attention
mixture-of-experts
Mixture of Experts
tinystories
tiny-model
validation
debug-model
Instructions to use shibatch/tinyqwen3next3m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shibatch/tinyqwen3next3m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="shibatch/tinyqwen3next3m")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("shibatch/tinyqwen3next3m", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use shibatch/tinyqwen3next3m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "shibatch/tinyqwen3next3m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shibatch/tinyqwen3next3m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/shibatch/tinyqwen3next3m
- SGLang
How to use shibatch/tinyqwen3next3m 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 "shibatch/tinyqwen3next3m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shibatch/tinyqwen3next3m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "shibatch/tinyqwen3next3m" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shibatch/tinyqwen3next3m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use shibatch/tinyqwen3next3m with Docker Model Runner:
docker model run hf.co/shibatch/tinyqwen3next3m
File size: 10,999 Bytes
2a91759 09a98ad 2a91759 09a98ad 2a91759 | 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | ---
library_name: transformers
pipeline_tag: text-generation
language:
- en
license: mit
datasets:
- roneneldan/TinyStories
tags:
- qwen3-next
- gated-deltanet
- hybrid-attention
- mixture-of-experts
- moe
- tinystories
- tiny-model
- text-generation
- validation
- debug-model
---
# Tiny Qwen3-Next 3M
This repository contains a tiny `Qwen3NextForCausalLM` Mixture-of-Experts
language model trained from scratch on TinyStories.
The model has **2,945,914 parameters**. It combines Gated DeltaNet linear
attention, gated full attention, sparse top-2 MoE routing, and a shared expert
in a checkpoint small enough for implementation testing and experimentation.
This is a synthetic tiny checkpoint. It is not an official Qwen model, does
not contain weights from an original Qwen checkpoint, and should not be
expected to match the quality or capabilities of production Qwen models.
## Repository contents
- `hf/`: the final Hugging Face checkpoint and tokenizer
- `example_generate.py`: a minimal generation example
- `eval_text_generation.json`: generations from the final training evaluation
- `artifact_metadata.json`: training arguments, metrics, router usage, and the
expanded configuration
- `qwen3_next_config_dump.json`: a standalone configuration dump
Optimizer checkpoints and the full training log are intentionally omitted
from the distribution package.
## Important architecture distinction
This checkpoint uses:
```text
Qwen3NextConfig
Qwen3NextForCausalLM
model_type: qwen3_next
```
It does **not** use the separate regular Qwen3 MoE implementation:
```text
Qwen3MoeConfig
Qwen3MoeForCausalLM
model_type: qwen3_moe
```
The model follows the Qwen3-Next hybrid layer pattern: three Gated DeltaNet
linear-attention layers followed by one gated full-attention layer. Every
layer contains a sparse MoE block.
## Relationship to Qwen3-Next 80B
The architecture is a deliberately scaled-down member of the same
Transformers architecture family as `Qwen/Qwen3-Next-80B-A3B-Instruct`:
```text
3 x (Gated DeltaNet -> MoE)
1 x (Gated full attention -> MoE)
```
The original model repeats this four-layer pattern multiple times and uses
hundreds of experts. Tiny Qwen3-Next 3M keeps one four-layer cycle and eight
experts so that the important execution paths remain present at a much
smaller scale.
This checkpoint is pretrained only. It has not been instruction-tuned and
does not reproduce Qwen3-Next 80B behavior.
## Model architecture
```yaml
architecture: Qwen3NextForCausalLM
model_type: qwen3_next
parameter_count: 2,945,914
model_vocab_size: 1,024
tokenizer_size: 1,003
hidden_size: 216
intermediate_size: 540
num_hidden_layers: 4
layer_types:
- linear_attention
- linear_attention
- linear_attention
- full_attention
num_attention_heads: 8
num_key_value_heads: 1
head_dim: 56
partial_rotary_factor: 0.25
rope_theta: 10,000,000
linear_num_key_heads: 4
linear_key_head_dim: 54
linear_num_value_heads: 8
linear_value_head_dim: 54
linear_conv_kernel_dim: 4
num_experts: 8
num_experts_per_tok: 2
moe_intermediate_size: 54
shared_expert_intermediate_size: 54
norm_topk_prob: true
router_aux_loss_coef: 0.01
tie_word_embeddings: true
rms_norm_eps: 1.0e-6
max_position_embeddings: 1,024
```
The Gated DeltaNet dimensions retain the characteristic Qwen3-Next ratios:
- key width: `4 x 54 = 216`, equal to the hidden size
- value width: `8 x 54 = 432`, twice the hidden size
Full attention uses eight query heads and one key/value head. The query width
is `8 x 56 = 448`, while the key/value width is 56.
## MoE configuration
Each of the four decoder layers contains eight routed experts and one shared
expert. Every token selects two of the eight routed experts:
```yaml
routed_experts: 8
top_k: 2
shared_expert: true
normalized_top_k_weights: true
```
Router auxiliary loss was active during training. All experts received
traffic. Final aggregate expert fractions ranged from approximately 0.060 to
0.208 depending on layer and expert; no expert was unused.
## Training data
The model was trained on the full TinyStories training corpus using an
independent 1% validation split:
```yaml
selected_stories: 2,119,489
training_stories: 2,098,294
validation_stories: 21,195
validation_fraction: 0.01
training_blocks: 2,441,089
validation_blocks: 24,608
block_size: 256
```
Stories were joined into a continuous packed stream:
```text
BOS + story 1 + EOS + BOS + story 2 + EOS + ...
```
The stream was split into fixed 256-token blocks without padding. Only the
final incomplete block was discarded.
## Tokenizer
The checkpoint uses a small custom byte-level BPE tokenizer. The base BPE
vocabulary was trained with:
```text
BPE()
ByteLevel(add_prefix_space=False)
base_vocab_size: 1,000
min_frequency: 2
normalizer: None
```
Special tokens were then added at fixed IDs:
```text
<s> -> 1000
</s> -> 1001
<|im_start|> -> 1002
```
The tokenizer uses `<s>` as both BOS and padding, and `</s>` as EOS. The model
configuration reserves 1,024 embedding rows while the tokenizer exposes
1,003 tokens.
## Training setup
The checkpoint was trained from scratch in float32 on an NVIDIA GeForce GTX
1650:
```yaml
dtype: float32
batch_size: 16
block_size: 256
training_steps: 152,568
epochs: 1.0
tokens_processed: 624,918,528
optimizer: AdamW
learning_rate: 3.0e-4
warmup_steps: 1,000
scheduler: warmup + cosine decay
minimum_learning_rate: 3.0e-5
weight_decay: 0.0
grad_clip: 1.0
training_time: 13h 48m 45s
```
## Evaluation
The final checkpoint produced:
```yaml
final_train_loss: 1.4145
validation_loss: 1.4320
validation_perplexity: 4.1871
```
Validation loss was computed over 16 batches, or 65,536 tokens, from the
independent packed validation split. These numbers are compact checkpoint
diagnostics, not general language-model benchmark results.
## Example generation
With prompt `Once upon`, sampling seed 0 produced the following representative
TinyStories-style opening:
```text
Once upon a time, there was a little girl named Lily. She loved to play with
her toys and go on adventures. One day, she went outside and saw a rainbow in
the sky. It was so pretty that it made her feel even happier than before.
```
Sampling is stochastic. Other seeds may produce a boy, an adult, an animal,
or another kind of TinyStories character. The model usually produces
recognizable English, but semantic contradictions, unfinished sentences,
invented words, and repetition remain possible at this size.
## Usage
Install the requirements:
```bash
pip install -r requirements.txt
```
Run the included local example from the repository root:
```bash
python example_generate.py
```
To load the package from Hugging Face Hub, resolve the `hf` directory to a
local path first. This also avoids a Transformers 5.14.1 local-subfolder issue
in which generation configuration lookup may incorrectly fall back to the
repository root:
```python
import torch
from pathlib import Path
from huggingface_hub import snapshot_download
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "shibatch/tinyqwen3next3m"
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model_dir = Path(snapshot_download(
repo_id=repo,
allow_patterns=["hf/*"],
)) / "hf"
tokenizer = AutoTokenizer.from_pretrained(model_dir)
model = AutoModelForCausalLM.from_pretrained(
model_dir,
dtype=torch.float32,
experts_implementation="batched_mm",
).to(device)
model.eval()
prompt = "Once upon"
input_ids = torch.tensor(
[[tokenizer.bos_token_id] + tokenizer.encode(
prompt,
add_special_tokens=False,
)],
dtype=torch.long,
device=device,
)
torch.manual_seed(0)
if device.type == "cuda":
torch.cuda.manual_seed_all(0)
with torch.no_grad():
output = model.generate(
input_ids=input_ids,
max_new_tokens=100,
do_sample=True,
temperature=0.8,
top_p=0.95,
top_k=40,
repetition_penalty=1.1,
pad_token_id=tokenizer.pad_token_id,
eos_token_id=tokenizer.eos_token_id,
output_router_logits=False,
)
print(tokenizer.decode(output[0].tolist(), skip_special_tokens=True))
```
## Loading requirements
The checkpoint requires a Transformers release containing
`Qwen3NextForCausalLM`. It was trained and tested with:
```text
transformers 5.14.1
torch 2.14.0.dev20260720+cu126
```
The optional `flash-linear-attention` and `causal-conv1d` packages are not
required. Without them, Transformers uses its PyTorch Gated DeltaNet fallback,
which is the path used to train and validate this checkpoint.
The examples explicitly select `experts_implementation="batched_mm"`. The
model's routed experts have an intermediate width of 54, while the default
PyTorch `grouped_mm` CUDA path in some recent Torch/Transformers combinations
requires expert matrix strides to be multiples of 16 bytes. Without the
explicit compatible implementation, loading succeeds but the first forward
pass can fail with:
```text
RuntimeError: strides should be multiple of 16 bytes
```
`batched_mm` evaluates the same expert weights without that grouped-kernel
layout restriction. `experts_implementation="eager"` is also a compatible,
slower fallback.
## Intended uses
This model is intended for:
- testing `Qwen3NextConfig` and `Qwen3NextForCausalLM`
- testing Gated DeltaNet fallback implementations
- testing the hybrid linear/full-attention layer pattern
- testing sparse top-2 MoE routing and shared experts
- checking router load-balancing loss
- exercising custom tokenizer loading
- testing `generate()`, `save_pretrained()`, and `from_pretrained()`
- compact inference-engine and architecture experiments
It is not intended for:
- instruction following or chat
- factual question answering
- high-quality long-form generation
- production deployment
- safety-critical use
- benchmark comparison with production Qwen models
## Limitations
Known limitations include:
- only 2.95 million parameters
- small 1,003-token tokenizer
- English TinyStories-only pretraining
- weak factual knowledge and reasoning
- no instruction tuning or chat template
- occasional grammatical and semantic errors
- invented words and truncated sentences
- repetition and template-like stories
- no quality-equivalence claim with official Qwen models
- no current llama.cpp or GGUF inference support assumed for Qwen3-Next
## Notes on GGUF
The checkpoint is distributed as a normal float32 Hugging Face Safetensors
model. A useful GGUF build requires converter and runtime support for the full
Qwen3-Next graph, including Gated DeltaNet, hybrid attention, routed experts,
and the shared expert. Merely placing tensors in a GGUF container is not
sufficient for compatible inference.
## Citation
This is a synthetic tiny Qwen3-Next-compatible MoE checkpoint trained from
scratch on TinyStories. It is intended for implementation validation,
debugging, education, and small-scale architecture experiments.
|