SAVRN
Search Contact SAVRN

Open-weight model · Text generation

Darwin-397B-ZTC

by FINAL_Bench FINAL-Bench/Darwin-397B-ZTC

Darwin-397B-ZTC is an open-weight model for text generation from FINAL_Bench, released under Apache License 2.0. It has 403.6B parameters and a 262,144-token context. At 16-bit it needs about 968.6 GB of GPU memory, which fits on 4x MI325X from $8.00 an hour; at 4-bit, 242.2 GB on 1x MI325X from $2.00, at the lowest prices in the SAVRN Index. It draws 32 downloads a month.

the footprint, GPQA Diamond 93.43 %. And this model stops itself before it acts on an answer it is about to get wrong.

Parameters403.6B
Context262,144
Weights418.7 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads32

Runs On

What it takes to serve Darwin-397B-ZTC (403.6B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 807.2 GB 968.6 GB 4x MI325X (256 GB)
Vultr
$8.00 4x MI355X $10.36 · 6x MI300X $11.10
8-bit 403.6 GB 484.3 GB 2x MI325X (256 GB)
Vultr
$4.00 2x MI355X $5.18 · 3x MI300X $5.55
4-bit 201.8 GB 242.2 GB 1x MI325X (256 GB)
Vultr
$2.00 1x MI355X $2.59 · 2x MI300X $3.70

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 23, 2026.

Darwin-397B-ZTC on every accelerator the SAVRN Index prices, at every precision

Model Card

By FINAL_Bench, published under apache-2.0, revision 6f10591b6f9c.

the footprint, GPQA Diamond 93.43 %. And this model stops itself before it acts on an answer it is about to get wrong. Darwin is VIDRAFT's measurement-driven reasoning model family — roughly 20 official models, 400+ community derivatives, and a standing place among the top open models on GPQA. A large MoE model is made of hundreds of experts. Darwin V9 selects the experts that perform best across several high-performing models, transplants them onto a base backbone, and fuses them with trust-weighted evolutionary merging. Nothing is trained from scratch — proven capability is grafted on. That is why the same method holds across every model size. - Darwin V9 — evolutionary FFN/expert…

Read FINAL_Bench's full model card

397B Mixture-of-Experts built on Qwen 3.5 · FP8 · GPQA Diamond 93.43 % · ZTC on board

reasoning · MoE · FP8 · 262K long context · Korean + English · hallucination detection · tool calling

Half the footprint, GPQA Diamond 93.43 %. And this model stops itself before it acts on an answer it is about to get wrong.


The Darwin Family

Darwin is VIDRAFT's measurement-driven reasoning model family — roughly 20 official models, 400+ community derivatives, and a standing place among the top open models on GPQA.


Darwin — transplanting the experts that work

A large MoE model is made of hundreds of experts. Darwin V9 selects the experts that perform best across several high-performing models, transplants them onto a base backbone, and fuses them with trust-weighted evolutionary merging.

Nothing is trained from scratch — proven capability is grafted on. That is why the same method holds across every model size.

Model Scale GPQA Diamond
Darwin-9B-NEG 9B 84.3
Darwin-27B-Opus 27B dense 86.9
Darwin-36B-Opus 36B MoE 88.4
Darwin-28B-Opus 28B 88.89
Darwin-28B-REASON 28B + DELPHI 89.39
Darwin-398B-JGOS 397B MoE (bf16) 90.9
Darwin-397B-ZTC 397B MoE (FP8) 93.43

Lineage

Role
Base Qwen/Qwen3.5-397B-A17B 397B MoE backbone, ~17B active — Apache-2.0
Darwin V9 expert transplant + trust-weighted evolutionary merging this is where the model becomes Darwin
Precision compressed-tensors W8A8 FP8 418.7 GB
ZTC zero-token confidence readout ships in ztc/
  • Darwin V9 — evolutionary FFN/expert transplant and trust-weighted merging onto large MoE backbones
  • FINAL Bench — VIDRAFT's evaluation framework
  • Four-layer Pre-AGI roadmap — Darwin → AETHER → PROMETHEUS → HEPHAESTUS

ZTC — it knowsbefore it answers

Until now there were two ways to find out whether a model is about to be wrong. Both of them only work after the answer already exists.

Existing approach Limitation
Ask the model in words Costs extra tokens, adds latency, and models are badly overconfident
Attach an external judge model Two models to operate · re-reads the entire answer · degrades on long outputs·arrives too late — the answer is already produced

ZTC is a third path. It reads the model's own internal state once, before generation begins.

External judge model ZTC
When After the answer Before it starts
Extra model Required (two to operate) None (one)
Extra generated tokens Re-processes prompt + answer 0
Added latency A second inference pass 0.52 ms — 0.003 % of generation cost
Long answers, long trajectories Degrades as length grows Length-independent

Measured — on this model

① It judges its own answers (PubMedQA, 539 items, 146 incorrect)

AUROC
Self-reported confidence (asked in words) 0.7646
ZTC (internal-state readout) 0.8801
Gain +0.1155

Permutation null control: z = 13.31 — shuffle the labels and the signal disappears.

② It judges other models' answers (Korean KMMLU, 400 items — law, math, biology, history)

Judge AUROC
Darwin-397B-ZTC 0.8228 (z = 9.66)
Qwen3.5-27B 0.8171
Qwen3.5-9B 0.7297
Qwen3.5-4B 0.7284
Open-source 4B judge model 0.6844

Same 400 items, same conditions: +0.138 over the open-source judge model.


The probe ships with this model

File
ztc/ztc_probe_darwin397b.npz 45 KB — the confidence readout for this model
ztc/usage.py minimal, runnable example
z = np.load("ztc/ztc_probe_darwin397b.npz")
s = ((h - z["mu"]) / z["sd"]) @ z["w"]        # h = last-token hidden state, 4096-dim
p = 1 / (1 + np.exp(-(z["cal_A"] * (s - z["s_mean"]) / z["s_std"] + z["cal_B"])))

One matrix product. No second model, no extra tokens, no network call. The probe is specific to this model's hidden space (4096-dim) and does not transfer to others.


Why this is decisive for agents —after-the-fact report vs. pre-action stop

In an agent loop the expensive thing is not tokens. It is actions. Files get edited, APIs get called, payments go through, mail leaves the building.

External judge :  [generate] → [tool runs] → [cost, time, side effects] → [judge] → "that was wrong"
ZTC            :  [read state, 0.52 ms] → stop here if risky → the action never happens

In front of an irreversible action, an after-the-fact verdict is an incident report.

Patterns

Pattern Behaviour
Tool-call gating Low confidence → do not call the tool, ask a human instead
Model routing Send only the low-confidence queries to a larger model or external API
Retry budgeting Spend multi-sample decoding only on the steps that wobble
Long-trajectory monitoring Agent trajectories run to tens of thousands of tokens — length-independent, so it can stay on at every step
Selective prediction Withhold a risky answer and return "I don't know"

Gate deployment, measured

Metric Before After
Gate accuracy 71.3 % 93.3 %
Incorrect answers blocked 40.7 % 74.1 %
Expensive-path calls 42 % 17 %

At effectively zero cost it can stay on for every request.

Use cases — hallucination detection · uncertainty quantification · confidence calibration · selective prediction · routing risky queries upstream · pre-action gating for agents


GPQA Diamond 93.43 %

Model GPQA Diamond
Darwin-397B-ZTC 93.43
GPT5.2 92.4
Gemini-3 Pro 91.9
Qwen3.5-397B-A17B 88.4
Claude 4.5 Opus 87.0
GPQA Diamond, all 198 items · greedy · single sample · no test-time engine

Comparison figures: Qwen3.5-397B-A17B official model card.


Specifications

Item Value
Architecture Qwen3_5MoeForConditionalGeneration
Parameters 397 B total / 17 B active (512 experts, 10 routed + 1 shared per token)
Layers · hidden 60 · 4096
Attention Hybrid (45 linear + 15 full attention layers)
Precision FP8 (compressed-tensors W8A8)
Size on disk 418.7 GB
Context 262,144 tokens
License apache-2.0

Quickstart

Serving with vLLM (4 × H100 80GB)

vllm serve FINAL-Bench/Darwin-397B-ZTC \
  --served-model-name darwin-397b \
  --tensor-parallel-size 1 --pipeline-parallel-size 4 \
  --gpu-memory-utilization 0.92 --max-model-len 262144 \
  --cpu-offload-gb 20 --enforce-eager --trust-remote-code \
  --reasoning-parser qwen3 --enable-auto-tool-choice \
  --port 8000

SGLang

python -m sglang.launch_server --model-path FINAL-Bench/Darwin-397B-ZTC \
  --port 8000 --tp-size 8 --context-length 262144

Chat Completions (OpenAI-compatible)

from openai import OpenAI
c = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")

r = c.chat.completions.create(
    model="darwin-397b",
    messages=[{"role": "user", "content": "Why is the Riemann hypothesis hard?"}],
    temperature=0.0, max_tokens=8192,
)
m = r.choices[0].message
print(m.reasoning_content)   # thinking trace
print(m.content)             # final answer

Tool calling

tools = [{
    "type": "function",
    "function": {
        "name": "get_weather",
        "description": "Get the current weather for a city",
        "parameters": {"type": "object",
                       "properties": {"city": {"type": "string"}},
                       "required": ["city"]},
    },
}]

r = c.chat.completions.create(
    model="darwin-397b", tools=tools,
    messages=[{"role": "user", "content": "What's the weather in Paris?"}],
)
print(r.choices[0].message.tool_calls)

Agents and coding CLIs

The endpoint is OpenAI-compatible, so existing tooling connects unchanged.

opencode — ~/.config/opencode/opencode.json

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "darwin": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Darwin (local)",
      "options": { "baseURL": "http://localhost:8000/v1", "apiKey": "EMPTY" },
      "models": { "darwin-397b": { "name": "Darwin-397B-ZTC" } }
    }
  }
}

Any OpenAI-compatible client (Cline, Continue, Aider, …)

export OPENAI_BASE_URL=http://localhost:8000/v1
export OPENAI_API_KEY=EMPTY
export OPENAI_MODEL=darwin-397b

Intended use

  • Graduate-level STEM reasoning (GPQA, science qualifying exams)
  • Mathematics and long multi-step chains of thought
  • Code generation and debugging
  • Agent workflows — ZTC blocks irreversible tool calls before they run
  • Bilingual Korean + English reasoning (Chinese and Japanese supported)
  • Work where a wrong answer is expensive — ZTC filters risky answers before they ship

Links

Citation

@misc{darwin397b_ztc_2026,
  title = {Darwin-397B-ZTC: FP8 Mixture-of-Experts with Zero-Token Confidence},
  year  = {2026},
  url   = {https://vidraft.net},
  note  = {Base: Qwen/Qwen3.5-397B-A17B}
}

Configuration

Architecture
Qwen3_5MoeForConditionalGeneration
Context length (tokens)
262,144
Layers
60
Hidden size
4,096
Attention heads
32
Key/value heads
2
Head dimension
256
Vocabulary size
248,320
Experts
512
Experts active per token
10
Model type
qwen3_5_moe
Quantization
compressed-tensors

Identity and Version

Repository
FINAL-Bench/Darwin-397B-ZTC
Publisher
FINAL_Bench
Task
Text generation
Modality
Text
Library
transformers
Parameters
403.6B parameters
Languages
en, ko, zh, ja
Revision
6f10591b6f9cf0b7aa98a1c84895ced601b3652f
First published
2026-06-25
Last updated
2026-09-20

Files and Weights

110 files, 418.7 GB in total. The weights are 95 files totalling 418.7 GB in npz, safetensors.

Weights95 files · 418.7 GB
Configuration8 files · 346.7 KB
Tokenizer4 files · 22.9 MB
Documentation1 file · 13.6 KB
Other1 file · 66 B
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model.safetensors-00001-of-00094.safetensorsWeights4.3 GB fd7c2d4e036a
model.safetensors-00002-of-00094.safetensorsWeights4.3 GB 1889c8ae5e64
model.safetensors-00003-of-00094.safetensorsWeights4.3 GB eadfd0a08993
model.safetensors-00004-of-00094.safetensorsWeights4.3 GB 690fb2572a14
model.safetensors-00005-of-00094.safetensorsWeights4.3 GB 558bb87ea18f
model.safetensors-00006-of-00094.safetensorsWeights4.3 GB 063a34ef9bf7
model.safetensors-00007-of-00094.safetensorsWeights4.3 GB 0492e8087d8d
model.safetensors-00008-of-00094.safetensorsWeights4.3 GB b1c6a727aa1d
model.safetensors-00009-of-00094.safetensorsWeights4.3 GB 62271ec17d65
model.safetensors-00010-of-00094.safetensorsWeights4.3 GB 6a7a7301409c
model.safetensors-00011-of-00094.safetensorsWeights4.3 GB 3ca4c2bdb513
model.safetensors-00012-of-00094.safetensorsWeights4.3 GB 765bcefd6e1f
model.safetensors-00013-of-00094.safetensorsWeights4.3 GB 2be8704493b8
model.safetensors-00014-of-00094.safetensorsWeights4.3 GB c476e416e632
model.safetensors-00015-of-00094.safetensorsWeights4.3 GB c8eb84996718
model.safetensors-00016-of-00094.safetensorsWeights4.3 GB 2c879effbe15
model.safetensors-00017-of-00094.safetensorsWeights4.3 GB 043a0f7ec348
model.safetensors-00018-of-00094.safetensorsWeights4.3 GB a96d21e238bc
model.safetensors-00019-of-00094.safetensorsWeights4.3 GB b3050829ab91
model.safetensors-00020-of-00094.safetensorsWeights4.3 GB edb66e837156
model.safetensors-00021-of-00094.safetensorsWeights4.3 GB 1a303a9375b9
model.safetensors-00022-of-00094.safetensorsWeights4.3 GB 331f77b7fa14
model.safetensors-00023-of-00094.safetensorsWeights4.3 GB d48a6875a652
model.safetensors-00024-of-00094.safetensorsWeights4.3 GB c542c6a065d9
model.safetensors-00025-of-00094.safetensorsWeights4.3 GB b61f4c041780
model.safetensors-00026-of-00094.safetensorsWeights4.3 GB 90b1f6ecf804
model.safetensors-00027-of-00094.safetensorsWeights4.3 GB 87921646436d
model.safetensors-00028-of-00094.safetensorsWeights4.3 GB 8175fa19a537
model.safetensors-00029-of-00094.safetensorsWeights4.3 GB 5222623c4c3a
model.safetensors-00030-of-00094.safetensorsWeights4.3 GB e40d1a960b09
model.safetensors-00031-of-00094.safetensorsWeights4.3 GB bffba520c70b
model.safetensors-00032-of-00094.safetensorsWeights4.3 GB f8fca3649437
model.safetensors-00033-of-00094.safetensorsWeights4.3 GB ba9f1b300d20
model.safetensors-00034-of-00094.safetensorsWeights4.3 GB cee3445634aa
model.safetensors-00035-of-00094.safetensorsWeights4.3 GB f1523061074c
model.safetensors-00036-of-00094.safetensorsWeights4.3 GB 4a20c5983e34
model.safetensors-00037-of-00094.safetensorsWeights4.3 GB eae4d86c40c2
model.safetensors-00038-of-00094.safetensorsWeights4.3 GB 561f2714a2a6
model.safetensors-00039-of-00094.safetensorsWeights4.3 GB bf50b5017bd8
model.safetensors-00040-of-00094.safetensorsWeights4.3 GB 4c58d3203bf6
model.safetensors-00041-of-00094.safetensorsWeights4.3 GB c0084251a49a
model.safetensors-00042-of-00094.safetensorsWeights4.3 GB aaf3d170bd68
model.safetensors-00043-of-00094.safetensorsWeights4.3 GB 9b6b1ff5226f
model.safetensors-00044-of-00094.safetensorsWeights4.3 GB c5ee63cfcbaa
model.safetensors-00045-of-00094.safetensorsWeights4.3 GB 3ec35d67008b
model.safetensors-00046-of-00094.safetensorsWeights4.3 GB 28ab1796a679
model.safetensors-00047-of-00094.safetensorsWeights4.3 GB 82575961a353
model.safetensors-00048-of-00094.safetensorsWeights4.3 GB c0cd84f5cfdb
model.safetensors-00049-of-00094.safetensorsWeights4.3 GB 5443df6b1729
model.safetensors-00050-of-00094.safetensorsWeights4.3 GB 988d4fd007db
model.safetensors-00051-of-00094.safetensorsWeights4.3 GB b545e3a5fa1d
model.safetensors-00052-of-00094.safetensorsWeights4.3 GB 1b71bc0f009b
model.safetensors-00053-of-00094.safetensorsWeights4.3 GB 84e99af0cdad
model.safetensors-00054-of-00094.safetensorsWeights4.3 GB ace8607a148f
model.safetensors-00055-of-00094.safetensorsWeights4.3 GB 10f97ea580ef
model.safetensors-00056-of-00094.safetensorsWeights4.3 GB 337e10c33113
model.safetensors-00057-of-00094.safetensorsWeights4.3 GB 6d995b4b39f0
model.safetensors-00058-of-00094.safetensorsWeights4.3 GB 7da028c7d45c
model.safetensors-00059-of-00094.safetensorsWeights4.3 GB ef6fe759d1ad
model.safetensors-00060-of-00094.safetensorsWeights4.3 GB d71f797ea87d
model.safetensors-00061-of-00094.safetensorsWeights4.3 GB 5b37263dc5e2
model.safetensors-00062-of-00094.safetensorsWeights4.3 GB 5a022d975e02
model.safetensors-00063-of-00094.safetensorsWeights4.3 GB 6935e699fc3a
model.safetensors-00064-of-00094.safetensorsWeights4.3 GB 6558f0c50cdd
model.safetensors-00065-of-00094.safetensorsWeights4.3 GB 8c37d1c6f4d9
model.safetensors-00066-of-00094.safetensorsWeights4.3 GB 5314be0b6b4d
model.safetensors-00067-of-00094.safetensorsWeights4.3 GB 8f0655917274
model.safetensors-00068-of-00094.safetensorsWeights4.3 GB 2f91fdb89249
model.safetensors-00069-of-00094.safetensorsWeights4.3 GB 1b0ed21d0e71
model.safetensors-00070-of-00094.safetensorsWeights4.3 GB b2b532d3ceb1
model.safetensors-00071-of-00094.safetensorsWeights4.3 GB 584f3755d822
model.safetensors-00072-of-00094.safetensorsWeights4.3 GB 43ce35ce346a
model.safetensors-00073-of-00094.safetensorsWeights4.3 GB aff6eb76251a
model.safetensors-00074-of-00094.safetensorsWeights4.3 GB 2f72944899e9
model.safetensors-00075-of-00094.safetensorsWeights4.3 GB ff51f5dc1035
model.safetensors-00076-of-00094.safetensorsWeights4.3 GB 6ad6d58313e4
model.safetensors-00077-of-00094.safetensorsWeights4.3 GB 6cb1ab4d6414
model.safetensors-00078-of-00094.safetensorsWeights4.3 GB 3692f10448cf
model.safetensors-00079-of-00094.safetensorsWeights4.3 GB 823b76f3bee7
model.safetensors-00080-of-00094.safetensorsWeights4.3 GB b7ca3e591ceb
model.safetensors-00081-of-00094.safetensorsWeights4.3 GB f104a5b5a597
model.safetensors-00082-of-00094.safetensorsWeights4.3 GB be3b34983ce6
model.safetensors-00083-of-00094.safetensorsWeights4.3 GB f53a19482976
model.safetensors-00084-of-00094.safetensorsWeights4.3 GB e8f34a30cb4e
model.safetensors-00085-of-00094.safetensorsWeights4.3 GB 328d84444a68
model.safetensors-00086-of-00094.safetensorsWeights4.3 GB 39e08647fc9f
model.safetensors-00087-of-00094.safetensorsWeights4.3 GB 3e49b4013129
model.safetensors-00088-of-00094.safetensorsWeights4.3 GB a3f76aec810f
model.safetensors-00089-of-00094.safetensorsWeights4.3 GB 8c0c115e18a1
model.safetensors-00090-of-00094.safetensorsWeights4.3 GB a7caea2705a3
model.safetensors-00091-of-00094.safetensorsWeights8.6 GB b367d427d788
model.safetensors-00092-of-00094.safetensorsWeights9.1 GB 4bada2f2a08b
model.safetensors-00093-of-00094.safetensorsWeights9.7 GB f0b3e511ed62
model.safetensors-00094-of-00094.safetensorsWeights4.0 GB 14d26f47e9ef
ztc/ztc_probe_darwin397b.npzWeights46.1 KB 67deed560db0
.eval_results/gpqa_diamond.yamlConfiguration210 B
config.jsonConfiguration4.3 KB
generation_config.jsonConfiguration244 B
handler.pyConfiguration5.1 KB
model.safetensors.index.jsonConfiguration333.8 KB
preprocessor_config.jsonConfiguration390 B
video_preprocessor_config.jsonConfiguration385 B
ztc/usage.pyConfiguration2.1 KB
README.mdDocumentation13.6 KB
requirements.txtOther66 B
.gitattributesRepository1.6 KB
merges.txtTokenizer3.4 MB
tokenizer.jsonTokenizer12.8 MB 5f9e4d4901a9
tokenizer_config.jsonTokenizer16.7 KB
vocab.jsonTokenizer6.7 MB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
418.7 GB
Download from FINAL_Bench

Released by FINAL_Bench through its official repository on Hugging Face. Read the license.

Evaluations

Each result is shown as reported, with the conditions its reporter stated. None is a SAVRN measurement. A comparison lines two results up only when their configuration, unit and setup are all stated and identical.

BenchmarkConditionsResultReported byRevisionDate
GPQA Diamond Configuration gpqa_diamondTask Graduate-Level ReasoningMetric Accuracy (greedy, single-sample)Comparison conditions not established 93.43 FINAL-Bench
Publisher reported
Evaluated revision not stated
Idavidrein/gpqa Task diamondMetric diamondSetup greedy decodingComparison conditions not established 93.43 Model Card
Reported by a third party
Evaluated revision not stated 2026-09-20

Memory Requirements

PrecisionWeights in memory
As published418.7 GB
16-bit807.2 GB
8-bit403.6 GB
4-bit201.8 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About Darwin-397B-ZTC

How much GPU memory does Darwin-397B-ZTC need?

About 968.6 GB at 16-bit and 242.2 GB at 4-bit: the weights (403.6B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run Darwin-397B-ZTC on?

At 16-bit, 4x MI325X from $8.00 an hour; at 4-bit, 1x MI325X from $2.00 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use Darwin-397B-ZTC commercially?

Yes. Darwin-397B-ZTC is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is Darwin-397B-ZTC's context length?

262,144 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Text generation

Darwin-397B-JGOS

FINAL_Bench

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 is VIDRAFT's measuring-result-driven reasoning model family — approximately 20 official models…

Open weights apache-2.0 403.4B parameters 262,144 tokens transformers

Model · Text generation

GLM-5.2-NVFP4

NVIDIA

The NVIDIA GLM-5.2 NVFP4 model is the quantized version of ZAI’s GLM-5.2 model, which is an auto-regressive language model that uses an optimized transformer architecture. GLM-5.2 is a Mixture-of-Experts (MoE) model for reasoning and coding that uses sparse attention (with an IndexShare indexer) to support a long context. For more information, please check here. The NVIDIA GLM-5.2 NVFP4 model is quantized with Model Optimizer. This model is ready for commercial or non-commercial use. GOVERNING TERMS: Use of the model is governed by the MIT License, same as the base model. Global Developers looking to take off-the-shelf, pre-quantized models for deployment in AI Agent systems, chatbots, RAG…

Open weights mit 381B parameters 1,048,576 tokens Model Optimizer

K2-Horizon-375B-A23B is the flagship of the K2-Horizon family: a sparse Mixture-of-Experts model that stores 375B parameters and runs 23B per token, with a 512K context window. We have released the final checkpoint; intermediate checkpoints, along with the data and the training code, will be released. - Frontier-class agentic performance. On agentic tool use, terminal, and long-horizon workflow benchmarks it matches or beats open-weight MoE models up to 2.6× its size and is competitive with closed frontier models (see Benchmark Results). - 512K context. Native 524,288-token context from the midtraining stages onward. - Intermediate checkpoints. Intermediate checkpoints will be released so…

Open weights apache-2.0 379.2B parameters 524,288 tokens transformers

Model · Text generation

Qwen3-Coder-480B-A35B-Instruct-FP8

Qwen

Today, we're announcing Qwen3-Coder, our most agentic code model to date. Qwen3-Coder is available in multiple sizes, but we're excited to introduce its most powerful variant first: Qwen3-Coder-480B-A35B-Instruct. featuring the following key enhancements: - Significant Performance among open models on Agentic Coding, Agentic Browser-Use, and other foundational coding tasks, achieving results comparable to Claude Sonnet. - Long-context Capabilities with native support for 256K tokens, extendable up to 1M tokens using Yarn, optimized for repository-scale understanding. - Agentic Coding supporting for most platform such as Qwen Code, CLINE, featuring a specially designed function call format.…

Open weights apache-2.0 480.2B parameters 262,144 tokens transformers

Model · Text generation

DeepSeek-V4-Flash-0731

DeepSeek

DeepSeek-V4-Flash-0731 is the official release of DeepSeek-V4-Flash, superseding the preview version, with substantially enhanced agentic capabilities. It has the same model structure as DeepSeek-V4-Flash-DSpark, i.e. it comes with a speculative decoding module attached. DeepSeek-V4-Flash-0731 outperforms DeepSeek-V4-Pro (Preview) on benchmarks listed below despite its far smaller activated parameter count, and is broadly competitive with the strongest proprietary models available. 1. For the Code Agent tasks among the public benchmarks above, DeepSeek-V4-Flash-0731 is evaluated with the minimal mode of DeepSeek Harness (to be released) as the agent framework, using the max reasoning effort…

Open weights mit 304.2B parameters 1,048,576 tokens transformers

Model · Text generation

DeepSeek-V4-Flash

DeepSeek

We present a preview version of DeepSeek-V4 series, including two strong Mixture-of-Experts (MoE) language models — DeepSeek-V4-Pro with 1.6T parameters (49B activated) and DeepSeek-V4-Flash with 284B parameters (13B activated) — both supporting a context length of one million tokens. DeepSeek-V4 series incorporate several key upgrades in architecture and optimization: 1. Hybrid Attention Architecture: We design a hybrid attention mechanism combining Compressed Sparse Attention (CSA) and Heavily Compressed Attention (HCA) to dramatically improve long-context efficiency. In the 1M-token context setting, DeepSeek-V4-Pro requires only 27% of single-token inference FLOPs and 10% of KV cache…

Open weights mit 290.9B parameters 1,048,576 tokens transformers