← Back to 3D modelInclusionAI · Ling 3.0

Model anatomy

Ling 3.0 tiny

A 7.9B hybrid-linear MoE model that alternates three KDA layers with one MLA layer, while activating about 1.3B parameters per token.

Checkpoint7.9Btotal parameters
Token-active1.3B16.5% of checkpoint
Decoder24transformer blocks
Context128Kmaximum sequence

Token path

From token id to next-token logits

Follow the structural path first, then inspect one decoder block at full resolution.

01 · Input spaceToken embedding157,184 vocabulary × 1,536 hidden241M matrix elements
02 · Repeated compute24 decoder blocksKDA + MLA23 MoE · 1 dense FFN
03 · Output spaceHidden state → logits1,536d hidden → 157,184 token scoressampling chooses the next token

Embedding matrix size is reported as shape × elements only. This view does not assume whether the output head is tied to the input embedding unless the manifest explicitly records it.

Decoder microscope

Layer 2

Select any layer to see the checkpoint-backed attention, feed-forward and residual anatomy.

AttentionKDA
Heads
16
Head dim
128
Short conv
kernel 4
Decay gate
safe gate · lower bound -5

Recurrent state: token history is compressed into a fixed-size state update rather than a full KV history for this layer.

Feed-forwardMixture of Experts
Routed experts
128
Active routed
8 / token
Shared experts
1
Expert width
512
Routing
learned

sigmoid scores; expert bias affects selection only; 8 groups → keep 4 → top-8 routed experts

Residual topologyStandard stream
Topology
standard

The residual path carries the block output forward; this panel reports only topology represented by the manifest.

Parameter & memory surface

What is stored, and what participates per token?

Source-backed parameter pools and active-path quantities; stored inventory is not assumed to be read in full for every token.

Stored weight inventory7.9B

The full checkpoint parameter set exists in storage / device memory planning; this does not imply every stored weight is read for one token.

Active path1.3B

Parameters reported as active per token by the model manifest.

Selected layer stateKDA

Recurrent state: token history is compressed into a fixed-size state update rather than a full KV history for this layer.

Expert fan-out8 + 1

Active routed + shared experts for the selected layer.

Evidence for layer 2

Trace every structural claim back to source

4 sources currently support this layer view.