ai-sage · text · mixture of experts

GigaChat3-10B-A1.8B-base

ai-sage/GigaChat3-10B-A1.8B-base

GigaChat3-10B-A1.8B-base at Q4_K_M is exactly 6,474,702,976 bytes (6.03 GiB / 6.47 GB) — an effective 4.512 bits per weight, not the nominal 4. Its KV cache at 32K is 0.91 GiB.

From the file· summed from 1 file(s)From the file· KV per layer
Parameters
11.5B
total, not active
Architecture
deepseek2
26 layers
Context
262,144
native (config.json)
License
mit

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
Q4_K_M6.03 GiB6,474,702,9764.512ai-sage
Q4_K_M6.03 GiB6,474,702,9764.512SergeyLizin
Q6_K8.18 GiB8,782,243,4566.120ai-sage
Q6_K8.18 GiB8,782,243,4566.120SergeyLizin
Q8_010.57 GiB11,353,174,1447.912SergeyLizin
Q8_010.57 GiB11,353,174,1447.912ai-sage
BF1619.89 GiB21,356,281,98414.883ai-sage
BF1619.89 GiB21,356,281,98414.883SergeyLizin

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.11 GiB2.44 GiB21.33×26 / 0 / 0
8,1920.23 GiB4.88 GiB21.33×26 / 0 / 0
16,3840.46 GiB9.75 GiB21.33×26 / 0 / 0
32,7680.91 GiB19.50 GiB21.33×26 / 0 / 0
65,5361.83 GiB39.00 GiB21.33×26 / 0 / 0
131,0723.66 GiB78.00 GiB21.33×26 / 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 6.01 GiB. The real file is 6.03 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
26
Attention heads
32
KV heads
32
Head dim
192
Hidden size
1536
Vocab
128,256
Sliding window
none
SWA period
MLA
yes
Experts
64
Experts per token
4
use_sliding_window

Questions people ask

How much VRAM does GigaChat3-10B-A1.8B-base need?
Q4_K_M is exactly 6,474,702,976 bytes (6.03 GiB) in weights. Add the KV cache, which depends on your context length, plus roughly half a gigabyte of runtime overhead.
How large is GigaChat3-10B-A1.8B-base's KV cache?
0.91 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 GigaChat3-10B-A1.8B-base a mixture-of-experts model?
Yes — 64 experts, 4 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 GigaChat3-10B-A1.8B-base 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.