nicoboss · text · mixture of experts

DeepSeek-V2-Lite-Chat-Uncensored-Unbiased-Reasoner

nicoboss/DeepSeek-V2-Lite-Chat-Uncensored-Unbiased-Reasoner

DeepSeek-V2-Lite-Chat-Uncensored-Unbiased-Reasoner at Q4_K_M is exactly 10,361,112,672 bytes (9.65 GiB / 10.36 GB) — an effective 5.281 bits per weight, not the nominal 4. Its KV cache at 32K is 0.95 GiB.

From the file· summed from 1 file(s)From the file· KV per layer
Parameters
15.7B
total, not active
Architecture
deepseek2
27 layers
Context
4,096
native (config.json)
License
llama3.3

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
Q2_K5.99 GiB6,431,408,2883.278mradermacher
Q3_K_S6.97 GiB7,485,233,2163.815mradermacher
Q3_K_M7.57 GiB8,124,176,4484.141mradermacher
Q3_K_L7.88 GiB8,456,968,2564.310mradermacher
IQ4_XS8.05 GiB8,640,999,3924.404mradermacher
Q4_K_S8.88 GiB9,530,304,6084.857mradermacher
Q4_K_M9.65 GiB10,361,112,6725.281mradermacher
Q5_K_S10.37 GiB11,137,370,7205.676mradermacher
Q5_K_M11.03 GiB11,845,626,4646.037mradermacher
Q6_K13.10 GiB14,065,719,9367.169mradermacher
Q8_015.55 GiB16,692,029,5368.507ijohn07
Q8_015.55 GiB16,692,030,0168.507mradermacher

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.12 GiB1.05 GiB8.89×27 / 0 / 0
8,1920.24 GiB2.11 GiB8.89×27 / 0 / 0
16,3840.47 GiB4.22 GiB8.89×27 / 0 / 0
32,7680.95 GiB8.44 GiB8.89×27 / 0 / 0
65,5361.90 GiB16.88 GiB8.89×27 / 0 / 0
131,0723.80 GiB33.75 GiB8.89×27 / 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 8.22 GiB. The real file is 9.65 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
27
Attention heads
16
KV heads
16
Head dim
192
Hidden size
2048
Vocab
100,002
Sliding window
none
SWA period
MLA
yes
Experts
64
Experts per token
6
use_sliding_window

Questions people ask

How much VRAM does DeepSeek-V2-Lite-Chat-Uncensored-Unbiased-Reasoner need?
Q4_K_M is exactly 10,361,112,672 bytes (9.65 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-V2-Lite-Chat-Uncensored-Unbiased-Reasoner's KV cache?
0.95 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-V2-Lite-Chat-Uncensored-Unbiased-Reasoner a mixture-of-experts model?
Yes — 64 experts, 6 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-V2-Lite-Chat-Uncensored-Unbiased-Reasoner 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.