FINAL-Bench/Darwin-28B-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-28B-Opus โ Qwen3.6-27B ร Opus-Distilled Evolutionary Merge
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-28B-Opus"><img src="https://img.shields.io/badge/โญGPQADiamond-88.89%25Darwin--28B--Opus-gold?style=for-the-badge" alt="GPQA"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-36B-Opus"><img src="https://img.shields.io/badge/๐งฌSibling-Darwin--36B--Opus_(88.4%25)-blue?style=for-the-badge" alt="36B"></a> </p>
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-4B-Genesis"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--4B--Genesis-blue?style=for-the-badge" alt="Genesis"></a> <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/FINAL-Bench/Darwin-9B-NEG"><img src="https://img.shields.io/badge/โกModel-Darwin--9B--NEG(84.3%25)-purple?style=for-the-badge" alt="NEG"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-27B-Opus"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--27B--Opus(86.9%25)-blue?style=for-the-badge" alt="27B"></a> </p>
<p align="center"> <a href="https://huggingface.co/FINAL-Bench/Darwin-31B-Opus"><img src="https://img.shields.io/badge/๐งฌModel-Darwin--31B--Opus(85.9%25)-blue?style=for-the-badge" alt="31B"></a> <a href="https://huggingface.co/FINAL-Bench/Darwin-36B-Opus"><img src="https://img.shields.io/badge/โญModel-Darwin--36B--Opus(88.4%25)-blue?style=for-the-badge" alt="36B"></a> </p>
<p align="center"> <a href="https://huggingface.co/collections/FINAL-Bench/darwin-family"><img src="https://img.shields.io/badge/๐ DarwinFamily-Collection-green?style=for-the-badge" alt="Family"></a> <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> </p>
Qwen3.6-27B dense ยท 27.6B parameters ยท Hybrid Linear/Full Attention ยท BF16 ยท Thinking Mode ยท Apache 2.0 Darwin V7 evolutionary merge: Father ร Opus-distilled Mother โ 88.89% on GPQA Diamond (3-stage adaptive evaluation)
Abstract
Darwin-28B-Opus is the first reasoning model of the Darwin series built on the Qwen3.6 generation backbone. Produced by the Darwin V7 evolutionary breeding engine from two publicly available parents, it combines the strong bilingual reasoning of Qwen3.6-27B with Claude Opus 4-style chain-of-thought distilled behaviour.
On the GPQA Diamond graduate-level reasoning benchmark (198 PhD-level questions), Darwin-28B-Opus scores 88.89 % under the standard 3-stage adaptive evaluation, slightly edging out its larger MoE sibling Darwin-36B-Opus (88.4 %) and clearly surpassing its Qwen3.5-generation counterpart Darwin-27B-Opus (86.9 %).
๐งฌ Model Lineage
Why 28B? The28Blabel denotes the Qwen3.6-generation member of the Darwin lineup (+1over the Qwen3.5-eraDarwin-27B-Opus). The actual parameter count is 27.6 B, and the architecture exactly follows Qwen3.6-27B.
โ๏ธ Technical Specifications
๐ Benchmark โ GPQA Diamond (198 questions)
Darwin-28B-Opus is evaluated under our standard 3-stage adaptive evaluation protocol, identical to the protocol used across the Darwin series.
Key performance indicators:
- Stage 1 โ Stage 3: +14.14 %p through adaptive protocol
- vs Darwin-27B-Opus (86.9 %): +1.99 %p
- vs Darwin-36B-Opus (88.4 %): +0.49 %p
- vs Darwin-31B-Opus (85.9 %): +2.99 %p
๐ Usage
Standard inference (Stage 1 baseline)
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
tok = AutoTokenizer.from_pretrained(
"FINAL-Bench/Darwin-28B-Opus",
trust_remote_code=True,
)
model = AutoModelForCausalLM.from_pretrained(
"FINAL-Bench/Darwin-28B-Opus",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
messages = [
{"role": "user",
"content": "Solve: If f(x) = xยณ โ 3x + 2, find all critical points and classify them."}
]
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tok(text, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=2048, do_sample=False)
print(tok.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))Enhanced accuracy (Stage 2-3 adaptive)
For leaderboard-grade accuracy, combine:
- Stage 1 greedy baseline,
- Stage 2 maj@8 temperature sampling on low-confidence answers,
- Stage 3 adaptive refinement on still-disputed answers.
Reference implementation is provided in the Darwin-series evaluation harness.
๐ฏ Recommended Use-Cases
- Graduate-level STEM reasoning (GPQA / science qualifying exams)
- Mathematical problem solving (MATH, AIME-style problems)
- Code generation and debugging (HumanEval, MBPP)
- Complex multi-step chain-of-thought tasks
- Bilingual reasoning (strong English + Korean; also Chinese / Japanese)
โ ๏ธ Limitations
- At 27.6 B parameters in bfloat16, full inference requires โ 55 GB of VRAM (e.g., a single A100-80GB or B200).
- Optimised for English first, with secondary support for Korean, Chinese, and Japanese.
- Deep Opus-style reasoning traces tend to be verbose โ control with
max_new_tokensas needed.
๐ Citation
@misc{darwin28b_opus_2026,
title = {Darwin-28B-Opus: Evolutionary Merging of Qwen3.6-27B with Claude-Opus-Distilled Reasoning},
author = {FINAL-Bench / Darwin Research Team},
year = {2026},
howpublished = {\url{https://huggingface.co/FINAL-Bench/Darwin-28B-Opus}},
note = {Darwin V7 ยท Mother-centric Ratio Interpolation merge ยท 88.89 % GPQA Diamond (3-stage)}
}๐ Related Darwin Models
- Darwin-36B-Opus โ MoE 36B, Qwen3.6-35B-A3B ร Opus distilled, GPQA 88.4 %
- Darwin-31B-Opus โ 31B dense, multilingual-strong reasoning, GPQA 85.9 %
- Darwin-27B-Opus โ 27B dense (Qwen3.5 generation), GPQA 86.9 %
- Darwin-9B-NEG โ 9B with Native Entropy Gating, GPQA 84.3 %
- Darwin-9B-Opus โ the Qwen3.5-9B Darwin member
- Darwin-4B-Genesis โ smallest Darwin member
๐ฑ Related โ POCKET (run a 35B model on-device)
Want Darwin-class reasoning without a datacenter GPU? POCKET is VIDRAFT's on-device family โ a 35B model that runs on a phone and on a GPU-less PC using stock llama.cpp (no fork, no CUDA, no cloud). On a free CPU it generates ~3.4ร faster than Bonsai, the most-downloaded on-device model (2M+), at matched quality (HellaSwag 61.0 % vs 60.0 %, a statistical tie).
- โถ๏ธ Live CPU chat (try it now): https://huggingface.co/spaces/FINAL-Bench/POCKET-35B-CPU
- ๐ POCKET collection: https://huggingface.co/collections/FINAL-Bench/pocket-models-6a618ee5d23eafb7e185a5c6
- ๐ฆ POCKET-35B-GGUF: https://huggingface.co/FINAL-Bench/POCKET-35B-GGUF
- ๐ฐ๐ท POCKET-KR-MLX (iPhone / Mac): https://huggingface.co/FINAL-Bench/POCKET-KR-MLX
- ๐ฌ๐ง POCKET-EN-GGUF: https://huggingface.co/FINAL-Bench/POCKET-EN-GGUF
This model is introduced in Darwin Family.
Darwin V7 ยท Qwen3.6 generation flagship ยท Sealed 2026-04-25 ยท FINAL-Bench
