1 Understanding DeepSeek R1
hanslangdon848 edited this page 1 month ago


DeepSeek-R1 is an open-source language model constructed on DeepSeek-V3-Base that's been making waves in the AI community. Not only does it match-or even surpass-OpenAI's o1 design in lots of criteria, however it likewise includes fully MIT-licensed weights. This marks it as the very first non-OpenAI/Google model to provide strong thinking capabilities in an open and fraternityofshadows.com available way.

What makes DeepSeek-R1 particularly interesting is its transparency. Unlike the less-open approaches from some industry leaders, DeepSeek has released a detailed training methodology in their paper. The design is also extremely cost-efficient, 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 needed more information and calculate. While that's still valid, designs like o1 and R1 demonstrate an option: inference-time scaling through thinking.

The Essentials

The DeepSeek-R1 paper provided several designs, forum.altaycoins.com however main amongst them were R1 and R1-Zero. Following these are a series of distilled models that, while intriguing, I will not discuss here.

DeepSeek-R1 uses two significant ideas:

1. A multi-stage pipeline where a little set of cold-start information kickstarts the model, followed by large-scale RL. 2. Group Relative Policy Optimization (GRPO), a support learning approach that depends on comparing multiple design outputs per timely to prevent the need for a different critic.

R1 and R1-Zero are both thinking models. This essentially means they do Chain-of-Thought before answering. For the R1 series of models, this takes type as thinking within a tag, before answering with a last summary.

R1-Zero vs R1

R1-Zero applies Reinforcement Learning (RL) straight to DeepSeek-V3-Base without any supervised fine-tuning (SFT). RL is used to optimize the design's policy to maximize benefit. R1-Zero attains exceptional accuracy however in some cases produces confusing outputs, such as blending several languages in a single reaction. R1 repairs that by incorporating limited monitored fine-tuning and several RL passes, which enhances both accuracy and readability.

It is fascinating how some languages may express certain ideas better, which leads the design to select the most meaningful language for the task.

Training Pipeline

The training pipeline that DeepSeek published in the R1 paper is immensely intriguing. It showcases how they developed such strong reasoning models, and what you can anticipate from each phase. This includes the problems that the resulting models from each phase have, and how they resolved it in the next phase.

It's intriguing that their training pipeline varies from the typical:

The normal training strategy: Pretraining on big dataset (train to predict next word) to get the base design → monitored fine-tuning → choice tuning via RLHF R1-Zero: Pretrained → RL R1: → Multistage training pipeline with numerous SFT and RL phases

Cold-Start Fine-Tuning: Fine-tune DeepSeek-V3-Base on a few thousand Chain-of-Thought (CoT) samples to make sure the RL procedure has a decent beginning point. This provides an excellent design to begin RL. First RL Stage: Apply GRPO with rule-based benefits to improve reasoning accuracy and formatting (such as requiring chain-of-thought into thinking tags). When they were near convergence in the RL procedure, they transferred to the next step. The result of this step is a strong thinking model but with weak general capabilities, e.g., bad format and language mixing. Rejection Sampling + basic data: Create new SFT data through rejection sampling on the RL checkpoint (from action 2), integrated with supervised information from the DeepSeek-V3-Base model. They collected around 600k premium reasoning samples. Second Fine-Tuning: Fine-tune DeepSeek-V3-Base again on 800k total samples (600k reasoning + 200k basic jobs) for wider capabilities. This action resulted in a strong thinking model with general abilities. Second RL Stage: Add more benefit signals (helpfulness, harmlessness) to refine the final model, in addition to the reasoning benefits. The outcome is DeepSeek-R1. They likewise did model distillation for numerous Qwen and Llama models on the reasoning traces to get distilled-R1 models.

Model distillation is a technique where you use an instructor model to enhance a trainee model by producing training information for the trainee design. The teacher is normally a bigger design than the trainee.

Group Relative Policy Optimization (GRPO)

The standard concept behind using reinforcement knowing for LLMs is to tweak the model's policy so that it naturally produces more accurate and useful responses. They utilized a benefit system that checks not just for accuracy however likewise for appropriate format and language consistency, so the design slowly learns to prefer actions that satisfy these quality requirements.

In this paper, they motivate the R1 design to produce chain-of-thought thinking through RL training with GRPO. Rather than including a separate module at reasoning time, the training procedure itself nudges the design to produce detailed, detailed outputs-making the chain-of-thought an emergent habits of the optimized policy.

What makes their approach especially intriguing is its reliance on straightforward, rule-based benefit functions. Instead of depending on pricey external designs or human-graded examples as in conventional RLHF, the RL used for R1 uses simple requirements: it might offer a higher reward if the response is appropriate, if it follows the anticipated/ format, and if the language of the response matches that of the timely. Not counting on a reward design also implies you do not have to hang around and effort training it, and it does not take memory and calculate away from your main design.

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

1. For each input timely, the design generates different actions. 2. Each response receives a scalar reward based on factors like precision, format, and language consistency. 3. Rewards are adjusted relative to the group's performance, pipewiki.org basically measuring how much better each reaction is compared to the others. 4. The model updates its technique somewhat to prefer reactions with higher relative benefits. It only makes slight adjustments-using techniques like clipping and a KL penalty-to ensure the policy doesn't stray too far from its original habits.

A cool element of GRPO is its flexibility. You can utilize easy rule-based reward functions-for instance, awarding a benefit when the design properly uses the syntax-to guide the training.

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

For those aiming to dive much deeper, Will Brown has actually composed rather a good execution of training an LLM with RL utilizing GRPO. GRPO has actually likewise currently been contributed to the Transformer Reinforcement Learning (TRL) library, which is another great resource. Finally, Yannic Kilcher has a great 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've presented in their paper, I wish to highlight a passage from the DeepSeekMath paper, based upon a point Yannic Kilcher made in his video.

These findings suggest that RL enhances the design's overall performance by rendering the output circulation more robust, to put it simply, it appears that the enhancement is associated to boosting the proper action from TopK instead of the improvement of fundamental abilities.

Simply put, RL fine-tuning tends to shape the output distribution so that the highest-probability outputs are most likely to be appropriate, even though the general ability (as determined by the diversity of appropriate responses) is mainly present in the pretrained model.

This recommends that support learning on LLMs is more about refining and "shaping" the existing distribution of responses instead of enhancing the design with totally brand-new capabilities. Consequently, while RL techniques such as PPO and GRPO can produce substantial performance gains, there seems a fundamental ceiling figured out by the underlying design's pretrained understanding.

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

Running DeepSeek-R1

I've used DeepSeek-R1 by means of the main chat user interface for numerous problems, which it appears to solve well enough. The additional search performance makes it even better to utilize.

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

I also 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 model would carry out when released on a single H100 GPU-not to extensively check the model's abilities.

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

29 layers appeared to be the sweet spot provided this setup.

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 local video gaming setup. Digital Spaceport wrote a full guide on how to run Deepseek R1 671b totally 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 fun to run these big designs on available hardware.

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

70B via Ollama

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

GPU utilization 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 through Reinforcement Learning [2402.03300] DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models DeepSeek R1 - Notion (Building a totally local "deep scientist" with DeepSeek-R1 - YouTube). DeepSeek R1's dish to replicate o1 and the future of thinking LMs. The Illustrated DeepSeek-R1 - by Jay Alammar. Explainer: What's R1 & Everything Else? - Tim Kellogg. DeepSeek R1 Explained to your granny - 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 comprehend and create images. DeepSeek-R1: Incentivizing Reasoning Capability in Large Language Models by means of Reinforcement Learning (January 2025) This paper presents DeepSeek-R1, an open-source reasoning model that rivals the performance of OpenAI's o1. It presents a detailed approach for training such models utilizing massive reinforcement learning strategies. DeepSeek-V3 Technical Report (December 2024) This report talks about the application of an FP8 combined precision training framework verified on an exceptionally massive model, attaining both sped up training and lowered GPU memory usage. DeepSeek LLM: Scaling Open-Source Language Models with Longtermism (January 2024) This paper explores scaling laws and presents findings that assist in the scaling of large-scale models in open-source setups. It presents the DeepSeek LLM task, dedicated to advancing open-source language models 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 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 premium project-level code corpus and employ a fill-in-the-blank job to enhance 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 economical training and effective 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 performance comparable to GPT-4 Turbo in code-specific jobs.

Interesting events

- Hong Kong University replicates R1 results (Jan 25, '25). - Huggingface reveals huggingface/open-r 1: Fully open recreation of DeepSeek-R1 to duplicate R1, fully open source (Jan 25, '25).