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)
| 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? 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.
| 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 | Inherited from base (long-chain reasoning supported) |
| License | Apache 2.0 |
| 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) |
1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4tok = AutoTokenizer.from_pretrained(
5 "FINAL-Bench/Darwin-28B-Opus",
6 trust_remote_code=True,
7)
8model = AutoModelForCausalLM.from_pretrained(
9 "FINAL-Bench/Darwin-28B-Opus",
10 torch_dtype=torch.bfloat16,
11 device_map="auto",
12 trust_remote_code=True,
13)
14
15messages = [
16 {"role": "user",
17 "content": "Solve: If f(x) = x³ − 3x + 2, find all critical points and classify them."}
18]
19text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
20inputs = tok(text, return_tensors="pt").to(model.device)
21outputs = model.generate(**inputs, max_new_tokens=2048, do_sample=False)
22print(tok.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))max_new_tokens as needed.1@misc{darwin28b_opus_2026,
2 title = {Darwin-28B-Opus: Evolutionary Merging of Qwen3.6-27B with Claude-Opus-Distilled Reasoning},
3 author = {FINAL-Bench / Darwin Research Team},
4 year = {2026},
5 howpublished = {\url{https://huggingface.co/FINAL-Bench/Darwin-28B-Opus}},
6 note = {Darwin V7 · Mother-centric Ratio Interpolation merge · 88.89 % GPQA Diamond (3-stage)}
7}