Overview
DeepSeek-V3-0324 is an open-weight large language model released by DeepSeek-AI in March 2025.
- License: MIT
- Context length: 128K tokens
- Architecture: 671B Mixture-of-Experts, ~37B active per token
- Minimum hardware: ~700 GB VRAM at FP8; ~130 GB with 1.58-bit quantization
- Strengths: coding, reasoning, function calling, long-context chat
Highlights
- MMLU-Pro — improves from 75.9 to 81.2 (+5.3) over the prior DeepSeek-V3.
- GPQA — rises from 59.1 to 68.4 (+9.3).
- AIME — jumps from 39.6 to 59.4 (+19.8).
- LiveCodeBench — climbs from 39.2 to 49.2 (+10.0), with better front-end coding and function calling.
What it's good at
Compared with the first DeepSeek-V3 release, this checkpoint posts higher scores on knowledge and reasoning benchmarks, with MMLU-Pro moving from 75.9 to 81.2 and GPQA from 59.1 to 68.4. DeepSeek also reports better front-end and general code generation, steadier multi-turn rewriting, and more dependable function calling, which makes it a practical backbone for coding assistants and tool-using agents. Its 128K token context window handles long documents and large codebases in a single request. It is a general instruction and chat model, not a dedicated chain-of-thought model like DeepSeek-R1.
Running locally
The native weights ship in FP8 and occupy around 700 GB, so full-precision inference needs a multi-GPU server with comparable VRAM. Community quantizations narrow this gap: 4-bit GGUF builds land near 400 GB, and aggressive 1.58-bit dynamic quants from Unsloth drop to roughly 130 GB, runnable across high-RAM workstations or smaller clusters at lower throughput. Common serving paths include vLLM and SGLang for GPU deployment and llama.cpp for quantized CPU or mixed setups.
License
The repository and the model weights are released under the MIT License. That permits commercial use, modification, and redistribution with minimal conditions, so teams can self-host or fine-tune the model without separate licensing terms.

