Loading...
Budget-friendly 685B MoE model, high-volume capable with 2M+ daily requests
Take DeepSeek V3 (0324) apart, layer by layer. The 3D teardown below shows its 61 transformer layers (3 dense + 58 MoE), MLA attention, and expert routing, with values from the public model config.
DeepSeek is a Chinese AI lab founded in July 2023 in Hangzhou by Liang Wenfeng. It was funded solely by High-Flyer, the quantitative hedge fund Liang co-founded, until a $7 billion Series A in May 2026, and grew out of GPU capacity originally stockpiled for trading research. The lab releases its V, R and V4 model lines as open weights under the MIT licence, with the V4 Pro and Flash tiers succeeded by V4.1 Flash in September 2026.
more about DeepSeek โEach input token id is mapped to a 7168-dim vector drawn from a 129,280-token vocabulary.
Every layer runs the same pre-norm block: RMSNorm, attention, a residual add, RMSNorm again, then the FFN with one more residual add. The first 3 layers use a dense FFN so low-level features stabilize early; the remaining 58 use the MoE FFN in the exploded view.
Instead of caching 128 full KV heads, MLA compresses keys and values into a shared 512-dim latent vector, keeping the KV cache small enough for a 128K+ context. RoPE adds position information.
A learned router scores all 256 routed experts for every token, then sends it to just 8 of them plus 1 always-on shared expert. The model stores 671B parameters yet spends only 37B per token.
After a final RMSNorm, the hidden state is projected back to 129,280 vocabulary logits to predict the next token.
[*] DeepSeek R1 (January 2025) is a reinforcement-learning fine-tune of this base model. Its launch was called "AI's Sputnik moment" and knocked roughly $600B off Nvidia's market cap in one session, a record single-day loss for a US company.
[*] V3 showed a frontier-class model could be trained for about $5.6M on export-restricted H800 chips, far below assumed frontier training costs, and reset expectations across the industry.
[*] The 0324 revision (March 2025) moved the weights to the MIT license.