Understanding DeepSeek R1
Adelaida Martin editou esta páxina hai 2 meses


DeepSeek-R1 is an open-source language model constructed on DeepSeek-V3-Base that's been making waves in the AI community. Not just does it match-or even surpass-OpenAI's o1 design in many benchmarks, but it also features totally MIT-licensed weights. This marks it as the first non-OpenAI/Google design to provide strong thinking abilities in an open and available manner.

What makes DeepSeek-R1 particularly amazing is its openness. Unlike the less-open approaches from some industry leaders, DeepSeek has released a detailed training approach in their paper. The design is likewise incredibly economical, 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 common wisdom was that better models needed more information and calculate. While that's still legitimate, designs like o1 and R1 demonstrate an option: inference-time scaling through reasoning.

The Essentials

The DeepSeek-R1 paper provided several designs, but main among them were R1 and R1-Zero. Following these are a series of distilled designs that, while intriguing, I will not go over here.

DeepSeek-R1 utilizes two significant concepts:

1. A multi-stage pipeline where a little set of cold-start data kickstarts the design, followed by large-scale RL.

  1. Group Relative Policy Optimization (GRPO), a reinforcement knowing technique that counts on comparing numerous model outputs per prompt to avoid the requirement for a different critic.

    R1 and R1-Zero are both thinking designs. This basically implies they do Chain-of-Thought before addressing. For the R1 series of models, this takes form as believing within a tag, before answering with a final summary.

    R1-Zero vs R1

    R1-Zero applies Reinforcement Learning (RL) straight to DeepSeek-V3-Base with no supervised fine-tuning (SFT). RL is used to enhance the model's policy to take full advantage of reward. R1-Zero attains exceptional accuracy however sometimes produces confusing outputs, such as mixing multiple languages in a single reaction. R1 repairs that by incorporating minimal monitored fine-tuning and numerous RL passes, which improves both correctness and readability.

    It is interesting how some languages might express certain concepts better, which leads the model to select the most meaningful language for the job.

    Training Pipeline

    The training pipeline that DeepSeek released in the R1 paper is immensely interesting. It showcases how they developed such strong thinking models, and what you can anticipate from each phase. This includes the issues that the resulting models from each stage have, and how they fixed it in the next phase.

    It's fascinating that their training pipeline differs from the normal:

    The normal training technique: Pretraining on big dataset (train to predict next word) to get the base model → monitored fine-tuning → preference tuning via RLHF R1-Zero: Pretrained → RL R1: drapia.org Pretrained → Multistage training pipeline with numerous SFT and RL stages

    Cold-Start Fine-Tuning: Fine-tune DeepSeek-V3-Base on a couple of thousand Chain-of-Thought (CoT) samples to guarantee the RL procedure has a good beginning point. This provides an excellent model to start RL. First RL Stage: Apply GRPO with rule-based rewards to enhance thinking accuracy and format (such as forcing chain-of-thought into thinking tags). When they were near convergence in the RL procedure, they transferred to the next action. The outcome of this step is a strong reasoning model however with weak general abilities, e.g., bad formatting and language blending. Rejection Sampling + general information: Create new SFT information through rejection tasting on the RL checkpoint (from step 2), integrated with monitored information from the DeepSeek-V3-Base design. They collected around 600k premium reasoning samples. Second Fine-Tuning: Fine-tune DeepSeek-V3-Base again on 800k overall samples (600k reasoning + 200k basic tasks) for broader capabilities. This action resulted in a strong thinking design with general abilities. Second RL Stage: Add more reward signals (helpfulness, harmlessness) to refine the last design, in addition to the reasoning benefits. The outcome is DeepSeek-R1. They also did design distillation for a number of Qwen and Llama models on the thinking traces to get distilled-R1 models.

    Model distillation is a method where you use an instructor design to improve a trainee design by producing training information for the trainee model. The instructor is usually a bigger model than the trainee.

    Group Relative Policy Optimization (GRPO)

    The basic concept behind using support learning for LLMs is to tweak the design's policy so that it naturally produces more precise and asteroidsathome.net helpful answers. They utilized a benefit system that inspects not just for correctness but also for appropriate formatting and language consistency, so the model gradually learns to prefer reactions that satisfy these quality criteria.

    In this paper, they motivate the R1 design to create chain-of-thought reasoning through RL training with GRPO. Instead of adding a different module at inference time, vmeste-so-vsemi.ru the training process itself pushes the model to produce detailed, detailed outputs-making the chain-of-thought an emergent habits of the enhanced policy.

    What makes their approach particularly intriguing is its reliance on straightforward, rule-based reward functions. Instead of depending upon pricey external designs or human-graded examples as in conventional RLHF, the RL utilized for R1 utilizes simple requirements: it may offer a higher reward if the answer is right, if it follows the anticipated/ formatting, wiki-tb-service.com and if the language of the answer matches that of the timely. Not relying on a benefit design likewise means you don't need to hang around and effort training it, and it does not take memory and calculate far from your main model.

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

    1. For each input timely, the model generates various actions.
  2. Each action gets a scalar benefit based on aspects like precision, formatting, and language consistency.
  3. Rewards are changed relative to the group's performance, basically measuring how much better each action is compared to the others.
  4. The design updates its technique somewhat to favor actions with greater relative advantages. It only makes slight adjustments-using strategies like clipping and a KL penalty-to guarantee the policy doesn't wander off too far from its initial habits.

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

    While DeepSeek utilized GRPO, you could utilize alternative techniques rather (PPO or archmageriseswiki.com PRIME).

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

    Is RL on LLMs the course to AGI?

    As a last note on explaining DeepSeek-R1 and the approaches they've 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 show that RL boosts the model's overall performance by rendering the output distribution more robust, in other words, it seems that the enhancement is credited to enhancing the proper reaction from TopK instead of the enhancement of fundamental abilities.

    To put it simply, RL fine-tuning tends to form the output circulation so that the highest-probability outputs are most likely to be right, despite the fact that the general ability (as determined by the diversity of proper answers) is mainly present in the pretrained model.

    This recommends that reinforcement learning on LLMs is more about refining and "shaping" the existing distribution of rather than enhancing the model with completely brand-new capabilities. Consequently, while RL techniques such as PPO and GRPO can produce considerable efficiency gains, there appears to be a fundamental ceiling determined by the underlying model's pretrained understanding.

    It is uncertain to me how far RL will take us. Perhaps it will be the stepping stone to the next big turning point. I'm delighted to see how it unfolds!

    Running DeepSeek-R1

    I've utilized DeepSeek-R1 via the main chat interface for numerous problems, wiki.whenparked.com which it seems to solve all right. The additional search performance makes it even nicer to utilize.

    Interestingly, o3-mini(-high) was released as I was writing this post. From my initial testing, R1 seems stronger at mathematics than o3-mini.

    I likewise leased a single H100 by means of 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 design would perform when released on a single H100 GPU-not to thoroughly evaluate the model's capabilities.

    671B by means of 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 running on the GPU), running via 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 gaming setup. Digital Spaceport composed a complete guide on how to run Deepseek R1 671b completely in your area 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 bearable for any serious work, but it's fun to run these large models on available hardware.

    What matters most to me is a combination of usefulness and time-to-usefulness in these designs. Since reasoning models require to believe before responding to, their time-to-usefulness is usually higher than other models, however their usefulness is likewise normally greater. We need to both maximize effectiveness and minimize time-to-usefulness.

    70B by means of Ollama

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

    GPU usage shoots up 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 local "deep scientist" with DeepSeek-R1 - YouTube). DeepSeek R1's recipe to reproduce o1 and 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 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 merges multimodal understanding and generation. It can both understand and create images. DeepSeek-R1: Incentivizing Reasoning Capability in Large Language Models through Reinforcement Learning (January 2025) This paper introduces DeepSeek-R1, an open-source reasoning model that rivals the efficiency of OpenAI's o1. It provides a detailed methodology for training such models using large-scale reinforcement knowing strategies. DeepSeek-V3 Technical Report (December 2024) This report goes over the application of an FP8 combined precision training structure verified on an extremely massive design, attaining both accelerated training and minimized GPU memory usage. DeepSeek LLM: Scaling Open-Source Language Models with Longtermism (January 2024) This paper explores scaling laws and provides findings that help with the scaling of large-scale models in open-source setups. It presents the DeepSeek LLM task, devoted 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 presents DeepSeek-V2, a Mixture-of-Experts (MoE) language design identified by economical training and effective reasoning. DeepSeek-Coder-V2: Breaking the Barrier of Closed-Source Models in Code Intelligence (June 2024) This research presents DeepSeek-Coder-V2, an open-source Mixture-of-Experts (MoE) code language design that attains efficiency similar to GPT-4 Turbo in code-specific jobs.

    Interesting occasions

    - Hong Kong University replicates R1 results (Jan 25, '25).
  5. Huggingface announces huggingface/open-r 1: Fully open reproduction of DeepSeek-R1 to duplicate R1, completely open source (Jan 25, '25).
  6. OpenAI scientist validates the DeepSeek group independently found and used some core ideas the OpenAI group utilized en route to o1

    Liked this post? Join the newsletter.