tngtech · text · mixture of experts

DeepSeek-TNG-R1T2-Chimera

tngtech/DeepSeek-TNG-R1T2-Chimera

DeepSeek-TNG-R1T2-Chimera at Q4_K_M is exactly 404,941,898,816 bytes (377.13 GiB / 404.94 GB) — an effective 4.732 bits per weight, not the nominal 4. Its KV cache at 32K is 2.14 GiB.

From the file· summed from 9 file(s)From the file· KV per layer
Parameters
685B
total, not active
Architecture
deepseek2
61 layers
Context
163,840
native (config.json)
License
mit

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
UD-TQ1_0150.08 GiB161,142,536,2241.883unsloth
UD-IQ1_S4 shards172.39 GiB185,100,401,0882.163unsloth
UD-IQ1_M5 shards186.69 GiB200,454,824,5442.343unsloth
UD-IQ2_XXS5 shards201.37 GiB216,214,555,2642.527unsloth
UD-IQ2_M5 shards212.30 GiB227,958,606,4002.664unsloth
Q2_K5 shards227.97 GiB244,779,916,8962.861unsloth
Q2_K_L5 shards228.17 GiB244,997,107,2962.863unsloth
UD-IQ3_XXS6 shards254.17 GiB272,915,620,5763.189unsloth
Q3_K_S6 shards269.83 GiB289,730,221,2163.386unsloth
Q3_K_M7 shards297.88 GiB319,846,028,6403.738unsloth
IQ4_XS8 shards333.14 GiB357,701,331,8404.180unsloth
IQ4_NL8 shards352.58 GiB378,577,650,6244.424unsloth
Q4_08 shards353.48 GiB379,545,617,3124.436unsloth
Q4_K_S8 shards354.38 GiB380,513,584,0324.447unsloth
Q4_K_M9 shards377.13 GiB404,941,898,8164.732unsloth
Q4_19 shards391.52 GiB420,388,205,6324.913unsloth
Q5_K_S10 shards430.46 GiB462,198,760,5765.402unsloth
Q5_K_M10 shards443.10 GiB475,780,342,9445.560unsloth
Q6_K12 shards513.20 GiB551,046,190,0806.440unsloth
Q8_015 shards664.30 GiB713,286,520,2888.336unsloth
BF1630 shards1250.09 GiB1,342,273,054,04815.687unsloth

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.27 GiB19.06 GiB71.11×61 / 0 / 0
8,1920.54 GiB38.13 GiB71.11×61 / 0 / 0
16,3841.07 GiB76.25 GiB71.11×61 / 0 / 0
32,7682.14 GiB152.50 GiB71.11×61 / 0 / 0
65,5364.29 GiB305.00 GiB71.11×61 / 0 / 0
131,0728.58 GiB610.00 GiB71.11×61 / 0 / 0

This model uses multi-head latent attention. No V cache is allocated at all, and the K cache stores a 512-wide latent plus 64 rope dimensions — so reading num_key_value_heads from config.json and multiplying, as every calculator does, overstates the cache by well over an order of magnitude.

Compare with

same modality, comparable size

Will it run on your card?

full quant x context sweep

Why other calculators give a different number

A parameters × bits ÷ 8 estimate puts Q4_K_M at roughly 358.60 GiB. The real file is 377.13 GiB, because a quantization is a mixture and some tensors are always kept at higher precision. The larger discrepancy is the cache: this model allocates no value cache at all, so any formula reading num_key_value_heads overstates it by more than an order of magnitude.

Architecture

from config.json
Layers
61
Attention heads
128
KV heads
128
Head dim
192
Hidden size
7168
Vocab
129,280
Sliding window
none
SWA period
MLA
yes
Experts
256
Experts per token
8
use_sliding_window

Questions people ask

How much VRAM does DeepSeek-TNG-R1T2-Chimera need?
Q4_K_M is exactly 404,941,898,816 bytes (377.13 GiB) in weights. Add the KV cache, which depends on your context length, plus roughly half a gigabyte of runtime overhead.
How large is DeepSeek-TNG-R1T2-Chimera's KV cache?
2.14 GiB at 32K context with an f16 cache, computed per layer. Quantizing the cache to q8_0 roughly halves it, which is often the difference between a context length fitting and not.
Is DeepSeek-TNG-R1T2-Chimera a mixture-of-experts model?
Yes — 256 experts, 8 routed per token. Every expert must be resident, but only the routed ones are read per token, which is why its memory requirement and its speed behave very differently.
Which quantization of DeepSeek-TNG-R1T2-Chimera should I use?
Q4_K_M is the usual default. Pick the largest quantization that fits your card at the context you actually need — the table above gives exact sizes for every one published.