← Back to articles Blog

DeepSeek R1: The Open-Source Reasoning Model That Shook the AI Industry

Emmanuel Ekunsumi · 6 min read · 2026-07-22

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.

What DeepSeek R1 actually is

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:

The R1-Zero breakthrough

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.

Benchmarks

BenchmarkDeepSeek R1OpenAI o1GPT-4o
AIME 2024 (math)79.8%79.2%9.3%
MATH-50097.3%96.4%76.6%
Codeforces (coding)2029 rating1891 rating759 rating
GPQA Diamond71.5%75.7%53.6%
SWE-bench Verified49.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.

The distilled models

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:

ModelBaseVRAM needed
DeepSeek-R1-Distill-Qwen-1.5BQwen2.52GB
DeepSeek-R1-Distill-Qwen-7BQwen2.56GB
DeepSeek-R1-Distill-Qwen-14BQwen2.510GB
DeepSeek-R1-Distill-Qwen-32BQwen2.522GB
DeepSeek-R1-Distill-Llama-8BLlama 36GB
DeepSeek-R1-Distill-Llama-70BLlama 340GB

Running R1 locally

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 vs DeepSeek V4

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.

Data privacy note

The R1 API sends data to DeepSeek's China-based servers. For privacy-sensitive workloads, run the distilled models locally via Ollama or vLLM.

Track DeepSeek R1 inference costs

Tokoscope works with the DeepSeek API and any OpenAI-compatible local endpoint. Free to start.

Get started free →