1 Understanding DeepSeek R1
joelmillsaps9 edited this page 2 weeks ago


DeepSeek-R1 is an open-source language model 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 criteria, but it likewise comes with completely MIT-licensed weights. This marks it as the first non-OpenAI/Google model to deliver strong reasoning capabilities in an open and available way.

What makes DeepSeek-R1 especially exciting is its openness. Unlike the less-open methods from some industry leaders, DeepSeek has actually published a detailed training method in their paper. The model is also incredibly cost-effective, with input tokens costing just $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 common knowledge was that much better designs needed more data and compute. While that's still valid, designs like o1 and R1 demonstrate an alternative: inference-time scaling through reasoning.

The Essentials

The DeepSeek-R1 paper presented multiple designs, pipewiki.org however main amongst them were R1 and R1-Zero. Following these are a series of distilled designs that, while interesting, I will not discuss here.

DeepSeek-R1 utilizes 2 major concepts:

1. A multi-stage pipeline where a little set of cold-start data kickstarts the design, followed by large-scale RL. 2. Group Relative Policy Optimization (GRPO), a support learning approach that depends on comparing numerous design outputs per prompt to avoid the requirement for a separate critic.

R1 and R1-Zero are both reasoning models. This basically implies they do Chain-of-Thought before responding to. For the R1 series of models, this takes kind as believing within a tag, before answering with a last summary.

R1-Zero vs R1

R1-Zero uses Reinforcement Learning (RL) straight to DeepSeek-V3-Base with no supervised fine-tuning (SFT). RL is used to optimize the design's policy to optimize benefit. R1-Zero attains outstanding accuracy but sometimes produces complicated outputs, akropolistravel.com such as blending numerous languages in a single action. R1 repairs that by incorporating limited monitored fine-tuning and several RL passes, which improves both accuracy and readability.

It is interesting how some languages might express certain ideas much better, which leads the design to choose the most meaningful language for online-learning-initiative.org the task.

Training Pipeline

The training pipeline that DeepSeek released in the R1 paper is profoundly fascinating. It showcases how they produced such strong reasoning designs, and what you can anticipate from each phase. This includes the issues that the resulting models from each stage have, and how they solved it in the next stage.

It's interesting that their training pipeline differs from the typical:

The normal training strategy: wavedream.wiki Pretraining on large dataset (train to predict next word) to get the base model → supervised fine-tuningpreference tuning via RLHF R1-Zero: Pretrained → RL R1: Pretrained → Multistage training pipeline with numerous SFT and RL phases

Cold-Start Fine-Tuning: Fine-tune DeepSeek-V3-Base on a couple of thousand Chain-of-Thought (CoT) samples to make sure the RL process has a decent beginning point. This gives an excellent model to start RL. First RL Stage: Apply GRPO with rule-based rewards to improve thinking correctness and formatting (such as forcing chain-of-thought into believing tags). When they were near convergence in the RL procedure, they relocated to the next step. The result of this action is a strong reasoning design however with weak general capabilities, e.g., bad format and language blending. Rejection Sampling + general information: Create brand-new SFT information through rejection sampling on the RL checkpoint (from step 2), integrated with supervised information from the DeepSeek-V3-Base model. They gathered around 600k top quality thinking samples. Second Fine-Tuning: Fine-tune DeepSeek-V3-Base again on 800k total samples (600k thinking + 200k general tasks) for more comprehensive abilities. This step led to a strong thinking design with basic capabilities. Second RL Stage: Add more reward signals (helpfulness, harmlessness) to fine-tune the final design, in addition to the reasoning rewards. The outcome is DeepSeek-R1. They likewise did model distillation for a number of Qwen and Llama designs on the thinking traces to get distilled-R1 designs.

Model distillation is a technique where you use a teacher model to improve a trainee design by generating training data for the trainee design. The teacher is usually a larger model than the trainee.

Group Relative Policy Optimization (GRPO)

The fundamental concept behind utilizing reinforcement learning for LLMs is to fine-tune the model's policy so that it naturally produces more accurate and helpful responses. They used a benefit system that checks not just for accuracy but also for appropriate formatting and language consistency, so the model gradually discovers to favor reactions that meet these quality requirements.

In this paper, they encourage the R1 model to produce chain-of-thought reasoning through RL training with GRPO. Instead of adding a separate module at reasoning time, the training procedure itself nudges the model to produce detailed, detailed outputs-making the chain-of-thought an emergent habits of the optimized policy.

What makes their method especially intriguing is its reliance on straightforward, rule-based benefit functions. Instead of depending upon costly external designs or human-graded examples as in traditional RLHF, the RL utilized for R1 uses simple requirements: it may provide a higher benefit if the answer is correct, if it follows the anticipated/ format, and if the language of the answer matches that of the prompt. Not counting on a benefit design also implies you don't have to hang around and effort training it, and it doesn't take memory and compute away from your main model.

GRPO was presented in the DeepSeekMath paper. Here's how GRPO works:

1. For each input timely, the design creates various responses. 2. Each response receives a scalar benefit based on factors like precision, larsaluarna.se format, and language consistency. 3. Rewards are adjusted relative to the group's performance, basically determining how much better each response is compared to the others. 4. The model updates its strategy slightly to favor responses with higher relative benefits. It just makes small adjustments-using techniques like clipping and a KL penalty-to make sure the policy does not stray too far from its initial behavior.

A cool aspect of GRPO is its versatility. You can utilize easy rule-based benefit functions-for instance, awarding a bonus when the design correctly uses the syntax-to guide the training.

While DeepSeek used GRPO, you could utilize alternative techniques rather (PPO or morphomics.science PRIME).

For those aiming to dive much deeper, Will Brown has written rather a good implementation of training an LLM with RL using GRPO. GRPO has likewise currently been contributed to the Transformer Reinforcement Learning (TRL) library, which is another good resource. Finally, Yannic Kilcher has a terrific video explaining GRPO by going through the DeepSeekMath paper.

Is RL on LLMs the path 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 improves the model's general efficiency by rendering the output circulation more robust, in other words, it appears that the enhancement is associated to improving the correct response from TopK instead of the improvement of basic abilities.

Simply put, RL fine-tuning tends to shape the output distribution so that the highest-probability outputs are most likely to be correct, despite the fact that the total capability (as measured by the diversity of correct answers) is mainly present in the pretrained design.

This recommends that support learning on LLMs is more about refining and "shaping" the existing circulation of reactions rather than enhancing the design with totally brand-new abilities. Consequently, wino.org.pl while RL strategies such as PPO and GRPO can produce substantial performance gains, there seems an intrinsic ceiling identified 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 big milestone. I'm thrilled to see how it unfolds!

Running DeepSeek-R1

I have actually used DeepSeek-R1 through the main chat interface for different problems, which it seems to solve all right. The extra search performance makes it even nicer to use.

Interestingly, o3-mini(-high) was launched as I was composing this post. From my preliminary testing, R1 seems more powerful at mathematics than o3-mini.

I likewise rented a single H100 via Lambda Labs for $2/h (26 CPU cores, 214.7 GB RAM, 1.1 TB SSD) to run some experiments. The main objective was to see how the model would carry out when released on a single H100 GPU-not to thoroughly test the design's capabilities.

671B by means of Llama.cpp

DeepSeek-R1 1.58-bit (UD-IQ1_S) quantized model 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 appeared to be the sweet spot given this configuration.

Performance:

A r/localllama user explained that they had the ability to overcome 2 tok/sec with DeepSeek R1 671B, without utilizing their GPU on their regional video gaming setup. Digital Spaceport composed a complete guide on how to run Deepseek R1 671b totally 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 quite manageable for any major work, however it's enjoyable 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 require to believe before addressing, their time-to-usefulness is typically higher than other designs, but their usefulness is likewise generally higher. We require to both take full advantage of effectiveness and minimize time-to-usefulness.

70B through Ollama

70.6 b params, 4-bit KM quantized DeepSeek-R1 running via Ollama:

GPU usage shoots up here, as expected 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 local "deep scientist" with DeepSeek-R1 - YouTube). DeepSeek R1's recipe to reproduce o1 and the future of thinking LMs. The Illustrated DeepSeek-R1 - by Jay Alammar. Explainer: What's R1 & Everything Else? - Tim . DeepSeek R1 Explained to your grandmother - 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 a novel autoregressive framework that combines multimodal understanding and generation. It can both comprehend and produce images. DeepSeek-R1: Incentivizing Reasoning Capability in Large Language Models by means of Reinforcement Learning (January 2025) This paper introduces DeepSeek-R1, an open-source thinking model that rivals the performance of OpenAI's o1. It presents a detailed approach for training such models using large-scale support learning methods. DeepSeek-V3 Technical Report (December 2024) This report goes over the application of an FP8 blended accuracy training structure verified on an exceptionally massive model, attaining both sped up training and decreased GPU memory use. DeepSeek LLM: Scaling Open-Source Language Models with Longtermism (January 2024) This paper looks into scaling laws and presents findings that facilitate the scaling of large-scale designs in open-source configurations. It presents the DeepSeek LLM job, dedicated to advancing open-source language designs with a long-term point of view. DeepSeek-Coder: When the Large Language Model Meets Programming-The Rise of Code Intelligence (January 2024) This research study introduces the DeepSeek-Coder series, a variety of open-source code designs trained from scratch on 2 trillion tokens. The designs are pre-trained on a high-quality project-level code corpus and utilize a fill-in-the-blank task to improve code generation and infilling. DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language Model (May 2024) This paper provides DeepSeek-V2, a Mixture-of-Experts (MoE) language model characterized by affordable training and efficient reasoning. 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 model that attains performance comparable to GPT-4 Turbo in code-specific jobs.

Interesting events

- Hong Kong University replicates R1 results (Jan 25, '25).

  • Huggingface announces huggingface/open-r 1: Fully open reproduction of DeepSeek-R1 to reproduce R1, totally open source (Jan 25, '25).
  • OpenAI scientist validates the DeepSeek group individually found and used some core ideas the OpenAI team utilized en route to o1

    Liked this post? Join the newsletter.