Loading...
Budget-friendly 685B MoE model, high-volume capable with 2M+ daily requests
[interactive architecture โ]DeepSeek is a Chinese AI lab founded in 2023 in Hangzhou by Liang Wenfeng. It is funded solely by High-Flyer Quant, the quantitative hedge fund Liang co-founded in 2015, and grew out of GPU capacity originally stockpiled for trading research. The lab publishes frontier open-weights models under permissive licenses.
more about DeepSeek โ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.
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.