Text Generation
Transformers
Safetensors
qwen3_5_moe
image-text-to-text
jgos
ourbox
darwin
darwin-platform
evolutionary-merge
ffn-merge
model-breeding
korean
korean-specialized
reasoning
advanced-reasoning
chain-of-thought
thinking
qwen3.6
qwen
Mixture of Experts
mixture-of-experts
multi-token-prediction
gpqa
benchmark
open-source
apache-2.0
vidraft
Eval Results
conversational
Eval Results (legacy)
Instructions to use FINAL-Bench/Ourbox-35B-JGOS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Ourbox-35B-JGOS with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="FINAL-Bench/Ourbox-35B-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/Ourbox-35B-JGOS") model = AutoModelForMultimodalLM.from_pretrained("FINAL-Bench/Ourbox-35B-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/Ourbox-35B-JGOS with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Ourbox-35B-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/Ourbox-35B-JGOS", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS
- SGLang
How to use FINAL-Bench/Ourbox-35B-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/Ourbox-35B-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/Ourbox-35B-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/Ourbox-35B-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/Ourbox-35B-JGOS", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use FINAL-Bench/Ourbox-35B-JGOS with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS
card: add insights cross-links (on-device / quantization)
Browse files
README.md
CHANGED
|
@@ -1,307 +1,310 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
tags:
|
| 4 |
-
- jgos
|
| 5 |
-
- ourbox
|
| 6 |
-
- darwin
|
| 7 |
-
- darwin-platform
|
| 8 |
-
- evolutionary-merge
|
| 9 |
-
- ffn-merge
|
| 10 |
-
- model-breeding
|
| 11 |
-
- korean
|
| 12 |
-
- korean-specialized
|
| 13 |
-
- reasoning
|
| 14 |
-
- advanced-reasoning
|
| 15 |
-
- chain-of-thought
|
| 16 |
-
- thinking
|
| 17 |
-
- qwen3.6
|
| 18 |
-
- qwen
|
| 19 |
-
- moe
|
| 20 |
-
- mixture-of-experts
|
| 21 |
-
- multi-token-prediction
|
| 22 |
-
- multilingual
|
| 23 |
-
- gpqa
|
| 24 |
-
- benchmark
|
| 25 |
-
- open-source
|
| 26 |
-
- apache-2.0
|
| 27 |
-
- vidraft
|
| 28 |
-
- eval-results
|
| 29 |
-
language:
|
| 30 |
-
- ko
|
| 31 |
-
- en
|
| 32 |
-
- zh
|
| 33 |
-
- ja
|
| 34 |
-
- de
|
| 35 |
-
- fr
|
| 36 |
-
- es
|
| 37 |
-
- ru
|
| 38 |
-
- ar
|
| 39 |
-
- multilingual
|
| 40 |
-
pipeline_tag: text-generation
|
| 41 |
-
library_name: transformers
|
| 42 |
-
model-index:
|
| 43 |
-
- name: Ourbox-35B-JGOS
|
| 44 |
-
results:
|
| 45 |
-
- task:
|
| 46 |
-
type: question-answering
|
| 47 |
-
name: Question Answering
|
| 48 |
-
dataset:
|
| 49 |
-
name: GPQA Diamond
|
| 50 |
-
type: Idavidrein/gpqa
|
| 51 |
-
config: gpqa_diamond
|
| 52 |
-
metrics:
|
| 53 |
-
- type: accuracy
|
| 54 |
-
value: 86.36
|
| 55 |
-
name: Accuracy
|
| 56 |
-
---
|
| 57 |
-
|
| 58 |
-
> ### 📱 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)**
|
| 59 |
-
> VIDRAFT's on-device family: a 35B model that runs on **iPhone** and on **CPU with no GPU** — stock `llama.cpp`, no fork.
|
| 60 |
-
>
|
| 61 |
-
> [](https://huggingface.co/spaces/FINAL-Bench/POCKET-35B-CPU) [](https://huggingface.co/collections/FINAL-Bench/pocket-models-6a618ee5d23eafb7e185a5c6) [](https://huggingface.co/FINAL-Bench/POCKET-35B-GGUF) [](https://huggingface.co/FINAL-Bench/POCKET-KR-MLX) [](https://huggingface.co/FINAL-Bench/POCKET-EN-GGUF)
|
| 62 |
-
|
| 63 |
-
>
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
# Ourbox-35B-JGOS: Korean-Specialized, Darwin-Evolved 35B-A3B Reasoning MoE — 86.36% on GPQA Diamond
|
| 67 |
-
|
| 68 |
-
<p align="center">
|
| 69 |
-
<a href="https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS"><img src="https://img.shields.io/badge/⭐_GPQA_Diamond-86.36%25_Ourbox--35B--JGOS-gold?style=for-the-badge" alt="GPQA"></a>
|
| 70 |
-
<a href="https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS"><img src="https://img.shields.io/badge/🇰🇷_Korean-Specialized-red?style=for-the-badge" alt="Korean"></a>
|
| 71 |
-
</p>
|
| 72 |
-
|
| 73 |
-
<p align="center">
|
| 74 |
-
<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="Sibling"></a>
|
| 75 |
-
<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>
|
| 76 |
-
<a href="https://huggingface.co/datasets/Idavidrein/gpqa"><img src="https://img.shields.io/badge/📊_Benchmark-GPQA_Diamond-orange?style=for-the-badge" alt="GPQA"></a>
|
| 77 |
-
</p>
|
| 78 |
-
|
| 79 |
-
> Darwin-Evolved on Qwen3.6-35B-A3B | 35B total / ~3B active | 🇰🇷 Korean-Specialized | Thinking Mode | Hybrid Linear/Full Attention | Multi-Token Prediction | 262K Context | BF16 | Apache 2.0
|
| 80 |
-
> **Darwin FFN-level evolutionary merge → Korean specialization → 86.36% on GPQA Diamond (majority-of-8+)**
|
| 81 |
-
|
| 82 |
-
---
|
| 83 |
-
|
| 84 |
-
## Abstract
|
| 85 |
-
|
| 86 |
-
**Ourbox-35B-JGOS** is a 35-billion-parameter mixture-of-experts (MoE) reasoning model produced by the **Darwin** evolutionary breeding platform (FINAL-Bench / VIDRAFT_LAB). Rather than retraining from scratch, Darwin recombines the **feed-forward (FFN / MoE expert) tensors** of the **Qwen3.6-35B-A3B** backbone with those of additional specialized donor models, then **evolves** the merged descendant toward a target objective — here, **Korean-language specialization**.
|
| 87 |
-
|
| 88 |
-
Because the merge operates at the **expert-FFN level**, Ourbox inherits complementary domain and language competencies from multiple sources while preserving the backbone's hybrid-attention topology and 262K long-context behavior. The result is a Korean-specialized reasoning model that remains highly competitive on English graduate-level science: on **GPQA Diamond** (198 questions across physics, chemistry, biology), Ourbox-35B-JGOS scores **86.36% (171/198)** under a majority-of-8+ protocol. On Hugging Face's live GPQA leaderboard this **improves on its own Qwen3.6-35B-A3B backbone (86.0)** by +0.36 points and edges past **GLM-5.1 (86.2)** and **GLM-5 (86.0)** — with only **~3B active parameters**.
|
| 89 |
-
|
| 90 |
-
---
|
| 91 |
-
|
| 92 |
-
## GPQA Diamond Leaderboard — Hugging Face `Idavidrein/gpqa` (2026-07-11)
|
| 93 |
-
|
| 94 |
-
Ourbox-35B-JGOS on the **official Hugging Face GPQA Diamond leaderboard** (`Idavidrein/gpqa`, base-model view, 50 models). FINAL-Bench models in **bold**:
|
| 95 |
-
|
| 96 |
-
| # | Model | GPQA Diamond |
|
| 97 |
-
|---|---|---|
|
| 98 |
-
| 1 | zai-org/GLM-5.2 | 91.2 |
|
| 99 |
-
| 2 | **FINAL-Bench/Darwin-398B-JGOS** | 90.9 |
|
| 100 |
-
| 3 | moonshotai/Kimi-K2.6 | 90.5 |
|
| 101 |
-
| 4 | tencent/Hy3 | 90.4 |
|
| 102 |
-
| 5 | deepseek-ai/DeepSeek-V4-Pro | 90.1 |
|
| 103 |
-
| 6 | **FINAL-Bench/Darwin-28B-REASON** | 89.39 |
|
| 104 |
-
| 7 | Qwen/Qwen3.5-397B-A17B | 88.4 |
|
| 105 |
-
| 8 | **FINAL-Bench/Darwin-36B-Opus** | 88.4 |
|
| 106 |
-
| 9 | **FINAL-Bench/Darwin-60B-DUO** | 88.38 |
|
| 107 |
-
| 10 | inclusionAI/Ring-2.6-1T | 88.27 |
|
| 108 |
-
| 11 | deepseek-ai/DeepSeek-V4-Flash | 88.1 |
|
| 109 |
-
| 12 | nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B (NVFP4) | 87.9 |
|
| 110 |
-
| 13 | zai-org/GLM-4.7-FP8 | 87.88 |
|
| 111 |
-
| 14 | Qwen/Qwen3.6-27B | 87.8 |
|
| 112 |
-
| 15 | moonshotai/Kimi-K2.5 | 87.6 |
|
| 113 |
-
| 16 | moonshotai/Kimi-K2.5 *(source)* | 87.37 |
|
| 114 |
-
| 17 | tencent/Hy3-preview | 87.2 |
|
| 115 |
-
| 18 | nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B (BF16) | 87.0 |
|
| 116 |
-
| 19 | **FINAL-Bench/Darwin-27B-Opus** | 86.9 |
|
| 117 |
-
| 20 | Qwen/Qwen3.5-122B-A10B | 86.6 |
|
| 118 |
-
| **★ 21** | **FINAL-Bench/Ourbox-35B-JGOS** 🇰🇷 | **86.36** |
|
| 119 |
-
| 22 | zai-org/GLM-5.1 | 86.2 |
|
| 120 |
-
| 23 | zai-org/GLM-5 | 86.0 |
|
| 121 |
-
| 24 | Qwen/Qwen3.6-35B-A3B *(Ourbox backbone)* | 86.0 |
|
| 122 |
-
| 25 | **FINAL-Bench/Darwin-31B-Opus** | 85.9 |
|
| 123 |
-
|
| 124 |
-
The FINAL-Bench Darwin family dominates the upper board — **5 of the 20 models ranked above Ourbox are Darwin models** (Darwin-398B-JGOS #2, Darwin-28B-REASON #6, Darwin-36B-Opus #8, Darwin-60B-DUO #9, Darwin-27B-Opus #19). At **86.36%**, Ourbox-35B-JGOS ranks **#21 of 50** on the live leaderboard and — most notably — **improves on its own Qwen3.6-35B-A3B backbone (86.0, #24) by +0.36 points**, confirming that the Darwin FFN-merge and Korean specialization *added* capability rather than eroding it. It also edges past **GLM-5.1 (86.2, #22)** and **GLM-5 (86.0, #23)** while activating only ~3B parameters.
|
| 125 |
-
|
| 126 |
-
> Ranks reflect the live leaderboard as of 2026-07-11 (which counts quantized/duplicate entries); positions shift as it updates. Ourbox-35B-JGOS is **live and listed at #21**.
|
| 127 |
-
|
| 128 |
-
---
|
| 129 |
-
|
| 130 |
-
## What Is Darwin?
|
| 131 |
-
|
| 132 |
-
**Darwin** is the evolutionary model-breeding platform developed by FINAL-Bench / VIDRAFT_LAB. Rather than allocating further compute to gradient optimization, Darwin treats trained checkpoints as a **genetic pool** and discovers high-performing descendants through principled recombination of their weight tensors — with a particular focus on the **FFN / MoE expert** subspace, where domain and language competence is concentrated.
|
| 133 |
-
|
| 134 |
-
At a high level, the platform performs:
|
| 135 |
-
|
| 136 |
-
1. **Per-tensor compatibility analysis** across the backbone and donor models to identify which FFN experts and components transfer cleanly and which require weighted recombination.
|
| 137 |
-
2. **FFN-level merge & evolution** — the descendant's expert tensors are assembled from the pool and iteratively evolved toward a target objective (Korean specialization for Ourbox).
|
| 138 |
-
3. **Verification** via a multi-phase scientific benchmark before release.
|
| 139 |
-
|
| 140 |
-
Specific algorithmic details of the Darwin engine are proprietary to FINAL-Bench. All Darwin models are released under the base model's open-source license (Apache 2.0).
|
| 141 |
-
|
| 142 |
-
**JGOS** is the reasoning-model line built with Darwin; **Ourbox** is its Korean-specialized 35B-A3B member.
|
| 143 |
-
|
| 144 |
-
---
|
| 145 |
-
|
| 146 |
-
## Evolution Process
|
| 147 |
-
|
| 148 |
-
Ourbox-35B-JGOS is bred, not trained:
|
| 149 |
-
|
| 150 |
-
- **Backbone**: [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen) — the foundation MoE, contributing its hybrid-attention topology (¾ linear + ¼ full), 256-expert routing, MTP head, and 262K context.
|
| 151 |
-
- **FFN donors**: additional specialized models whose **feed-forward / expert tensors** are recombined into the backbone by the Darwin engine, contributing complementary domain and Korean-language competence.
|
| 152 |
-
- **Evolution objective**: Korean specialization — the evolutionary selection biases the merged expert population toward stronger Korean reasoning and generation, while structural and long-context behavior is inherited intact from the backbone.
|
| 153 |
-
|
| 154 |
-
The merge operates **without gradient optimization on the final assembly**; a deployable bfloat16 checkpoint is produced by the Darwin pipeline directly.
|
| 155 |
-
|
| 156 |
-
---
|
| 157 |
-
|
| 158 |
-
## 🇰🇷 Korean Specialization
|
| 159 |
-
|
| 160 |
-
Ourbox-35B-JGOS is specialized for **Korean**. The Darwin evolutionary process selects and recombines FFN experts to strengthen Korean-language reasoning, comprehension, and generation — targeting natural Korean output, robust handling of Korean scientific/technical text, and reduced character-level corruption on large Korean inputs.
|
| 161 |
-
|
| 162 |
-
Crucially, this specialization does **not** come at the cost of general capability: the model's **86.36% GPQA Diamond** (in English) improves on its own Qwen3.6-35B-A3B backbone (86.0) on Hugging Face's live leaderboard, evidence that the FFN-merge preserved scientific reasoning depth while adding Korean strength. The model remains fully multilingual (Korean-first), with English, Chinese, Japanese, and other languages inherited from the backbone.
|
| 163 |
-
|
| 164 |
-
---
|
| 165 |
-
|
| 166 |
-
## Architecture
|
| 167 |
-
|
| 168 |
-
Ourbox-35B-JGOS retains the full Qwen3.6-35B-A3B architecture (`qwen3_5_moe` codebase):
|
| 169 |
-
|
| 170 |
-
| | |
|
| 171 |
-
|---|---|
|
| 172 |
-
| Foundation | Qwen3.6-35B-A3B (`Qwen3_5MoeForCausalLM`) |
|
| 173 |
-
| Breeding platform | Darwin (FFN-level evolutionary merge) |
|
| 174 |
-
| Total parameters | ~35 B |
|
| 175 |
-
| Active parameters | ~3 B (top-8 of 256 routed experts per layer) |
|
| 176 |
-
| Layers | 40 |
|
| 177 |
-
| Hidden size | 2048 |
|
| 178 |
-
| Attention | **Hybrid** — 30 linear-attention + 10 full-attention layers (`full_attention_interval = 4`) |
|
| 179 |
-
| Full-attention heads | 16 Q / 2 KV (GQA), head dim 256, partial rotary 0.25 |
|
| 180 |
-
| Linear attention | Gated-DeltaNet style — 16 key heads × 128, 32 value heads × 128, conv kernel 4 |
|
| 181 |
-
| Experts per layer | 256 routed (top-8) + 1 shared, expert intermediate 512 |
|
| 182 |
-
| Multi-Token Prediction | 1 MTP layer (`mtp_num_hidden_layers = 1`) |
|
| 183 |
-
| Context length | 262,144 tokens |
|
| 184 |
-
| Vocabulary | 248,320 |
|
| 185 |
-
| RoPE | θ = 1e7, interleaved mRoPE, sections [11, 11, 10] |
|
| 186 |
-
| Dtype | bfloat16 |
|
| 187 |
-
| Checkpoint size | ~69 GB (2 shards) |
|
| 188 |
-
| License | Apache 2.0 |
|
| 189 |
-
|
| 190 |
-
The **hybrid attention** design (¾ linear + ¼ full) gives near-linear KV-cache scaling across the 262K window, and the **Multi-Token Prediction** head provides a built-in draft for speculative decoding.
|
| 191 |
-
|
| 192 |
-
---
|
| 193 |
-
|
| 194 |
-
## GPQA Diamond Evaluation
|
| 195 |
-
|
| 196 |
-
### Methodology
|
| 197 |
-
|
| 198 |
-
Ourbox-35B-JGOS was evaluated on all **198 GPQA Diamond** questions using a two-pass **majority-of-8+** protocol (identical to sibling FINAL-Bench reasoning models, for cross-model comparability):
|
| 199 |
-
|
| 200 |
-
**Pass 1 — Greedy baseline**
|
| 201 |
-
- All 198 questions, deterministic decoding (`do_sample=False`)
|
| 202 |
-
- Up to 5,120 new tokens per question (full `<think>` trajectories)
|
| 203 |
-
- Standard multiple-choice prompt format
|
| 204 |
-
|
| 205 |
-
**Pass 2 — Stochastic majority vote with tiebreaker**
|
| 206 |
-
- Each question is answered by **8 independent stochastic generations** (`temperature=0.7`, `max_tokens=5120`); the majority answer is taken
|
| 207 |
-
- Where the 8-vote margin is inconclusive (e.g. 3:3 / 3:4 / 4:4), an additional **16-vote tiebreaker** round (`temperature=0.5`) resolves the answer
|
| 208 |
-
|
| 209 |
-
The final answer for each question is extracted after the `</think>` delimiter.
|
| 210 |
-
|
| 211 |
-
### Result
|
| 212 |
-
|
| 213 |
-
| Metric | Value |
|
| 214 |
-
|---|---|
|
| 215 |
-
| Correct | **171 / 198** |
|
| 216 |
-
| **GPQA Diamond accuracy (maj@8+)** | **86.36%** |
|
| 217 |
-
|
| 218 |
-
Evaluated against the [`Idavidrein/gpqa`](https://huggingface.co/datasets/Idavidrein/gpqa) `gpqa_diamond` split. The majority-of-8+ protocol surfaces answers that greedy decoding leaves subdominant — a pattern characteristic of well-formed chain-of-thought models — carrying Ourbox above its Qwen3.6-35B-A3B backbone (86.0) and past GLM-5.1 (86.2) on graduate-level science.
|
| 219 |
-
|
| 220 |
-
---
|
| 221 |
-
|
| 222 |
-
## Usage
|
| 223 |
-
|
| 224 |
-
```python
|
| 225 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 226 |
-
import torch
|
| 227 |
-
|
| 228 |
-
tok = AutoTokenizer.from_pretrained("FINAL-Bench/Ourbox-35B-JGOS", trust_remote_code=True)
|
| 229 |
-
model = AutoModelForCausalLM.from_pretrained(
|
| 230 |
-
"FINAL-Bench/Ourbox-35B-JGOS",
|
| 231 |
-
torch_dtype=torch.bfloat16,
|
| 232 |
-
device_map="auto",
|
| 233 |
-
trust_remote_code=True,
|
| 234 |
-
)
|
| 235 |
-
|
| 236 |
-
messages = [
|
| 237 |
-
{"role": "user", "content": "상대론적 운동에너지 식을 유도해줘."}
|
| 238 |
-
]
|
| 239 |
-
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 240 |
-
inputs = tok(text, return_tensors="pt").to(model.device)
|
| 241 |
-
outputs = model.generate(**inputs, max_new_tokens=5120, temperature=0.6, do_sample=True)
|
| 242 |
-
print(tok.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
|
| 243 |
-
```
|
| 244 |
-
|
| 245 |
-
### Answer extraction for evaluations
|
| 246 |
-
|
| 247 |
-
This is a **thinking model** — responses always begin with a `<think>` reasoning trace. For benchmarks, extract the final answer after `</think>`:
|
| 248 |
-
|
| 249 |
-
```python
|
| 250 |
-
response = tok.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
|
| 251 |
-
idx = response.rfind("</think>")
|
| 252 |
-
answer_part = response[idx + len("</think>"):].strip() if idx >= 0 else response
|
| 253 |
-
```
|
| 254 |
-
|
| 255 |
-
### Recommended settings
|
| 256 |
-
|
| 257 |
-
- **Temperature**: 0.6–0.7 for reasoning / majority voting; 0.0 for greedy deterministic
|
| 258 |
-
- **max_new_tokens**: ≥5120 to accommodate full `<think>` trajectories
|
| 259 |
-
- **Chat template**: assistant turn opens with `<think>` when `apply_chat_template(add_generation_prompt=True)` is used
|
| 260 |
-
|
| 261 |
-
---
|
| 262 |
-
|
| 263 |
-
## VRAM Requirements
|
| 264 |
-
|
| 265 |
-
| Precision | VRAM | Recommended GPU |
|
| 266 |
-
|---|---|---|
|
| 267 |
-
| bf16 (full) | ~72 GB | 1× H100 80GB / 1× B200 |
|
| 268 |
-
| 8-bit | ~40 GB | 1× A100 40GB+ / 1× L40S |
|
| 269 |
-
| 4-bit | ~22 GB | 1× RTX 4090 / 1× A10 |
|
| 270 |
-
|
| 271 |
-
---
|
| 272 |
-
|
| 273 |
-
## Key Findings
|
| 274 |
-
|
| 275 |
-
1. **Korean specialization without capability loss.** Darwin's FFN-level merge adds Korean-language strength while retaining **86.36% GPQA Diamond** — above the model's own Qwen3.6-35B-A3B backbone (86.0). Specialization and general reasoning are not a zero-sum trade under expert-level recombination.
|
| 276 |
-
|
| 277 |
-
2. **Specialization improves on the backbone.** On Hugging Face's live GPQA Diamond leaderboard, Ourbox (86.36) exceeds its own Qwen3.6-35B-A3B backbone (86.0) and edges past GLM-5.1 (86.2) and GLM-5 (86.0) — the Darwin FFN-merge added Korean capability without eroding scientific reasoning, at ~3B active parameters.
|
| 278 |
-
|
| 279 |
-
3. **Breeding beats retraining for specialization.** A deployable, Korean-specialized 35B checkpoint is produced by evolutionary FFN recombination — no full-model gradient training on the final assembly — demonstrating Darwin as an efficient route to targeted, high-capability models.
|
| 280 |
-
|
| 281 |
-
---
|
| 282 |
-
|
| 283 |
-
## References
|
| 284 |
-
|
| 285 |
-
- Rein et al., *GPQA: A Graduate-Level Google-Proof Q&A Benchmark*, 2024. [dataset](https://huggingface.co/datasets/Idavidrein/gpqa)
|
| 286 |
-
- Qwen Team, *Qwen3.6 Technical Report*, 2026.
|
| 287 |
-
|
| 288 |
-
---
|
| 289 |
-
|
| 290 |
-
## Built By
|
| 291 |
-
|
| 292 |
-
**FINAL-Bench / VIDRAFT_LAB** — Darwin evolutionary breeding platform, JGOS Korean-specialized reasoning line.
|
| 293 |
-
Backbone weights by the Qwen Team (Qwen3.6-35B-A3B). Released under Apache 2.0.
|
| 294 |
-
|
| 295 |
-
---
|
| 296 |
-
|
| 297 |
-
## Citation
|
| 298 |
-
|
| 299 |
-
```bibtex
|
| 300 |
-
@misc{ourbox-35b-jgos,
|
| 301 |
-
title = {Ourbox-35B-JGOS: Korean-Specialized, Darwin-Evolved 35B-A3B Reasoning MoE},
|
| 302 |
-
author = {FINAL-Bench and VIDRAFT_LAB},
|
| 303 |
-
year = {2026},
|
| 304 |
-
url = {https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS},
|
| 305 |
-
note = {Qwen3.6-35B-A3B backbone, Darwin FFN-level evolutionary merge, Korean-specialized, 86.36% GPQA Diamond (maj@8+)}
|
| 306 |
-
}
|
| 307 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- jgos
|
| 5 |
+
- ourbox
|
| 6 |
+
- darwin
|
| 7 |
+
- darwin-platform
|
| 8 |
+
- evolutionary-merge
|
| 9 |
+
- ffn-merge
|
| 10 |
+
- model-breeding
|
| 11 |
+
- korean
|
| 12 |
+
- korean-specialized
|
| 13 |
+
- reasoning
|
| 14 |
+
- advanced-reasoning
|
| 15 |
+
- chain-of-thought
|
| 16 |
+
- thinking
|
| 17 |
+
- qwen3.6
|
| 18 |
+
- qwen
|
| 19 |
+
- moe
|
| 20 |
+
- mixture-of-experts
|
| 21 |
+
- multi-token-prediction
|
| 22 |
+
- multilingual
|
| 23 |
+
- gpqa
|
| 24 |
+
- benchmark
|
| 25 |
+
- open-source
|
| 26 |
+
- apache-2.0
|
| 27 |
+
- vidraft
|
| 28 |
+
- eval-results
|
| 29 |
+
language:
|
| 30 |
+
- ko
|
| 31 |
+
- en
|
| 32 |
+
- zh
|
| 33 |
+
- ja
|
| 34 |
+
- de
|
| 35 |
+
- fr
|
| 36 |
+
- es
|
| 37 |
+
- ru
|
| 38 |
+
- ar
|
| 39 |
+
- multilingual
|
| 40 |
+
pipeline_tag: text-generation
|
| 41 |
+
library_name: transformers
|
| 42 |
+
model-index:
|
| 43 |
+
- name: Ourbox-35B-JGOS
|
| 44 |
+
results:
|
| 45 |
+
- task:
|
| 46 |
+
type: question-answering
|
| 47 |
+
name: Question Answering
|
| 48 |
+
dataset:
|
| 49 |
+
name: GPQA Diamond
|
| 50 |
+
type: Idavidrein/gpqa
|
| 51 |
+
config: gpqa_diamond
|
| 52 |
+
metrics:
|
| 53 |
+
- type: accuracy
|
| 54 |
+
value: 86.36
|
| 55 |
+
name: Accuracy
|
| 56 |
+
---
|
| 57 |
+
|
| 58 |
+
> ### 📱 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)**
|
| 59 |
+
> VIDRAFT's on-device family: a 35B model that runs on **iPhone** and on **CPU with no GPU** — stock `llama.cpp`, no fork.
|
| 60 |
+
>
|
| 61 |
+
> [](https://huggingface.co/spaces/FINAL-Bench/POCKET-35B-CPU) [](https://huggingface.co/collections/FINAL-Bench/pocket-models-6a618ee5d23eafb7e185a5c6) [](https://huggingface.co/FINAL-Bench/POCKET-35B-GGUF) [](https://huggingface.co/FINAL-Bench/POCKET-KR-MLX) [](https://huggingface.co/FINAL-Bench/POCKET-EN-GGUF)
|
| 62 |
+
|
| 63 |
+
>
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
# Ourbox-35B-JGOS: Korean-Specialized, Darwin-Evolved 35B-A3B Reasoning MoE — 86.36% on GPQA Diamond
|
| 67 |
+
|
| 68 |
+
<p align="center">
|
| 69 |
+
<a href="https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS"><img src="https://img.shields.io/badge/⭐_GPQA_Diamond-86.36%25_Ourbox--35B--JGOS-gold?style=for-the-badge" alt="GPQA"></a>
|
| 70 |
+
<a href="https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS"><img src="https://img.shields.io/badge/🇰🇷_Korean-Specialized-red?style=for-the-badge" alt="Korean"></a>
|
| 71 |
+
</p>
|
| 72 |
+
|
| 73 |
+
<p align="center">
|
| 74 |
+
<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="Sibling"></a>
|
| 75 |
+
<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>
|
| 76 |
+
<a href="https://huggingface.co/datasets/Idavidrein/gpqa"><img src="https://img.shields.io/badge/📊_Benchmark-GPQA_Diamond-orange?style=for-the-badge" alt="GPQA"></a>
|
| 77 |
+
</p>
|
| 78 |
+
|
| 79 |
+
> Darwin-Evolved on Qwen3.6-35B-A3B | 35B total / ~3B active | 🇰🇷 Korean-Specialized | Thinking Mode | Hybrid Linear/Full Attention | Multi-Token Prediction | 262K Context | BF16 | Apache 2.0
|
| 80 |
+
> **Darwin FFN-level evolutionary merge → Korean specialization → 86.36% on GPQA Diamond (majority-of-8+)**
|
| 81 |
+
|
| 82 |
+
---
|
| 83 |
+
|
| 84 |
+
## Abstract
|
| 85 |
+
|
| 86 |
+
**Ourbox-35B-JGOS** is a 35-billion-parameter mixture-of-experts (MoE) reasoning model produced by the **Darwin** evolutionary breeding platform (FINAL-Bench / VIDRAFT_LAB). Rather than retraining from scratch, Darwin recombines the **feed-forward (FFN / MoE expert) tensors** of the **Qwen3.6-35B-A3B** backbone with those of additional specialized donor models, then **evolves** the merged descendant toward a target objective — here, **Korean-language specialization**.
|
| 87 |
+
|
| 88 |
+
Because the merge operates at the **expert-FFN level**, Ourbox inherits complementary domain and language competencies from multiple sources while preserving the backbone's hybrid-attention topology and 262K long-context behavior. The result is a Korean-specialized reasoning model that remains highly competitive on English graduate-level science: on **GPQA Diamond** (198 questions across physics, chemistry, biology), Ourbox-35B-JGOS scores **86.36% (171/198)** under a majority-of-8+ protocol. On Hugging Face's live GPQA leaderboard this **improves on its own Qwen3.6-35B-A3B backbone (86.0)** by +0.36 points and edges past **GLM-5.1 (86.2)** and **GLM-5 (86.0)** — with only **~3B active parameters**.
|
| 89 |
+
|
| 90 |
+
---
|
| 91 |
+
|
| 92 |
+
## GPQA Diamond Leaderboard — Hugging Face `Idavidrein/gpqa` (2026-07-11)
|
| 93 |
+
|
| 94 |
+
Ourbox-35B-JGOS on the **official Hugging Face GPQA Diamond leaderboard** (`Idavidrein/gpqa`, base-model view, 50 models). FINAL-Bench models in **bold**:
|
| 95 |
+
|
| 96 |
+
| # | Model | GPQA Diamond |
|
| 97 |
+
|---|---|---|
|
| 98 |
+
| 1 | zai-org/GLM-5.2 | 91.2 |
|
| 99 |
+
| 2 | **FINAL-Bench/Darwin-398B-JGOS** | 90.9 |
|
| 100 |
+
| 3 | moonshotai/Kimi-K2.6 | 90.5 |
|
| 101 |
+
| 4 | tencent/Hy3 | 90.4 |
|
| 102 |
+
| 5 | deepseek-ai/DeepSeek-V4-Pro | 90.1 |
|
| 103 |
+
| 6 | **FINAL-Bench/Darwin-28B-REASON** | 89.39 |
|
| 104 |
+
| 7 | Qwen/Qwen3.5-397B-A17B | 88.4 |
|
| 105 |
+
| 8 | **FINAL-Bench/Darwin-36B-Opus** | 88.4 |
|
| 106 |
+
| 9 | **FINAL-Bench/Darwin-60B-DUO** | 88.38 |
|
| 107 |
+
| 10 | inclusionAI/Ring-2.6-1T | 88.27 |
|
| 108 |
+
| 11 | deepseek-ai/DeepSeek-V4-Flash | 88.1 |
|
| 109 |
+
| 12 | nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B (NVFP4) | 87.9 |
|
| 110 |
+
| 13 | zai-org/GLM-4.7-FP8 | 87.88 |
|
| 111 |
+
| 14 | Qwen/Qwen3.6-27B | 87.8 |
|
| 112 |
+
| 15 | moonshotai/Kimi-K2.5 | 87.6 |
|
| 113 |
+
| 16 | moonshotai/Kimi-K2.5 *(source)* | 87.37 |
|
| 114 |
+
| 17 | tencent/Hy3-preview | 87.2 |
|
| 115 |
+
| 18 | nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B (BF16) | 87.0 |
|
| 116 |
+
| 19 | **FINAL-Bench/Darwin-27B-Opus** | 86.9 |
|
| 117 |
+
| 20 | Qwen/Qwen3.5-122B-A10B | 86.6 |
|
| 118 |
+
| **★ 21** | **FINAL-Bench/Ourbox-35B-JGOS** 🇰🇷 | **86.36** |
|
| 119 |
+
| 22 | zai-org/GLM-5.1 | 86.2 |
|
| 120 |
+
| 23 | zai-org/GLM-5 | 86.0 |
|
| 121 |
+
| 24 | Qwen/Qwen3.6-35B-A3B *(Ourbox backbone)* | 86.0 |
|
| 122 |
+
| 25 | **FINAL-Bench/Darwin-31B-Opus** | 85.9 |
|
| 123 |
+
|
| 124 |
+
The FINAL-Bench Darwin family dominates the upper board — **5 of the 20 models ranked above Ourbox are Darwin models** (Darwin-398B-JGOS #2, Darwin-28B-REASON #6, Darwin-36B-Opus #8, Darwin-60B-DUO #9, Darwin-27B-Opus #19). At **86.36%**, Ourbox-35B-JGOS ranks **#21 of 50** on the live leaderboard and — most notably — **improves on its own Qwen3.6-35B-A3B backbone (86.0, #24) by +0.36 points**, confirming that the Darwin FFN-merge and Korean specialization *added* capability rather than eroding it. It also edges past **GLM-5.1 (86.2, #22)** and **GLM-5 (86.0, #23)** while activating only ~3B parameters.
|
| 125 |
+
|
| 126 |
+
> Ranks reflect the live leaderboard as of 2026-07-11 (which counts quantized/duplicate entries); positions shift as it updates. Ourbox-35B-JGOS is **live and listed at #21**.
|
| 127 |
+
|
| 128 |
+
---
|
| 129 |
+
|
| 130 |
+
## What Is Darwin?
|
| 131 |
+
|
| 132 |
+
**Darwin** is the evolutionary model-breeding platform developed by FINAL-Bench / VIDRAFT_LAB. Rather than allocating further compute to gradient optimization, Darwin treats trained checkpoints as a **genetic pool** and discovers high-performing descendants through principled recombination of their weight tensors — with a particular focus on the **FFN / MoE expert** subspace, where domain and language competence is concentrated.
|
| 133 |
+
|
| 134 |
+
At a high level, the platform performs:
|
| 135 |
+
|
| 136 |
+
1. **Per-tensor compatibility analysis** across the backbone and donor models to identify which FFN experts and components transfer cleanly and which require weighted recombination.
|
| 137 |
+
2. **FFN-level merge & evolution** — the descendant's expert tensors are assembled from the pool and iteratively evolved toward a target objective (Korean specialization for Ourbox).
|
| 138 |
+
3. **Verification** via a multi-phase scientific benchmark before release.
|
| 139 |
+
|
| 140 |
+
Specific algorithmic details of the Darwin engine are proprietary to FINAL-Bench. All Darwin models are released under the base model's open-source license (Apache 2.0).
|
| 141 |
+
|
| 142 |
+
**JGOS** is the reasoning-model line built with Darwin; **Ourbox** is its Korean-specialized 35B-A3B member.
|
| 143 |
+
|
| 144 |
+
---
|
| 145 |
+
|
| 146 |
+
## Evolution Process
|
| 147 |
+
|
| 148 |
+
Ourbox-35B-JGOS is bred, not trained:
|
| 149 |
+
|
| 150 |
+
- **Backbone**: [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen) — the foundation MoE, contributing its hybrid-attention topology (¾ linear + ¼ full), 256-expert routing, MTP head, and 262K context.
|
| 151 |
+
- **FFN donors**: additional specialized models whose **feed-forward / expert tensors** are recombined into the backbone by the Darwin engine, contributing complementary domain and Korean-language competence.
|
| 152 |
+
- **Evolution objective**: Korean specialization — the evolutionary selection biases the merged expert population toward stronger Korean reasoning and generation, while structural and long-context behavior is inherited intact from the backbone.
|
| 153 |
+
|
| 154 |
+
The merge operates **without gradient optimization on the final assembly**; a deployable bfloat16 checkpoint is produced by the Darwin pipeline directly.
|
| 155 |
+
|
| 156 |
+
---
|
| 157 |
+
|
| 158 |
+
## 🇰🇷 Korean Specialization
|
| 159 |
+
|
| 160 |
+
Ourbox-35B-JGOS is specialized for **Korean**. The Darwin evolutionary process selects and recombines FFN experts to strengthen Korean-language reasoning, comprehension, and generation — targeting natural Korean output, robust handling of Korean scientific/technical text, and reduced character-level corruption on large Korean inputs.
|
| 161 |
+
|
| 162 |
+
Crucially, this specialization does **not** come at the cost of general capability: the model's **86.36% GPQA Diamond** (in English) improves on its own Qwen3.6-35B-A3B backbone (86.0) on Hugging Face's live leaderboard, evidence that the FFN-merge preserved scientific reasoning depth while adding Korean strength. The model remains fully multilingual (Korean-first), with English, Chinese, Japanese, and other languages inherited from the backbone.
|
| 163 |
+
|
| 164 |
+
---
|
| 165 |
+
|
| 166 |
+
## Architecture
|
| 167 |
+
|
| 168 |
+
Ourbox-35B-JGOS retains the full Qwen3.6-35B-A3B architecture (`qwen3_5_moe` codebase):
|
| 169 |
+
|
| 170 |
+
| | |
|
| 171 |
+
|---|---|
|
| 172 |
+
| Foundation | Qwen3.6-35B-A3B (`Qwen3_5MoeForCausalLM`) |
|
| 173 |
+
| Breeding platform | Darwin (FFN-level evolutionary merge) |
|
| 174 |
+
| Total parameters | ~35 B |
|
| 175 |
+
| Active parameters | ~3 B (top-8 of 256 routed experts per layer) |
|
| 176 |
+
| Layers | 40 |
|
| 177 |
+
| Hidden size | 2048 |
|
| 178 |
+
| Attention | **Hybrid** — 30 linear-attention + 10 full-attention layers (`full_attention_interval = 4`) |
|
| 179 |
+
| Full-attention heads | 16 Q / 2 KV (GQA), head dim 256, partial rotary 0.25 |
|
| 180 |
+
| Linear attention | Gated-DeltaNet style — 16 key heads × 128, 32 value heads × 128, conv kernel 4 |
|
| 181 |
+
| Experts per layer | 256 routed (top-8) + 1 shared, expert intermediate 512 |
|
| 182 |
+
| Multi-Token Prediction | 1 MTP layer (`mtp_num_hidden_layers = 1`) |
|
| 183 |
+
| Context length | 262,144 tokens |
|
| 184 |
+
| Vocabulary | 248,320 |
|
| 185 |
+
| RoPE | θ = 1e7, interleaved mRoPE, sections [11, 11, 10] |
|
| 186 |
+
| Dtype | bfloat16 |
|
| 187 |
+
| Checkpoint size | ~69 GB (2 shards) |
|
| 188 |
+
| License | Apache 2.0 |
|
| 189 |
+
|
| 190 |
+
The **hybrid attention** design (¾ linear + ¼ full) gives near-linear KV-cache scaling across the 262K window, and the **Multi-Token Prediction** head provides a built-in draft for speculative decoding.
|
| 191 |
+
|
| 192 |
+
---
|
| 193 |
+
|
| 194 |
+
## GPQA Diamond Evaluation
|
| 195 |
+
|
| 196 |
+
### Methodology
|
| 197 |
+
|
| 198 |
+
Ourbox-35B-JGOS was evaluated on all **198 GPQA Diamond** questions using a two-pass **majority-of-8+** protocol (identical to sibling FINAL-Bench reasoning models, for cross-model comparability):
|
| 199 |
+
|
| 200 |
+
**Pass 1 — Greedy baseline**
|
| 201 |
+
- All 198 questions, deterministic decoding (`do_sample=False`)
|
| 202 |
+
- Up to 5,120 new tokens per question (full `<think>` trajectories)
|
| 203 |
+
- Standard multiple-choice prompt format
|
| 204 |
+
|
| 205 |
+
**Pass 2 — Stochastic majority vote with tiebreaker**
|
| 206 |
+
- Each question is answered by **8 independent stochastic generations** (`temperature=0.7`, `max_tokens=5120`); the majority answer is taken
|
| 207 |
+
- Where the 8-vote margin is inconclusive (e.g. 3:3 / 3:4 / 4:4), an additional **16-vote tiebreaker** round (`temperature=0.5`) resolves the answer
|
| 208 |
+
|
| 209 |
+
The final answer for each question is extracted after the `</think>` delimiter.
|
| 210 |
+
|
| 211 |
+
### Result
|
| 212 |
+
|
| 213 |
+
| Metric | Value |
|
| 214 |
+
|---|---|
|
| 215 |
+
| Correct | **171 / 198** |
|
| 216 |
+
| **GPQA Diamond accuracy (maj@8+)** | **86.36%** |
|
| 217 |
+
|
| 218 |
+
Evaluated against the [`Idavidrein/gpqa`](https://huggingface.co/datasets/Idavidrein/gpqa) `gpqa_diamond` split. The majority-of-8+ protocol surfaces answers that greedy decoding leaves subdominant — a pattern characteristic of well-formed chain-of-thought models — carrying Ourbox above its Qwen3.6-35B-A3B backbone (86.0) and past GLM-5.1 (86.2) on graduate-level science.
|
| 219 |
+
|
| 220 |
+
---
|
| 221 |
+
|
| 222 |
+
## Usage
|
| 223 |
+
|
| 224 |
+
```python
|
| 225 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 226 |
+
import torch
|
| 227 |
+
|
| 228 |
+
tok = AutoTokenizer.from_pretrained("FINAL-Bench/Ourbox-35B-JGOS", trust_remote_code=True)
|
| 229 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 230 |
+
"FINAL-Bench/Ourbox-35B-JGOS",
|
| 231 |
+
torch_dtype=torch.bfloat16,
|
| 232 |
+
device_map="auto",
|
| 233 |
+
trust_remote_code=True,
|
| 234 |
+
)
|
| 235 |
+
|
| 236 |
+
messages = [
|
| 237 |
+
{"role": "user", "content": "상대론적 운동에너지 식을 유도해줘."}
|
| 238 |
+
]
|
| 239 |
+
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 240 |
+
inputs = tok(text, return_tensors="pt").to(model.device)
|
| 241 |
+
outputs = model.generate(**inputs, max_new_tokens=5120, temperature=0.6, do_sample=True)
|
| 242 |
+
print(tok.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
|
| 243 |
+
```
|
| 244 |
+
|
| 245 |
+
### Answer extraction for evaluations
|
| 246 |
+
|
| 247 |
+
This is a **thinking model** — responses always begin with a `<think>` reasoning trace. For benchmarks, extract the final answer after `</think>`:
|
| 248 |
+
|
| 249 |
+
```python
|
| 250 |
+
response = tok.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
|
| 251 |
+
idx = response.rfind("</think>")
|
| 252 |
+
answer_part = response[idx + len("</think>"):].strip() if idx >= 0 else response
|
| 253 |
+
```
|
| 254 |
+
|
| 255 |
+
### Recommended settings
|
| 256 |
+
|
| 257 |
+
- **Temperature**: 0.6–0.7 for reasoning / majority voting; 0.0 for greedy deterministic
|
| 258 |
+
- **max_new_tokens**: ≥5120 to accommodate full `<think>` trajectories
|
| 259 |
+
- **Chat template**: assistant turn opens with `<think>` when `apply_chat_template(add_generation_prompt=True)` is used
|
| 260 |
+
|
| 261 |
+
---
|
| 262 |
+
|
| 263 |
+
## VRAM Requirements
|
| 264 |
+
|
| 265 |
+
| Precision | VRAM | Recommended GPU |
|
| 266 |
+
|---|---|---|
|
| 267 |
+
| bf16 (full) | ~72 GB | 1× H100 80GB / 1× B200 |
|
| 268 |
+
| 8-bit | ~40 GB | 1× A100 40GB+ / 1× L40S |
|
| 269 |
+
| 4-bit | ~22 GB | 1× RTX 4090 / 1× A10 |
|
| 270 |
+
|
| 271 |
+
---
|
| 272 |
+
|
| 273 |
+
## Key Findings
|
| 274 |
+
|
| 275 |
+
1. **Korean specialization without capability loss.** Darwin's FFN-level merge adds Korean-language strength while retaining **86.36% GPQA Diamond** — above the model's own Qwen3.6-35B-A3B backbone (86.0). Specialization and general reasoning are not a zero-sum trade under expert-level recombination.
|
| 276 |
+
|
| 277 |
+
2. **Specialization improves on the backbone.** On Hugging Face's live GPQA Diamond leaderboard, Ourbox (86.36) exceeds its own Qwen3.6-35B-A3B backbone (86.0) and edges past GLM-5.1 (86.2) and GLM-5 (86.0) — the Darwin FFN-merge added Korean capability without eroding scientific reasoning, at ~3B active parameters.
|
| 278 |
+
|
| 279 |
+
3. **Breeding beats retraining for specialization.** A deployable, Korean-specialized 35B checkpoint is produced by evolutionary FFN recombination — no full-model gradient training on the final assembly — demonstrating Darwin as an efficient route to targeted, high-capability models.
|
| 280 |
+
|
| 281 |
+
---
|
| 282 |
+
|
| 283 |
+
## References
|
| 284 |
+
|
| 285 |
+
- Rein et al., *GPQA: A Graduate-Level Google-Proof Q&A Benchmark*, 2024. [dataset](https://huggingface.co/datasets/Idavidrein/gpqa)
|
| 286 |
+
- Qwen Team, *Qwen3.6 Technical Report*, 2026.
|
| 287 |
+
|
| 288 |
+
---
|
| 289 |
+
|
| 290 |
+
## Built By
|
| 291 |
+
|
| 292 |
+
**FINAL-Bench / VIDRAFT_LAB** — Darwin evolutionary breeding platform, JGOS Korean-specialized reasoning line.
|
| 293 |
+
Backbone weights by the Qwen Team (Qwen3.6-35B-A3B). Released under Apache 2.0.
|
| 294 |
+
|
| 295 |
+
---
|
| 296 |
+
|
| 297 |
+
## Citation
|
| 298 |
+
|
| 299 |
+
```bibtex
|
| 300 |
+
@misc{ourbox-35b-jgos,
|
| 301 |
+
title = {Ourbox-35B-JGOS: Korean-Specialized, Darwin-Evolved 35B-A3B Reasoning MoE},
|
| 302 |
+
author = {FINAL-Bench and VIDRAFT_LAB},
|
| 303 |
+
year = {2026},
|
| 304 |
+
url = {https://huggingface.co/FINAL-Bench/Ourbox-35B-JGOS},
|
| 305 |
+
note = {Qwen3.6-35B-A3B backbone, Darwin FFN-level evolutionary merge, Korean-specialized, 86.36% GPQA Diamond (maj@8+)}
|
| 306 |
+
}
|
| 307 |
+
```
|
| 308 |
+
|
| 309 |
+
## Learn more
|
| 310 |
+
- On-device, sovereign LLMs without a GPU: [Can you run a large LLM without a GPU?](https://vidraft.net/insights/on-device-llm-without-gpu.html)
|