Understanding DeepSeek R1
DeepSeek-R1 is an open-source language design constructed on DeepSeek-V3-Base that's been making waves in the AI neighborhood. Not just does it match-or even surpass-OpenAI's o1 design in many benchmarks, but it also comes with fully MIT-licensed weights. This marks it as the very first non-OpenAI/Google design to provide strong reasoning abilities in an open and available way.
What makes DeepSeek-R1 especially interesting is its openness. Unlike the less-open approaches from some industry leaders, DeepSeek has published a detailed training method in their paper.
The design is also remarkably affordable, with input tokens costing simply $0.14-0.55 per million (vs o1's $15) and output tokens at $2.19 per million (vs o1's $60).
Until ~ GPT-4, the typical wisdom was that much better designs needed more information and calculate. While that's still valid, designs like o1 and R1 show an alternative: inference-time scaling through thinking.
The Essentials
The DeepSeek-R1 paper presented multiple designs, however main among them were R1 and R1-Zero. Following these are a series of distilled designs that, while fascinating, I won't talk about here.
DeepSeek-R1 uses 2 significant concepts:
1. A multi-stage pipeline where a small set of cold-start data kickstarts the design, followed by massive RL.
2. Group Relative Policy Optimization (GRPO), a support knowing method that depends on comparing several model outputs per timely to avoid the need for a different critic.
R1 and R1-Zero are both thinking models. This basically implies they do Chain-of-Thought before answering. For the R1 series of designs, this takes type as believing within a tag, before responding to with a last summary.
R1-Zero vs R1
R1-Zero uses Reinforcement Learning (RL) straight to DeepSeek-V3-Base without any supervised fine-tuning (SFT). RL is utilized to optimize the design's policy to optimize reward.
R1-Zero attains excellent precision but sometimes produces complicated outputs, such as blending numerous languages in a single reaction. R1 repairs that by incorporating minimal monitored fine-tuning and several RL passes, which improves both accuracy and readability.
It is interesting how some languages might reveal certain ideas better, which leads the design to choose the most expressive language for the job.
Training Pipeline
The training pipeline that DeepSeek released in the R1 paper is tremendously intriguing. It showcases how they produced such strong thinking models, and what you can get out of each phase. This consists of the issues that the resulting models from each stage have, and how they resolved it in the next phase.
It's interesting that their training pipeline differs from the typical:
The typical training strategy: Pretraining on big dataset (train to forecast next word) to get the base design → monitored fine-tuning → preference tuning through RLHF
R1-Zero: Pretrained → RL
R1: Pretrained → Multistage training pipeline with several SFT and RL phases
Cold-Start Fine-Tuning: Fine-tune DeepSeek-V3-Base on a few thousand Chain-of-Thought (CoT) samples to guarantee the RL procedure has a decent beginning point. This provides a great model to begin RL.
First RL Stage: Apply GRPO with rule-based benefits to improve reasoning correctness and format (such as forcing chain-of-thought into believing tags). When they were near merging in the RL process, they transferred to the next step. The outcome of this action is a strong reasoning design but with weak general capabilities, e.g., poor format and language blending.
Rejection Sampling + basic data: Create brand-new SFT information through rejection tasting on the RL checkpoint (from step 2), integrated with monitored data from the DeepSeek-V3-Base design. They gathered around 600k high-quality thinking samples.
Second Fine-Tuning: Fine-tune DeepSeek-V3-Base again on 800k overall samples (600k thinking + 200k basic jobs) for wider abilities. This action resulted in a strong reasoning model with general capabilities.
Second RL Stage: Add more reward signals (helpfulness, harmlessness) to improve the final model, in addition to the reasoning rewards. The result is DeepSeek-R1.
They also did design distillation for numerous Qwen and Llama designs on the reasoning traces to get distilled-R1 designs.
Model distillation is a strategy where you utilize an instructor model to improve a trainee design by producing training data for the trainee model.
The teacher is normally a larger model than the trainee.
Group Relative Policy Optimization (GRPO)
The fundamental concept behind using support knowing for LLMs is to fine-tune the design's policy so that it naturally produces more precise and useful answers.
They used a reward system that examines not just for accuracy however likewise for correct formatting and language consistency, so the model slowly discovers to prefer reactions that satisfy these quality requirements.
In this paper, they encourage the R1 design to create chain-of-thought reasoning through RL training with GRPO.
Instead of adding a separate module at inference time, the training procedure itself nudges the model to produce detailed, detailed outputs-making the chain-of-thought an emergent behavior of the enhanced policy.
What makes their technique especially intriguing is its on straightforward, rule-based reward functions.
Instead of depending upon pricey external designs or human-graded examples as in traditional RLHF, the RL utilized for R1 uses basic requirements: it might give a greater reward if the response is right, yogaasanas.science if it follows the expected/ formatting, oke.zone and if the language of the response matches that of the prompt.
Not depending on a benefit model likewise indicates you do not need to hang around and effort training it, and it doesn't take memory and calculate far from your main design.
GRPO was introduced in the DeepSeekMath paper. Here's how GRPO works:
1. For each input prompt, the design generates various responses.
2. Each action gets a scalar benefit based on factors like accuracy, format, and language consistency.
3. Rewards are adjusted relative to the group's performance, essentially measuring just how much better each reaction is compared to the others.
4. The model updates its method slightly to prefer reactions with higher relative benefits. It only makes slight adjustments-using techniques like clipping and a KL penalty-to ensure the policy does not wander off too far from its initial habits.
A cool aspect of GRPO is its versatility. You can utilize easy rule-based reward functions-for instance, granting a bonus offer when the model properly uses the syntax-to guide the training.
While DeepSeek utilized GRPO, you might use alternative approaches instead (PPO or PRIME).
For those aiming to dive deeper, Will Brown has actually composed rather a great application of training an LLM with RL utilizing GRPO. GRPO has also currently been contributed to the Transformer Reinforcement Learning (TRL) library, which is another excellent resource.
Finally, Yannic Kilcher has an excellent video explaining GRPO by going through the DeepSeekMath paper.
Is RL on LLMs the course to AGI?
As a final note on explaining DeepSeek-R1 and the methods they have actually provided in their paper, I want to highlight a passage from the DeepSeekMath paper, based on a point Yannic Kilcher made in his video.
These findings indicate that RL boosts the design's overall performance by rendering the output circulation more robust, simply put, it seems that the improvement is credited to boosting the proper action from TopK rather than the improvement of fundamental abilities.
Simply put, RL fine-tuning tends to shape the output circulation so that the highest-probability outputs are more most likely to be proper, despite the fact that the general ability (as measured by the diversity of correct answers) is mainly present in the pretrained model.
This suggests that reinforcement learning on LLMs is more about refining and "forming" the existing distribution of actions rather than endowing the model with completely new abilities.
Consequently, while RL methods such as PPO and GRPO can produce substantial performance gains, there seems a fundamental ceiling figured out by the underlying design's pretrained knowledge.
It is uncertain to me how far RL will take us. Perhaps it will be the stepping stone to the next huge turning point. I'm thrilled to see how it unfolds!
Running DeepSeek-R1
I have actually used DeepSeek-R1 through the main chat interface for various problems, which it seems to resolve well enough. The additional search performance makes it even better to use.
Interestingly, o3-mini(-high) was launched as I was writing this post. From my preliminary screening, R1 seems more powerful at math than o3-mini.
I also rented a single H100 through Lambda Labs for $2/h (26 CPU cores, 214.7 GB RAM, 1.1 TB SSD) to run some experiments.
The main goal was to see how the model would carry out when deployed on a single H100 GPU-not to thoroughly check the model's abilities.
671B through Llama.cpp
DeepSeek-R1 1.58-bit (UD-IQ1_S) quantized design by Unsloth, with a 4-bit quantized KV-cache and partial GPU offloading (29 layers working on the GPU), running by means of llama.cpp:
29 layers seemed to be the sweet area offered this configuration.
Performance:
A r/localllama user explained that they had the ability to get over 2 tok/sec with DeepSeek R1 671B, without using their GPU on their regional gaming setup.
Digital Spaceport wrote a full guide on how to run Deepseek R1 671b completely locally on a $2000 EPYC server, on which you can get ~ 4.25 to 3.5 tokens per second.
As you can see, the tokens/s isn't rather manageable for any major forum.batman.gainedge.org work, but it's fun to run these big models on available hardware.
What matters most to me is a mix of usefulness and time-to-usefulness in these designs. Since thinking designs need to think before answering, their time-to-usefulness is normally higher than other designs, but their effectiveness is likewise normally greater.
We require to both take full advantage of usefulness and lessen time-to-usefulness.
70B via Ollama
70.6 b params, 4-bit KM quantized DeepSeek-R1 running through Ollama:
GPU utilization soars here, as anticipated when compared to the mainly CPU-powered run of 671B that I showcased above.
Resources
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning
[2402.03300] DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models
DeepSeek R1 - Notion (Building a completely regional "deep researcher" with DeepSeek-R1 - YouTube).
DeepSeek R1's dish to duplicate o1 and wiki.dulovic.tech the future of reasoning LMs.
The Illustrated DeepSeek-R1 - by Jay Alammar.
Explainer: What's R1 & Everything Else? - Tim Kellogg.
DeepSeek R1 Explained to your grandma - YouTube
DeepSeek
- Try R1 at chat.deepseek.com.
GitHub - deepseek-ai/DeepSeek-R 1.
deepseek-ai/Janus-Pro -7 B · Hugging Face (January 2025): Janus-Pro is an unique autoregressive framework that combines multimodal understanding and generation. It can both comprehend and generate images.
DeepSeek-R1: Incentivizing Reasoning Capability in Large Language Models via Reinforcement Learning (January 2025) This paper presents DeepSeek-R1, asteroidsathome.net an open-source thinking design that rivals the efficiency of OpenAI's o1. It provides a detailed methodology for training such models using massive reinforcement knowing strategies.
DeepSeek-V3 Technical Report (December 2024) This report goes over the implementation of an FP8 combined precision training framework verified on an incredibly large-scale model, attaining both accelerated training and reduced GPU memory use.
DeepSeek LLM: Scaling Open-Source Language Models with Longtermism (January 2024) This paper dives into scaling laws and presents findings that help with the scaling of large-scale designs in open-source setups. It introduces the DeepSeek LLM job, committed to advancing open-source language designs with a long-lasting point of view.
DeepSeek-Coder: When the Large Language Model Meets Programming-The Rise of Code Intelligence (January 2024) This research study presents the DeepSeek-Coder series, a variety of open-source code models trained from scratch on 2 trillion tokens. The models are pre-trained on a high-quality project-level code corpus and employ a fill-in-the-blank job to improve code generation and smfsimple.com infilling.
DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language Model (May 2024) This paper presents DeepSeek-V2, a Mixture-of-Experts (MoE) language model identified by cost-effective training and engel-und-waisen.de efficient inference.
DeepSeek-Coder-V2: Breaking the Barrier of Closed-Source Models in Code Intelligence (June 2024) This research study presents DeepSeek-Coder-V2, an open-source Mixture-of-Experts (MoE) code language design that attains efficiency equivalent to GPT-4 Turbo in code-specific tasks.
Interesting occasions
- Hong Kong University duplicates R1 outcomes (Jan 25, '25).
- Huggingface reveals huggingface/open-r 1: Fully open reproduction of DeepSeek-R1 to replicate R1, fully open source (Jan 25, '25).
- OpenAI researcher validates the DeepSeek team independently found and utilized some core ideas the OpenAI team utilized en route to o1
Liked this post? Join the newsletter.