AIAny

DeepSeek-V3 Technical Report

Open-weight Mixture-of-Experts LLM with 671B total parameters but 37B activated per token, trained on 14.8T tokens for 2.788M H800 GPU-hours. Matches leading closed models at a fraction of typical training cost via FP8 and architectural tricks.

Introduction

The headline number is the one that breaks intuition: a 671B-parameter model trained for roughly $5.6M in compute. DeepSeek-V3 makes the case that the next frontier isn't more GPUs but better systems engineering — co-designing the model, the training algorithm, and the FP8 numerical stack so a Mixture-of-Experts model activates just 37B of its 671B parameters per token without the load-balancing headaches that usually wreck sparse training.

Key Findings
  • An auxiliary-loss-free load-balancing scheme replaces the usual balancing loss, so experts stay evenly used without the accuracy tax that auxiliary losses impose.
  • Multi-head Latent Attention (MLA) compresses the KV cache, cutting the inference memory that normally makes long-context serving expensive.
  • A multi-token prediction objective densifies the training signal and doubles as speculative decoding at inference time.
  • Native FP8 mixed-precision training across 2.788M H800 GPU-hours, with reported stability and zero loss-spike rollbacks across the entire 14.8T-token run.
How It Holds Up

On knowledge, math, and code benchmarks it lands ahead of other open-weight models and within reach of GPT-4o and Claude-3.5-Sonnet — a gap that, before this paper, most assumed required a closed lab's budget. The recipe, not just the weights, is the contribution.

Who It's For

Great fit if you're a researcher or infra team studying efficient large-scale training, or want strong open weights you can self-host and fine-tune. Look elsewhere if you need a turnkey hosted API with guarantees, or lack the multi-node H800-class hardware to actually run a 671B MoE — the open weights don't make the serving footprint small.

Information

  • Websitearxiv.org
  • OrganizationsDeepSeek-AI
  • AuthorsDeepSeek-AI, Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang
  • Published date2024/12/27

More Items

Describes DeepSeek-V4.1-Flash, a 552B-parameter multimodal Mixture-of-Experts LLM that supports up to 1M-token contexts and reduces KV cache footprint using Compressed Sparse Attention 2, FP4 KV caching, and SWA Bounded Replay to lower HBM/SSD and prefill costs.

Estimates a model's probability of correctness by leveraging its past graded episodes: XConf recalls similar past cases and prompts the model to reflect and restate confidence, improving calibration and discrimination across reasoning, coding, multimodal QA, and agent tasks at much lower generation cost.

Defines recursive self-improvement (RSI) with an evaluation metric (Headroom-Closed Index) and a five-level autonomy roadmap—from executing human-specified improvements to recursively improving improvement mechanisms—while analyzing scenarios, verification challenges, and governance risks.