Views
No views yet
| Role | Model | Contribution |
|---|---|---|
| Mother | FINAL-Bench/Darwin-9B-NEG | Native Entropy Gating (4M-param confidence head, GPQA 84.34% with 3-stage ensemble) |
| Father | Jackrong/Negentropy-claude-opus-4.7-9B | Claude Opus 4.7 reasoning chains via Trace Inversion (arXiv:2603.07267) |
| Metric | Score |
|---|---|
| CLIcK (Korean QA, n=200) | 68.5% |
| KMMLU (Korean MMLU, n=200) | 52.5% |
| GPQA Diamond (n=50) | 48.0% |
| TOTAL (weighted) | 55.50 |
1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4tok = AutoTokenizer.from_pretrained("VIDraft/Darwin-9B-NEG-x-Negentropy-V8", trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 "VIDraft/Darwin-9B-NEG-x-Negentropy-V8",
7 torch_dtype=torch.bfloat16,
8 device_map="auto",
9 trust_remote_code=True,
10)Qwen/Qwen3.5-9B
│
├──── Darwin V7 evolutionary merge ──→ Darwin-9B-Opus
│ │
│ + NEG-Head + NEG-Gate (V8)
│ │
│ ▼
│ FINAL-Bench/Darwin-9B-NEG (Mother)
│
├──── Trace Inversion SFT ──→ Jackrong/Negentropy-9B (Father)
│
└──── Darwin V8 Gen4 FFN blend (α=0.85) ──→ THIS MODEL