Text Generation
Transformers
Safetensors
qwen3_5_moe
image-text-to-text
darwin
darwin-v9
darwin-jgos
Mixture of Experts
mixture-of-experts
reasoning
gpqa
benchmark
greedy
vidraft
Eval Results
conversational
Eval Results (legacy)
Instructions to use FINAL-Bench/Darwin-397B-JGOS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Darwin-397B-JGOS with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="FINAL-Bench/Darwin-397B-JGOS") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("FINAL-Bench/Darwin-397B-JGOS") model = AutoModelForMultimodalLM.from_pretrained("FINAL-Bench/Darwin-397B-JGOS", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use FINAL-Bench/Darwin-397B-JGOS with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Darwin-397B-JGOS" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-397B-JGOS", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Darwin-397B-JGOS
- SGLang
How to use FINAL-Bench/Darwin-397B-JGOS with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-397B-JGOS" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-397B-JGOS", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-397B-JGOS" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-397B-JGOS", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use FINAL-Bench/Darwin-397B-JGOS with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Darwin-397B-JGOS
File size: 7,203 Bytes
baf66cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | ---
license: apache-2.0
language:
- en
- ko
- zh
- ja
- multilingual
library_name: transformers
pipeline_tag: text-generation
tags:
- darwin
- darwin-v9
- darwin-jgos
- moe
- mixture-of-experts
- reasoning
- gpqa
- benchmark
- greedy
- vidraft
- eval-results
base_model:
- Qwen/Qwen3.5-397B-A17B
base_model_relation: merge
model-index:
- name: Darwin-397B-JGOS
results:
- task:
type: text-generation
name: Graduate-Level Reasoning
dataset:
name: GPQA Diamond
type: Idavidrein/gpqa
config: gpqa_diamond
split: train
metrics:
- type: accuracy
value: 90.9
name: Accuracy (greedy, single-sample, no test-time engine)
verified: false
---
# Darwin-397B-JGOS β Darwin V9 Platform Β· 397B MoE Β· GPQA 90.9 % (Pure Greedy)
<p align="center">
<a href="https://huggingface.co/FINAL-Bench/Darwin-397B-JGOS"><img src="https://img.shields.io/badge/β_GPQA_Diamond-90.9%25_Darwin--397B--JGOS-gold?style=for-the-badge" alt="GPQA"></a>
<a href="https://huggingface.co/FINAL-Bench/Darwin-28B-REASON"><img src="https://img.shields.io/badge/π§¬_Darwin--28B--REASON-89.39%25_(DELPHI)-blue?style=for-the-badge" alt="REASON"></a>
</p>
<p align="center">
<a href="https://huggingface.co/FINAL-Bench/Darwin-28B-Opus"><img src="https://img.shields.io/badge/π§¬_Darwin--28B--Opus-88.89%25-blue?style=for-the-badge" alt="Opus"></a>
<a href="https://huggingface.co/FINAL-Bench/Darwin-36B-Opus"><img src="https://img.shields.io/badge/π§¬_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/π _Darwin_Family-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/π_FINAL_Bench-Leaderboard-green?style=for-the-badge" alt="FINAL Bench"></a>
</p>
> Largest Darwin model Β· Qwen 3.5 397B base + Darwin V9 FFN transplant Β· 397B MoE (~17B active) Β· BF16
> **GPQA Diamond: 90.9 % β pure greedy, single-sample, NO test-time engine**
---
## Overview
**Darwin-397B-JGOS** is the largest and highest-scoring member of the Darwin family. Built on **Qwen 3.5 397B** as the base, it transplants the FFN (expert) strengths of multiple high-performance models through the **Darwin V9 platform**, producing a 397B-parameter Mixture-of-Experts model with ~17B active parameters per token.
It reaches **90.9 % on GPQA Diamond with pure greedy decoding (single sample)** β surpassing **Darwin-28B-REASON (89.39 %, achieved *with* the Darwin-DELPHI test-time engine)** without using any test-time engine at all. This is the highest GPQA Diamond score in the Darwin family to date.
---
## 𧬠Darwin Platform & Research
**Darwin** is VIDRAFT's measuring-result-driven reasoning model family β approximately **20 official models** plus **400+ community derivatives**, ranking among the top open models on GPQA.
- **Darwin V9 platform** β evolutionary FFN/expert transplant and trust-weighted merging onto large-scale MoE backbones.
- **FINAL Bench** β VIDRAFT's evaluation framework.
- **4-layer Pre-AGI roadmap** β Darwin β AETHER β PROMETHEUS β HEPHAESTUS.
---
## 𧬠Model Lineage
| Role | Model | Contribution |
|:---:|:---|:---|
| **Base** | `Qwen 3.5 397B (A17B)` | 397B Mixture-of-Experts backbone (~17B active). |
| **FFN transplant** | **Darwin V9 platform** (proprietary) | Transplants the FFN (expert) strengths of multiple high-performance models onto the base. |
| **Result** | **`Darwin-397B-JGOS`** (this model) | 397B MoE β **90.9 %** GPQA Diamond, pure greedy. |
> The full Darwin V9 merge recipe β source models, weighting, and density β is **proprietary** and **not disclosed** (trade secret).
---
## βοΈ Technical Specifications
| Component | Value |
|:---|:---|
| Architecture | `Qwen3_5MoeForConditionalGeneration` (Qwen 3.5 generation MoE) |
| Parameters | **~397 B total / ~17 B active** (Mixture-of-Experts) |
| Base | Qwen 3.5 397B (A17B) |
| Precision | bfloat16 |
| License | other |
---
## π¬ Core Technique β Darwin V9 Platform
Darwin V9 transplants the FFN (expert) strengths of multiple high-performance models onto a Qwen 3.5 397B MoE base, then applies trust-weighted evolutionary merging.
> The source models, merge weights, and density schedule are **proprietary** and constitute a **trade secret**; they are not published.
---
## π Benchmark β GPQA Diamond (198 questions)
GPQA Diamond is a 198-question, PhD-level graduate science reasoning benchmark.
| Model | Engine | **Accuracy** |
|:---|:---|:---:|
| Darwin-28B-Opus | Standard | 88.89 % (176 / 198) |
| Darwin-28B-REASON | Darwin-DELPHI (test-time) | 89.39 % (177 / 198) |
| **Darwin-397B-JGOS** | **Greedy (single-sample, no engine)** | **π₯ 90.9 % (180 / 198)** |
**Reproducible evaluation settings:**
- Greedy decoding (temperature = 0), single sample β **no voting / self-consistency / test-time engine**
- Max generation: 16,384 tokens
- Answer options shuffled (seed = 42)
- Hardware: **NVIDIA B200** (tensor-parallel 2 Γ pipeline-parallel 3, 6 GPUs)
- Inference engine: **vLLM**, bfloat16, `max_model_len = 18432`
> Darwin-397B-JGOS achieves the family's top GPQA Diamond score using nothing but greedy decoding β no Darwin-DELPHI, no majority voting.
---
## π Usage (vLLM)
```bash
vllm serve FINAL-Bench/Darwin-397B-JGOS --tensor-parallel-size 2 --pipeline-parallel-size 3 --dtype bfloat16 --trust-remote-code
```
---
## π― Recommended Use-Cases
- Graduate-level STEM reasoning (GPQA / science qualifying exams)
- Mathematical problem solving
- Complex multi-step chain-of-thought
- Code generation and debugging
- Bilingual reasoning (strong English + Korean; also Chinese / Japanese)
## β οΈ Limitations
- 397B MoE in bfloat16 requires multi-GPU serving (e.g. B200 Γ6 with TP2ΓPP3).
- The 90.9 % figure is a single-run greedy measurement on GPQA Diamond (198 items).
- Reasoning traces can be verbose β control with max tokens.
---
## π Citation
```bibtex
@misc{darwin397b_jgos_2026,
title = {Darwin-397B-JGOS: Darwin V9 Platform FFN Transplant on a 397B MoE Base},
author = {FINAL-Bench / Darwin Research Team},
year = {2026},
howpublished = {https://huggingface.co/FINAL-Bench/Darwin-397B-JGOS},
note = {Darwin V9 - 90.9 percent GPQA Diamond (greedy, single-sample)}
}
```
---
## π Related Darwin Models
- **Darwin-28B-REASON** β RTD + Darwin-DELPHI, GPQA 89.39 %
- **Darwin-28B-Opus** β base, GPQA 88.89 % (HF-official GPQA top tier)
- **Darwin-36B-Opus** β MoE 36B, GPQA 88.4 %
- **Darwin-27B-Opus** β 27B dense, GPQA 86.9 %
- **Darwin-9B-NEG** β 9B Negentropy, GPQA 84.3 %
---
*Darwin-397B-JGOS Β· Darwin V9 Platform Β· 90.9 % GPQA Diamond (pure greedy) Β· FINAL-Bench*
<!-- eval re-index trigger: GPQA Diamond (diamond) = 90.9% (180/198), greedy single-sample, 2026-06-13 -->
|