FINAL-Bench/Darwin-9B-Opus
### ๐ฑ Run it on your phone or a GPU-less PC โ POCKET ยท ๐ [Try it live (CPU chat)](https://huggingface.co/spaces/FINAL-Bench/POCKET-35B-CPU) VIDRAFT's on-device family: a 35B model that runs on iPhone and on CPU with no GPU โ stock llama.cpp, no fork.     Darwin-9B-Opus
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-4B-Opus"><img src="https://img.shields.io/badge/๐งฌGen1-Darwin--4B--Opus-blue?style=for-the-badge" alt="Gen1"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-4B-David"><img src="https://img.shields.io/badge/๐งฌGen2-Darwin--4B--David-blue?style=for-the-badge" alt="Gen2"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-4B-Genesis"><img src="https://img.shields.io/badge/โญ_Gen3-Darwin--4B--Genesis-gold?style=for-the-badge" alt="Gen3"></a> </p>
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-9B-Opus"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--9B--Opus-blue?style=for-the-badge" alt="9B"></a> <a href="https://huggingface.co/spaces/FINAL-Bench/Darwin-9B-Opus"><img src="https://img.shields.io/badge/๐Space-9BDemo-purple?style=for-the-badge" alt="9B Space"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-31B-Opus"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--31B--Opus-blue?style=for-the-badge" alt="31B"></a> <a href="https://huggingface.co/spaces/FINAL-Bench/Darwin-31B-Opus"><img src="https://img.shields.io/badge/๐Space-31BDemo-purple?style=for-the-badge" alt="31B Space"></a> </p>
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-35B-A3B-Opus"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--35B--A3B--Opus-blue?style=for-the-badge" alt="35B"></a> <a href="https://huggingface.co/spaces/FINAL-Bench/Darwin-35B-A3B-Opus"><img src="https://img.shields.io/badge/๐Space-35BDemo-purple?style=for-the-badge" alt="35B Space"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-35B-A3B-Opus-Q8-GGUF"><img src="https://img.shields.io/badge/๐ฆGGUF-Q8--Official-yellow?style=for-the-badge" alt="Q8 GGUF"></a> <a href="https://huggingface.co/bartowski/FINAL-BenchDarwin-35B-A3B-Opus-GGUF"><img src="https://img.shields.io/badge/๐ฆGGUF-bartowski-yellow?style=for-the-badge" alt="bartowski GGUF"></a> </p>
<p align="center"> <a href="https://huggingface.co/spaces/FINAL-Bench/Leaderboard"><img src="https://img.shields.io/badge/๐FINALBench-Leaderboard-green?style=for-the-badge" alt="FINAL Bench"></a> <a href="https://huggingface.co/spaces/FINAL-Bench/all-bench-leaderboard"><img src="https://img.shields.io/badge/๐ALLBench-Leaderboard-orange?style=for-the-badge" alt="ALL Bench"></a> </p>
Qwen3.5 Dense 9B | Reasoning | Chain-of-Thought | 131K Context | 201 Languages | BF16 | Apache 2.0
Technical Definitions
Overview
Darwin-9B-Opus is a 9B dense parameter reasoning model created using Darwin V5. Both parent models share the identical Qwen3.5-9B architecture โ the Mother is a LoRA SFT on the same base, not a different architecture.
How Darwin V5 Works
Darwin V5 does not use mergekit or any external merge library. It implements DARE-TIES merge directly via PyTorch tensor operations, with MRI-guided per-layer ratios. The algorithm is inspired by the DARE-TIES method but re-implemented from scratch to support per-tensor diagnostic-guided ratios.
Merge Implementation (actual code logic)
# For each tensor pair (A, B) across all safetensor shards:
ta = model_a[key] # Father tensor
tb = model_b[key] # Mother tensor
# 1. MRI diagnoses both tensors
diag_a = LayerMRI.diagnose_tensor(ta) # {norm, entropy, std}
diag_b = LayerMRI.diagnose_tensor(tb) # {norm, entropy, std}
# 2. Quality score comparison determines ratio_b
score_a = diag_a["entropy"] * 0.5 + diag_a["std"] * 0.3 + min(diag_a["norm"], 100) * 0.002
score_b = diag_b["entropy"] * 0.5 + diag_b["std"] * 0.3 + min(diag_b["norm"], 100) * 0.002
mri_ratio = score_b / (score_a + score_b) # Higher = Mother is better
# 3. Final ratio = MRI 70% + evolutionary genome 30%
final_ratio = mri_ratio * 0.7 + genome_type_ratio * 0.3
# 4. DARE-TIES merge with per-tensor ratio
mask = torch.rand_like(tb) < density_b
delta = (tb - ta) * mask
merged = (ta + delta * final_ratio).bfloat16()Pipeline
Phase 0: Model MRI
For every tensor in both parents, measure:
- L2 norm (layer energy)
- Shannon entropy (weight distribution uniformity)
- Standard deviation (activation spread)
Compare A vs B quality scores -> per-tensor ratio prescription
Phase 1: Evolutionary Search (200 steps, heuristic proxy)
Population of 20 genomes (ratio, attn, ffn, embed, density_a, density_b)
Fitness: heuristic score based on genome balance + differentiation
Selection -> SLERP crossover -> Gaussian mutation
Phase 2: Real Merge + Benchmark (10 steps)
Top genomes from Phase 1 undergo actual tensor merge
Each merge: MRI prescription (70%) + genome ratio (30%)
Fitness: real benchmark score (ARC-Challenge)
Best model selected and auto-uploaded
Phase 3: Health Check
Layer-by-layer importance comparison: child vs both parents
Detect interference (child >> parents) or function loss (parents >> child)What Makes This Different from Standard Merging
Model Specifications
Hardware Requirements
Usage
Transformers
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
tokenizer = AutoTokenizer.from_pretrained(
"FINAL-Bench/Darwin-9B-Opus",
trust_remote_code=True,
)
model = AutoModelForCausalLM.from_pretrained(
"FINAL-Bench/Darwin-9B-Opus",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
messages = [{"role": "user", "content": "Prove that sqrt(2) is irrational."}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=4096)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))SGLang
python -m sglang.launch_server \
--model-path FINAL-Bench/Darwin-9B-Opus \
--tp 1 \
--mem-fraction-static 0.90 \
--context-length 32768 \
--trust-remote-codevLLM
vllm serve FINAL-Bench/Darwin-9B-Opus \
--trust-remote-code \
--enforce-eagerEvolution Details
Acknowledgements
- Korean Government โ GPU Support Program research grant
- Qwen Team โ Qwen3.5 base architecture
- Jackrong โ Claude 4.6 Opus Reasoning Distilled model
- DARE-TIES algorithm โ Yadav et al., 2023 (re-implemented, not library-dependent)
Built By
Citation
@misc{vidraft_darwin_9b_opus,
title = {Darwin-9B-Opus: Diagnostic-Guided Evolutionary Merge},
author = {VIDRAFT},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/FINAL-Bench/Darwin-9B-Opus}}
}This model is introduced in Darwin Family.
