FINAL-Bench/Darwin-9B-NEG-x-Negentropy-V8

🤗 Hugging Face 来源text-generationapache-2.09B 参数18 GBsafetensors✓ 5 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo FINAL-Bench/Darwin-9B-NEG-x-Negentropy-V8 ./model-folder
需要做种者 →

Darwin-9B-NEG-x-Negentropy-V8

World-first hybrid: NEG (Native Entropy Gating) × Trace Inversion

This is a Darwin V8 (Gen4) evolutionary FFN merge between two leading 9B reasoning models:

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)

Method (Darwin V8 Gen4 engine)

In-memory FFN swap + 21-point grid search on (CLIcK + KMMLU + GPQA):

  • Mother weights: (1 − α)
  • Father FFN (gate_proj / up_proj / down_proj only): α
  • Optimal α = 0.85 selected by total weighted score
  • All non-FFN tensors (attention, embeddings, NEG-Head, NEG-Gate, vision tower, MTP head) inherited from Mother → NEG modules preserved intact

Benchmarks (logit-based, NEG OFF baseline)

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

Note: Above scores are with NEG gating disabled (single-forward logit comparison). With NEG generation gating active (the Mother's signature mechanism), GPQA Diamond is expected to reach 60%+ at 1× inference cost (NEG-only Mode 1: 63.64% on the unmerged Mother).

Usage

from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

tok = AutoTokenizer.from_pretrained("VIDraft/Darwin-9B-NEG-x-Negentropy-V8", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    "VIDraft/Darwin-9B-NEG-x-Negentropy-V8",
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True,
)

Lineage

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

Citation

  • Trace Inversion: Zhang, Morris, Shmatikov. How to Steal Reasoning Without Reasoning Traces. arXiv:2603.07267 (2026).
  • NEG: VIDRAFT internal Darwin V8 architecture.
  • Darwin V8 Gen4 engine: VIDRAFT evolutionary merge framework.

Built on 2026-05-10 by VIDRAFT (seawolf2357).