zen5 MoDE — Mixture of Diverse Experts. 3.1T params, 0.8-100B+ active, complexity-aware routing across 6 model families.
0
stars
2
commits
Python
primary language
Sep 1, 2026
updated
zen5 is a next-generation AI architecture that routes across expert modules harvested from the largest open-source models using complexity-aware hierarchical routing.
Unlike standard models that always use the same compute, zen5 adapts compute to task difficulty:
| Tier | Active Params | Latency | Example Task |
|---|---|---|---|
| T0 | 0.8B | <50ms | "Hello, how are you?" |
| T1 | 9B | <200ms | "Summarize this article" |
| T2 | 10-40B | <2s | "Compare Keynesian vs monetarist economics" |
| T3 | 40-80B | <5s | "Derive Black-Scholes from first principles" |
| T4 | 80-100B+ | <10s | "Design a novel consensus algorithm" |
Input → ComplexityEstimator (64 tokens) → Tier Assignment
T0: 0.8B dense → direct generation
T1: 9B dense → standard generation
T2: 10-40B MoE → multi-expert routing
T3: 40-80B MoE → deep expert routing
T4: 80-100B+ MoE → frontier expert routing + adaptive escalation
| Source | Params | Type | Architecture | Tier |
|---|---|---|---|---|
| Qwen3.5-0.8B | 0.8B | Dense | Gated DeltaNet | T0 |
| Qwen3.5-9B | 9B | Dense | Gated DeltaNet | T1 |
| MiniMax-M2.5 | 230B | MoE | Lightning Attention | T2 |
| GLM-5 | 744B | MoE | GLM MoE | T3 |
| Kimi K2.5 | 1.04T | MoE (384 experts) | DeepseekV3 | T4 |
| Ling-1T | 1T | MoE | FP8 MoE | T4 |
| Modality | Source | Architecture |
|---|---|---|
| Vision | Qwen3-VL | Native ViT |
| Video | Wan2.2 / CogVideoX | MoE video diffusion |
| 3D | TRELLIS.2 | Rectified Flow DiT + SC-VAE |
| Audio | Qwen3-Omni / zen-tts | Thinker-Talker |
| Model | Total Params | Active Params | Target |
|---|---|---|---|
| zen5 | 750B | 0.8-50B | General |
| zen5-coder | 1.8T | 0.8-80B | Code |
| zen5-omni | 2.5T | 0.8-100B | Omnimodal |
| zen5-max | 3.1T | 0.8-100B+ | Frontier |
Only ~394M parameters are trained (0.013% of total model):
All expert weights are frozen — extracted and served as-is from source models.
# List expert pool
python scripts/expert_extraction.py list
# Extract experts from source models
python scripts/expert_extraction.py extract-all --output ./experts/
# Train complexity router
python scripts/router_training.py train --output ./checkpoints/
# Benchmark routing accuracy
python scripts/benchmark.py routing --checkpoint ./checkpoints/router/best.pt
# Generate full evaluation report
python scripts/benchmark.py report --checkpoint ./checkpoints/router/best.pt
zen5 is trained in the open on the Hanzo Network. Training consists of 5 phases:
See docs/ARCHITECTURE.md for detailed training strategy and hardware requirements.
zen5/
├── scripts/
│ ├── expert_extraction.py # Extract experts from source models
│ ├── router_training.py # Train complexity router + alignment
│ ├── benchmark.py # Evaluation and benchmarking suite
│ └── hf_repos.py # HuggingFace model card generation
├── docs/
│ └── ARCHITECTURE.md # Full architecture specification
├── training/ # Training configs and data
├── checkpoints/ # Model checkpoints
└── paper/ # Technical report
torch>=2.4
transformers>=4.48
safetensors
huggingface_hub
Apache 2.0
zen5: Mixture of Diverse Experts — Clarity Through Diversity
2 commits
Python
100.0%
zen5 MoDE — Mixture of Diverse Experts. 3.1T params, 0.8-100B+ active, complexity-aware routing across 6 model families.
0
stars
2
commits
Python
primary language
Sep 1, 2026
updated
zen5 is a next-generation AI architecture that routes across expert modules harvested from the largest open-source models using complexity-aware hierarchical routing.
Unlike standard models that always use the same compute, zen5 adapts compute to task difficulty:
| Tier | Active Params | Latency | Example Task |
|---|---|---|---|
| T0 | 0.8B | <50ms | "Hello, how are you?" |
| T1 | 9B | <200ms | "Summarize this article" |
| T2 | 10-40B | <2s | "Compare Keynesian vs monetarist economics" |
| T3 | 40-80B | <5s | "Derive Black-Scholes from first principles" |
| T4 | 80-100B+ | <10s | "Design a novel consensus algorithm" |
Input → ComplexityEstimator (64 tokens) → Tier Assignment
T0: 0.8B dense → direct generation
T1: 9B dense → standard generation
T2: 10-40B MoE → multi-expert routing
T3: 40-80B MoE → deep expert routing
T4: 80-100B+ MoE → frontier expert routing + adaptive escalation
| Source | Params | Type | Architecture | Tier |
|---|---|---|---|---|
| Qwen3.5-0.8B | 0.8B | Dense | Gated DeltaNet | T0 |
| Qwen3.5-9B | 9B | Dense | Gated DeltaNet | T1 |
| MiniMax-M2.5 | 230B | MoE | Lightning Attention | T2 |
| GLM-5 | 744B | MoE | GLM MoE | T3 |
| Kimi K2.5 | 1.04T | MoE (384 experts) | DeepseekV3 | T4 |
| Ling-1T | 1T | MoE | FP8 MoE | T4 |
| Modality | Source | Architecture |
|---|---|---|
| Vision | Qwen3-VL | Native ViT |
| Video | Wan2.2 / CogVideoX | MoE video diffusion |
| 3D | TRELLIS.2 | Rectified Flow DiT + SC-VAE |
| Audio | Qwen3-Omni / zen-tts | Thinker-Talker |
| Model | Total Params | Active Params | Target |
|---|---|---|---|
| zen5 | 750B | 0.8-50B | General |
| zen5-coder | 1.8T | 0.8-80B | Code |
| zen5-omni | 2.5T | 0.8-100B | Omnimodal |
| zen5-max | 3.1T | 0.8-100B+ | Frontier |
Only ~394M parameters are trained (0.013% of total model):
All expert weights are frozen — extracted and served as-is from source models.
# List expert pool
python scripts/expert_extraction.py list
# Extract experts from source models
python scripts/expert_extraction.py extract-all --output ./experts/
# Train complexity router
python scripts/router_training.py train --output ./checkpoints/
# Benchmark routing accuracy
python scripts/benchmark.py routing --checkpoint ./checkpoints/router/best.pt
# Generate full evaluation report
python scripts/benchmark.py report --checkpoint ./checkpoints/router/best.pt
zen5 is trained in the open on the Hanzo Network. Training consists of 5 phases:
See docs/ARCHITECTURE.md for detailed training strategy and hardware requirements.
zen5/
├── scripts/
│ ├── expert_extraction.py # Extract experts from source models
│ ├── router_training.py # Train complexity router + alignment
│ ├── benchmark.py # Evaluation and benchmarking suite
│ └── hf_repos.py # HuggingFace model card generation
├── docs/
│ └── ARCHITECTURE.md # Full architecture specification
├── training/ # Training configs and data
├── checkpoints/ # Model checkpoints
└── paper/ # Technical report
torch>=2.4
transformers>=4.48
safetensors
huggingface_hub
Apache 2.0
zen5: Mixture of Diverse Experts — Clarity Through Diversity
2 commits
Python
100.0%