DeepSeek R1 is the model that put DeepSeek on the global AI map. Released in January 2025 under an MIT license, it demonstrated that frontier-level reasoning capability could be achieved through reinforcement learning alone — without the massive supervised fine-tuning datasets that Western labs relied on. It matched OpenAI's o1 on major reasoning benchmarks while being openly available for download and self-hosting.
R1 is a reasoning model — a class of LLM trained to think through problems step by step before answering, rather than generating responses directly. Like OpenAI's o1, R1 uses chain-of-thought reasoning traces that are visible in the response, showing its work on math proofs, coding problems, and logical puzzles.
The key architectural facts:
Before R1, DeepSeek released R1-Zero — a model trained purely through reinforcement learning with no human-labeled reasoning demonstrations. R1-Zero spontaneously developed reasoning behaviors: self-verification, backtracking, and reflection. It was the first public demonstration that RL alone could produce sophisticated reasoning.
R1 built on R1-Zero by adding a cold-start supervised fine-tuning phase before RL training, fixing R1-Zero's tendency toward repetition and language mixing while preserving its reasoning gains.
| Benchmark | DeepSeek R1 | OpenAI o1 | GPT-4o |
|---|---|---|---|
| AIME 2024 (math) | 79.8% | 79.2% | 9.3% |
| MATH-500 | 97.3% | 96.4% | 76.6% |
| Codeforces (coding) | 2029 rating | 1891 rating | 759 rating |
| GPQA Diamond | 71.5% | 75.7% | 53.6% |
| SWE-bench Verified | 49.2% | 48.9% | 38.8% |
R1 matched or exceeded o1 on math and coding benchmarks while being open-source and available to run locally — a combination that had not existed before.
DeepSeek also released smaller distilled variants of R1 — dense models (not MoE) ranging from 1.5B to 70B parameters, based on Qwen and Llama architectures. These distilled models inherit R1's reasoning capabilities at a fraction of the compute cost:
| Model | Base | VRAM needed |
|---|---|---|
| DeepSeek-R1-Distill-Qwen-1.5B | Qwen2.5 | 2GB |
| DeepSeek-R1-Distill-Qwen-7B | Qwen2.5 | 6GB |
| DeepSeek-R1-Distill-Qwen-14B | Qwen2.5 | 10GB |
| DeepSeek-R1-Distill-Qwen-32B | Qwen2.5 | 22GB |
| DeepSeek-R1-Distill-Llama-8B | Llama 3 | 6GB |
| DeepSeek-R1-Distill-Llama-70B | Llama 3 | 40GB |
ollama pull deepseek-r1 # 7B distilled (default) ollama pull deepseek-r1:14b # 14B distilled ollama pull deepseek-r1:32b # 32B distilled ollama run deepseek-r1
R1 is a reasoning model — optimized for deep thinking on hard problems. DeepSeek V4 Flash is a general-purpose model with optional thinking mode. For most production workloads V4 Flash is the better choice. R1 (or its distilled variants) is better when you need maximum reasoning depth on math, logic, or complex coding problems and want to run it locally.
The R1 API sends data to DeepSeek's China-based servers. For privacy-sensitive workloads, run the distilled models locally via Ollama or vLLM.
Tokoscope works with the DeepSeek API and any OpenAI-compatible local endpoint. Free to start.
Get started free →