LLM Course documentation
Advanced Understanding of Group Relative Policy Optimization (GRPO) in DeepSeekMath
Advanced Understanding of Group Relative Policy Optimization (GRPO) in DeepSeekMath
This section dives into the technical and mathematical details of GRPO. It was authored by Shirin Yamani.
Let’s deepen our understanding of GRPO so that we can improve our model’s training process.
GRPO directly evaluates the model-generated responses by comparing them within groups of generation to optimize policy model, instead of training a separate value model (Critic). This approach leads to significant reduction in computational cost!
GRPO can be applied to any verifiable task where the correctness of the response can be determined. For instance, in math reasoning, the correctness of the response can be easily verified by comparing it to the ground truth.
Before diving into the technical details, let’s visualize how GRPO works at a high level:
Now that we have a visual overview, let’s break down how GRPO works step by step.
The GRPO Algorithm
The core innovation of GRPO is its approach to evaluating and learning from multiple generated responses simultaneously. Instead of relying on a separate reward model, it compares outputs within the same group to determine which ones should be reinforced.
Let’s walk through each step of the algorithm in detail:
Step 1: Group Sampling
The first step is to generate multiple possible answers for each question. This creates a diverse set of outputs that can be compared against each other.
For each question, the model will generate outputs (group size) from the trained policy: { }, where each represents one completion from the model.
Example
To make this concrete, let’s look at a simple arithmetic problem:
Question :
Outputs :
Notice how some of the generated answers are correct (14) while others are wrong (16 or 10). This diversity is crucial for the next step.
Step 2: Advantage Calculation
Once we have multiple responses, we need a way to determine which ones are better than others. This is where the advantage calculation comes in.
Reward Distribution
First, we assign a reward score to each generated response. In this example, we’ll use a reward model, but as we learnt in the previous section, we can use any reward returning function.
Assign a RM score to each of the generated responses based on the correctness (e.g. 1 for correct response, 0 for wrong response) then for each of the calculate the following Advantage value.
Advantage Value Formula
The key insight of GRPO is that we don’t need absolute measures of quality - we can compare outputs within the same group. This is done using standardization:
Example
Continuing with our arithmetic example for the same example above, imagine we have 8 responses, 4 of which is correct and the rest wrong, therefore;
Metric | Value |
---|---|
Group Average | |
Standard Deviation | |
Advantage Value (Correct response) | |
Advantage Value (Wrong response) |
Interpretation
Now that we have calculated the advantage values, let’s understand what they mean:
This standardization (i.e. weighting) allows the model to assess each response’s relative performance, guiding the optimization process to favorable responses that are better than average (high reward) and discourage those that are worse. For instance if, then the is better response than the average level within its group; and if, then the then the quality of the response is less than the average (i.e. poor quality/performance).
For the example above, if then during optimization steps its generation probability will be increased.
With our advantage values calculated, we’re now ready to update the policy.
Step 3: Policy Update
The final step is to use these advantage values to update our model so that it becomes more likely to generate good responses in the future.
The target function for policy update is:
This formula might look intimidating at first, but it’s built from several components that each serve an important purpose. Let’s break them down one by one.
Key Components of the Target Function
The GRPO update function combines several techniques to ensure stable and effective learning. Let’s examine each component:
1. Probability Ratio
The probability ratio is defined as:
Intuitively, the formula compares how much the new model’s response probability differs from the old model’s response probability while incorporating a preference for responses that improve the expected outcome.
Interpretation
- If , the new model assigns a higher probability to response than the old model.
- If , the new model assigns a lower probability to
This ratio allows us to control how much the model changes at each step, which leads us to the next component.
2. Clip Function
The clipping function is defined as:
Limit the ratio discussed above to be within to avoid/control drastic changes or crazy updates and stepping too far off from the old policy. In other words, it limit how much the probability ratio can increase to help maintaining stability by avoiding updates that push the new model too far from the old one.
Example (ε = 0.2)
Let’s look at two different scenarios to better understand this clipping function:
- Case 1: if the new policy has a probability of 0.9 for a specific response and the old policy has a probabiliy of 0.5, it means this response is getting reinforeced by the new policy to have higher probability, but within a controlled limit which is the clipping to tight up its hands to not get drastic - (upper bound limit 1.2)
- Case 2: If the new policy is not in favour of a response (lower probability e.g. 0.2), meaning if the response is not beneficial the increase might be incorrect, and the model would be penalized. - (lower bound limit 0.8)
Interpretation
- The formula encourages the new model to favour responses that the old model underweighted if they improve the outcome.
- If the old model already favoured a response with a high probability, the new model can still reinforce it but only within a controlled limit,.
- If the old model overestimated a response that performs poorly, the new model is discouraged from maintaining that high probability.
- Therefore, intuitively, By incorporating the probability ratio, the objective function ensures that updates to the policy are proportional to the advantage while being moderated to prevent drastic changes. T
While the clipping function helps prevent drastic changes, we need one more safeguard to ensure our model doesn’t deviate too far from its original behavior.
3. KL Divergence
The KL divergence term is:
In the KL divergence term, the is basically the pre-update model’s output, per_token_logps
and is the new model’s output, new_per_token_logps
. Theoretically, KL divergence is minimized to prevent the model from deviating too far from its original behavior during optimization. This helps strike a balance between improving performance based on the reward signal and maintaining coherence. In this context, minimizing KL divergence reduces the risk of the model generating nonsensical text or, in the case of mathematical reasoning, producing extremely incorrect answers.
Interpretation
- A KL divergence penalty keeps the model’s outputs close to its original distribution, preventing extreme shifts.
- Instead of drifting towards completely irrational outputs, the model would refine its understanding while still allowing some exploration
Math Definition
For those interested in the mathematical details, let’s look at the formal definition:
Recall that KL distance is defined as follows: In RLHF, the two distributions of interest are often the distribution of the new model version, P(x), and a distribution of the reference policy, Q(x).
The Role of β Parameter
The coefficient controls how strongly we enforce the KL divergence constraint:
- Higher β (Stronger KL Penalty)
- More constraint on policy updates. The model remains close to its reference distribution.
- Can slow down adaptation: The model may struggle to explore better responses.
- Lower β (Weaker KL Penalty)
- More freedom to update policy: The model can deviate more from the reference.
- Faster adaptation but risk of instability: The model might learn reward-hacking behaviors.
- Over-optimization risk: If the reward model is flawed, the policy might generate nonsensical outputs.
- Original DeepSeekMath paper set this
Now that we understand the components of GRPO, let’s see how they work together in a complete example.
Worked Example with GRPO
To solidify our understanding of GRPO, let’s walk through a complete example from start to finish.
Example Problem
Step 1: Group Sampling
First, we generate multiple responses from our model.
Generate responses, of which are correct answer (\( 14, \text{reward=} 1 \)) and incorrect, Therefore:
Step 2: Advantage Calculation
Next, we calculate the advantage values to determine which responses are better than average:
Statistic | Value |
---|---|
Group Average | |
Standard Deviation | |
Advantage Value (Correct response) | |
Advantage Value (Wrong response) |
Step 3: Policy Update
Finally, we update our model to reinforce the correct responses:
- Assuming the probability of old policy (\( \pi{\theta{old}} \)) for a correct output is and the new policy increases it to then:
- Then when the target function is re-weighted, the model tends to reinforce the generation of correct output, and the limits the deviation from the reference policy.
With the theoretical understanding in place, let’s see how GRPO can be implemented in code.
Implementation Example
Let’s put everything together in a practical example. The following code demonstrates how to implement GRPO in PyTorch.
1. Loading the Model and Generating Responses
First, we need to load a model and generate multiple responses for a given question:
import torch
import torch.nn.functional as F
from transformers import AutoModelForCausalLM, AutoTokenizer
# Load the model and tokenizer
model_name = "Qwen/Qwen2-Math-1.5B"
model = AutoModelForCausalLM.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
model.eval()
# Move model to GPU if available
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model.to(device)
# Input prompt
prompt = "Solve y = 2x + 1 for x = 2, y = " # Correct answer: 5
inputs = tokenizer(prompt, return_tensors="pt", padding=True)
input_ids = inputs["input_ids"].to(device) # Shape: (1, prompt_len)
attention_mask = inputs["attention_mask"].to(device)
# Step 1: Generate 8 responses (B = 2 groups, G = 4 responses per group)
batch_size, num_generations = 2, 4
outputs = model.generate(
input_ids=input_ids, # Shape: (1, prompt_len)
attention_mask=attention_mask,
max_new_tokens=1, # seq_len = 1 (single token per response)
num_return_sequences=batch_size * num_generations, # 8 responses total
do_sample=True,
top_k=10,
temperature=0.7,
pad_token_id=tokenizer.eos_token_id,
return_dict_in_generate=True,
output_scores=True,
)
this initial Generation (Before Any Steps) will output sth like this:
Output 1: 5.0 Output 2: 6.0 Output 3: 7.0 Output 4: 5.0 Output 5: 10.0 Output 6: 2.0 Output 7: 5.0 Output 8: 5.0
2. Calculating Rewards
Now, we need to determine which responses are correct and assign rewards accordingly:
With GRPO, with the same sample prompt, we generate multiple completions. So for instance, for our prompts of "Solve y = 2x + 1 for x = 2, y = "
and Solve y = 2x + 1 for x = 4, y = "
we have two group of generated outputs for the given prompt one is say
[5, 6, 7, 5]
and the other is[10, 2, 9, 9]
while the correct answer is 5 and 9.
Note that in practice these reward scores are achieved by a rule-based reward function that assigns rewards based on the correctness of the response or a more complex neural network-based model that can be trained to assign rewards based on the correctness of the response or a mixed of both. But for sake of simplicity let’s say our reward per response is 1 if the response is correct and 0 if it is wrong, therefore;
reward_1 = [1, 0, 0, 1]
reward_2 = [0, 0, 1, 1]
next we get the group_wise mean and std of the rewards;
# Shape: (B * G,) = (8,) bc we have 2 groups of 4 generations that we flatten
rewards = torch.tensor([1, 0, 0, 1, 0, 0, 1, 1], dtype=torch.float32)
num_generations = 4
# Group rewards: Shape (B, G) = 2, 4)
rewards_grouped = rewards.view(-1, num_generations)
# Mean per group: Shape (B,) = (2,)
mean_grouped_rewards = rewards_grouped.mean(dim=1)
# Std per group: Shape (B,) = (2,)
std_grouped_rewards = rewards_grouped.std(dim=1)
# Broadcast to match rewards and normalize: Shape (B * G,) = (8,)
# why we need to broadcast? because we need to calculate the advantage values for each response within the group
mean_grouped_rewards = mean_grouped_rewards.repeat_interleave(num_generations, dim=0)
std_grouped_rewards = std_grouped_rewards.repeat_interleave(num_generations, dim=0)
this will output:
Grouped Rewards: tensor([[1., 0., 0., 1.], [0., 0., 1., 1.]]) Mean per group: tensor([0.5000, 0.5000]) Std per group: tensor([0.5774, 0.5774]) Broadcasted Mean: tensor([0.5000, 0.5000, 0.5000, 0.5000, 0.5000, 0.5000, 0.5000, 0.5000]) Broadcasted Std: tensor([0.5774, 0.5774, 0.5774, 0.5774, 0.5774, 0.5774, 0.5774, 0.5774])
Now we can calculate the advantage values for each response:
# Advantages: Shape (B * G,) = (8,)
advantages = (rewards - mean_grouped_rewards) / (std_grouped_rewards + 1e-8)
this will output:
Advantages: tensor([ 0.8659, -0.8660, -0.8660, 0.8659, -0.8660, -0.8660, 0.8659, 0.8659])
which is coming from the Advantage formula above, so:
For reward_1 = [1, 0, 0, 1]: 1 - 0.5 / 0.5774 ≈ 0.8659 0 - 0.5 / 0.5774 ≈ -0.8660 For reward_2 = [0, 0, 1, 1]: Same pattern.
however, the shape here is (B*G,) = (8,)
but in practice, we need to have the shape of (B, G) = (2, 4)
to match the logits shape, right? Therefore, we need to unsqueeze the advantages tensor to have the shape of (B*G, 1) = (8, 1)
to match the logits shape.
# Shape (B * G, 1) = (8, 1) to match the logits shape
advantages = advantages.unsqueeze(1)
which will output:
Advantages: tensor([[ 0.8659], [-0.8660], [-0.8660], [ 0.8659], [-0.8660], [-0.8660], [ 0.8659], [ 0.8659]])
now we are good, let’s move to the next step of updating the policy model based on the advantage values.
3. Updating the Policy
Finally, we use the advantage values to update our model:
# Compute probability ratio between new and old policies
ratio = torch.exp(
new_per_token_logps - per_token_logps
) # Shape: (B*G, seq_len) seq_len is the length of the output i.e. the num of generated tokens so here for simplicity let's assume it is 1 # (8, 1)
Note that the per_token_logps
can be achieved by passing the generated outputs to the model and get the logits and then apply the softmax function to get the probabilities F.softmax(logits, dim=-1)
.
# Clipping Function
eps = self.cliprange # e.g. 0.2
pg_losses1 = -advantages * ratio # Shape: (B*G, seq_len) #(8, 1)
pg_losses2 = -advantages * torch.clamp(
ratio, 1.0 - eps, 1.0 + eps
) # Shape: (B*G, seq_len) #(8, 1)
pg_loss_max = torch.max(pg_losses1, pg_losses2) # Shape: (B*G, seq_len) #(8, 1)
# Now Combine with KL penalty # Shape: (B*G, seq_len) #(8, 1)
per_token_loss = pg_loss_max + self.beta * per_token_kl
per_token_kl
can also be calculated as follows:
# Shape: (B*G, seq_len) #(8, 1)
per_token_kl = F.kl_div(
F.log_softmax(new_per_token_logps, dim=-1),
F.softmax(per_token_logps, dim=-1),
reduction="none",
).sum(dim=-1, keepdim=True)
Complete example can be found here. GRPO is also implemented by the excellent TRL team, you can check the implementation TRL/GRPO_trainer for more details.
Summary and Next Steps
Congratulations! You’ve now learned about Group Relative Policy Optimization (GRPO). To recap what we’ve covered:
- GRPO compares multiple outputs within a group to determine which ones are better than others, without requiring a separate value model.
- The advantage calculation standardizes rewards to identify which responses are above or below average.
- The policy update uses a clipped objective function with a KL divergence penalty to ensure stable learning.
This approach is particularly powerful for mathematical reasoning tasks, where correctness can be objectively verified. The GRPO method allows for more efficient training compared to traditional RLHF approaches that require a separate critic model.
As you continue exploring GRPO, consider experimenting with different group sizes, reward functions, and KL penalty coefficients to see how they affect your model’s performance.
Happy training! 🚀