Pq234
Darwin-28B-Opus
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
Pq234
Model Tree
Input Modalities
Output Modalities
Supported Functionality
GLM-5.2 is live. #1 throughput on OpenRouter, pay-per-token on FriendliAI. Try it today ➜
Pq234
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
Pq234
Model Tree
Input Modalities
Output Modalities
Supported Functionality
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 %).
| Role | Model | Role in the Merge |
|---|---|---|
| Father (父) | Qwen/Qwen3.6-27B | Qwen3.6 generation dense backbone with hybrid linear/full attention. |
| Mother (母) | rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled | Claude Opus reasoning-distilled variant of the same backbone (Jackrong-style distillation, 14 k traces). |
| Offspring | Darwin-28B-Opus (this model) | Darwin V7 evolutionary merge; Qwen3.6 architecture retained, Opus reasoning style inherited. |
Why 28B? The
28Blabel 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.
| Component | Value |
|---|---|
| Architecture | Qwen3_5ForConditionalGeneration (Qwen3.6 generation, hybrid linear + full attention) |
| Parameters | 27.6 B (BF16) |
| Hidden size | 5 120 |
| Intermediate size | 17 408 |
| Head dim | 256 |
| Layers | 64 (3 linear : 1 full attention, full_attention_interval = 4) |
| Precision | bfloat16 |
| Context length |
Darwin-28B-Opus is evaluated under our standard 3-stage adaptive evaluation protocol, identical to the protocol used across the Darwin series.
| Stage | Decoding Protocol | Cost | Accuracy |
|---|---|---|---|
| Stage 1 | Single-shot greedy baseline | 1× | 74.75 % (148 / 198) |
| Stage 2 | Majority vote ×8 at temperature 0.7 on Stage-1 wrongs | 8× | 83.84 % (166 / 198) |
| Stage 3 | Adaptive ensemble refinement (close-tie tiebreaker + iterative MTI on residual hard questions) | ≈ 20× | 🥇 88.89 % (176 / 198) |
Key performance indicators:
python
from transformers import AutoTokenizer, AutoModelForCausalLMimport torchtok = 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))
For leaderboard-grade accuracy, combine:
Reference implementation is provided in the Darwin-series evaluation harness.
max_new_tokens as needed.bibtex
@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)}}
This model is introduced in Darwin Family.
Darwin V7 · Qwen3.6 generation flagship · Sealed 2026-04-25 · FINAL-Bench
| Inherited from base (long-chain reasoning supported) |
| License | Apache 2.0 |