1 Understanding DeepSeek R1
pat35731378868 edited this page 2025-02-12 11:52:56 +00:00


DeepSeek-R1 is an open-source language design built on DeepSeek-V3-Base that's been making waves in the AI neighborhood. Not only does it match-or even surpass-OpenAI's o1 model in lots of standards, however it also features totally MIT-licensed weights. This marks it as the first non-OpenAI/Google design to deliver strong thinking capabilities in an open and available manner.

What makes DeepSeek-R1 especially interesting is its transparency. Unlike the less-open methods from some industry leaders, DeepSeek has actually released a detailed training methodology in their paper. The design is also extremely cost-effective, 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 knowledge was that better designs required 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 provided numerous models, however main amongst them were R1 and R1-Zero. Following these are a series of distilled designs that, while fascinating, I won't discuss here.

DeepSeek-R1 utilizes 2 major ideas:

1. A multi-stage pipeline where a little set of cold-start data kickstarts the model, followed by massive RL. 2. Group Relative Policy Optimization (GRPO), a support learning technique that counts on comparing multiple model outputs per prompt to avoid the requirement for a different critic.

R1 and R1-Zero are both reasoning designs. This essentially implies they do Chain-of-Thought before addressing. For the R1 series of designs, this takes form 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 with no supervised fine-tuning (SFT). RL is utilized to optimize the design's policy to maximize reward. R1-Zero attains outstanding accuracy but in some cases produces confusing outputs, such as several languages in a single reaction. R1 repairs that by including limited supervised fine-tuning and numerous RL passes, which improves both accuracy and readability.

It is fascinating how some languages might reveal certain concepts much better, which leads the model to pick the most meaningful language for the job.

Training Pipeline

The training pipeline that DeepSeek released in the R1 paper is profoundly intriguing. It showcases how they produced such strong thinking designs, and what you can anticipate from each phase. This includes the problems that the resulting designs from each phase have, and how they fixed it in the next phase.

It's intriguing that their training pipeline differs from the usual:

The usual training strategy: Pretraining on big dataset (train to predict next word) to get the base designmonitored fine-tuningpreference tuning via RLHF R1-Zero: Pretrained → RL R1: PretrainedMultistage 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 ensure the RL procedure has a decent beginning point. This provides a great model to begin RL. First RL Stage: Apply GRPO with rule-based rewards to improve thinking correctness and format (such as requiring chain-of-thought into thinking tags). When they were near convergence in the RL procedure, they moved to the next action. The outcome of this step is a strong thinking design but with weak basic capabilities, e.g., bad formatting and language mixing. Rejection Sampling + basic information: Create new SFT information through rejection sampling on the RL checkpoint (from action 2), integrated with supervised data from the DeepSeek-V3-Base model. They collected around 600k premium thinking samples. Second Fine-Tuning: Fine-tune DeepSeek-V3-Base again on 800k total samples (600k reasoning + 200k basic jobs) for more comprehensive capabilities. This step led to a strong thinking model with basic abilities. Second RL Stage: Add more benefit signals (helpfulness, harmlessness) to refine the final design, in addition to the reasoning rewards. The result is DeepSeek-R1. They likewise did model distillation for several Qwen and Llama models on the reasoning traces to get distilled-R1 designs.

Model distillation is a technique where you use an instructor design to enhance a trainee model by generating training information for the trainee design. The instructor is generally a larger model than the trainee.

Group Relative Policy Optimization (GRPO)

The basic idea behind utilizing support learning for LLMs is to tweak the design's policy so that it naturally produces more accurate and helpful answers. They utilized a benefit system that inspects not just for accuracy however likewise for proper format and language consistency, so the model gradually discovers to favor responses that fulfill these quality requirements.

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

What makes their technique particularly intriguing is its dependence on straightforward, rule-based reward functions. Instead of depending on expensive external designs or human-graded examples as in conventional RLHF, the RL utilized for R1 uses simple requirements: it might provide a greater reward if the response is appropriate, if it follows the expected/ format, and if the language of the answer matches that of the timely. Not relying on a reward design also suggests you don't have to invest time 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 model generates various reactions. 2. Each response gets a scalar reward based on elements like precision, formatting, and language consistency. 3. Rewards are adjusted relative to the group's efficiency, essentially determining just how much better each reaction is compared to the others. 4. The model updates its method somewhat to favor elclasificadomx.com actions with greater relative advantages. It just makes slight adjustments-using techniques like clipping and a KL penalty-to guarantee the policy does not stray too far from its initial habits.

A cool aspect of GRPO is its flexibility. You can utilize basic rule-based benefit functions-for circumstances, awarding a reward when the model properly uses the syntax-to guide the training.

While DeepSeek utilized GRPO, you could use alternative methods rather (PPO or PRIME).

For those aiming to dive deeper, Will Brown has actually written rather a great execution of training an LLM with RL using GRPO. GRPO has actually likewise currently been included 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 course to AGI?

As a final note on explaining DeepSeek-R1 and the approaches they have actually provided in their paper, I desire to highlight a passage from the DeepSeekMath paper, based on a point Yannic Kilcher made in his video.

These findings show that RL enhances the design's general efficiency by rendering the output distribution more robust, in other words, it seems that the improvement is attributed to enhancing the appropriate reaction from TopK instead of the improvement of essential capabilities.

In other words, RL fine-tuning tends to shape the output circulation so that the highest-probability outputs are more most likely to be proper, although the total capability (as determined by the variety of right responses) is mainly present in the pretrained model.

This recommends that reinforcement knowing on LLMs is more about refining and "shaping" the existing distribution of reactions rather than enhancing the model with entirely new abilities. Consequently, while RL methods such as PPO and GRPO can produce significant performance gains, there appears to be a fundamental ceiling identified 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 excited to see how it unfolds!

Running DeepSeek-R1

I have actually utilized DeepSeek-R1 via the main chat interface for different issues, which it appears to solve all right. The additional search performance makes it even nicer to use.

Interestingly, o3-mini(-high) was launched as I was writing this post. From my preliminary screening, R1 seems stronger at math than o3-mini.

I likewise leased 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 perform when deployed on a single H100 GPU-not to extensively check the design's capabilities.

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 operating on the GPU), running through llama.cpp:

29 layers seemed to be the sweet area offered this configuration.

Performance:

A r/localllama user explained that they were able to overcome 2 tok/sec with DeepSeek R1 671B, without using their GPU on their regional gaming setup. Digital Spaceport composed a complete guide on how to run Deepseek R1 671b fully 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 rather bearable for any severe work, but it's enjoyable to run these large designs on available hardware.

What matters most to me is a mix of usefulness and time-to-usefulness in these designs. Since thinking models require to believe before addressing, their time-to-usefulness is generally higher than other designs, but their usefulness is also typically higher. We need to both take full advantage of usefulness and lessen time-to-usefulness.

70B through Ollama

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

GPU utilization 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 through Reinforcement Learning [2402.03300] DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models DeepSeek R1 - Notion (Building a completely local "deep researcher" with DeepSeek-R1 - YouTube). DeepSeek R1's dish to duplicate 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 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 structure that merges multimodal understanding and generation. It can both comprehend and create images. DeepSeek-R1: Incentivizing Reasoning Capability in Large Language Models through Reinforcement Learning (January 2025) This paper presents DeepSeek-R1, an open-source reasoning design that matches the efficiency of OpenAI's o1. It presents a detailed methodology for training such models utilizing massive support learning techniques. DeepSeek-V3 Technical Report (December 2024) This report discusses the execution of an FP8 mixed precision training framework confirmed on an incredibly massive design, attaining both accelerated training and reduced GPU memory use. DeepSeek LLM: Scaling Open-Source Language Models with Longtermism (January 2024) This paper looks into scaling laws and presents findings that help with the scaling of massive designs in open-source configurations. It introduces the DeepSeek LLM project, committed to advancing open-source language models 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 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 use a fill-in-the-blank job 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 design defined by cost-effective training and effective inference. 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 performance equivalent to GPT-4 Turbo in code-specific tasks.

Interesting occasions

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