mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
6.0 KiB
170 lines
6.0 KiB
"""
|
|
loss functions
|
|
"""
|
|
from typing import Optional, Tuple
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
|
|
from .utils import masked_mean
|
|
|
|
|
|
class GPTLMLoss(nn.Module):
|
|
"""
|
|
GPT Language Model Loss
|
|
"""
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
# NOTE: default ignore_index is -100, which is equal to IGNORE_INDEX in sft_dataset.py
|
|
self.loss = nn.CrossEntropyLoss()
|
|
|
|
def forward(self, logits: torch.Tensor, labels: torch.Tensor) -> torch.Tensor:
|
|
shift_logits = logits[..., :-1, :].contiguous()
|
|
shift_labels = labels[..., 1:].contiguous()
|
|
# Flatten the tokens
|
|
return self.loss(shift_logits.view(-1, shift_logits.size(-1)), shift_labels.view(-1))
|
|
|
|
|
|
class PolicyLoss(nn.Module):
|
|
"""
|
|
Policy Loss for PPO
|
|
"""
|
|
|
|
def __init__(self, clip_eps: float = 0.2, skip_threshold: float = 20.0) -> None:
|
|
super().__init__()
|
|
self.clip_eps = clip_eps
|
|
self.skip_threshold = skip_threshold
|
|
|
|
def forward(
|
|
self,
|
|
log_probs: torch.Tensor,
|
|
old_log_probs: torch.Tensor,
|
|
advantages: torch.Tensor,
|
|
action_mask: Optional[torch.Tensor] = None,
|
|
) -> torch.Tensor:
|
|
skip = False
|
|
ratio_ = ((log_probs - old_log_probs) * action_mask).exp()
|
|
|
|
# note that if dropout is disabled (recommanded), ratio will always be 1.
|
|
if ratio_.mean() > self.skip_threshold:
|
|
skip = True
|
|
|
|
ratio = ratio_.clamp(0.0, 10.0)
|
|
surr1 = ratio * advantages
|
|
surr2 = ratio.clamp(1 - self.clip_eps, 1 + self.clip_eps) * advantages
|
|
loss = -torch.min(surr1, surr2)
|
|
loss = masked_mean(loss, action_mask)
|
|
loss = loss.mean()
|
|
return loss, skip, ratio_.max()
|
|
|
|
|
|
class ValueLoss(nn.Module):
|
|
"""
|
|
Value Loss for PPO
|
|
"""
|
|
|
|
def __init__(self, clip_eps: float = 0.2) -> None:
|
|
super().__init__()
|
|
self.clip_eps = clip_eps
|
|
|
|
def forward(
|
|
self,
|
|
values: torch.Tensor,
|
|
old_values: torch.Tensor,
|
|
advantage: torch.Tensor,
|
|
action_mask: Optional[torch.Tensor] = None,
|
|
) -> torch.Tensor:
|
|
returns = advantage + old_values
|
|
values_clipped = old_values + (values - old_values).clamp(-self.clip_eps, self.clip_eps)
|
|
surr1 = (values_clipped - returns) ** 2
|
|
surr2 = (values - returns) ** 2
|
|
loss = torch.max(surr1, surr2) / torch.sum(action_mask)
|
|
loss = torch.sum(loss * action_mask)
|
|
return 0.5 * loss
|
|
|
|
|
|
class DpoLoss(nn.Module):
|
|
"""
|
|
Dpo loss
|
|
Details: https://arxiv.org/pdf/2305.18290.pdf
|
|
"""
|
|
|
|
def __init__(self, beta: float = 0.1):
|
|
super().__init__()
|
|
self.beta = beta
|
|
|
|
def forward(
|
|
self,
|
|
logprob_actor_chosen: torch.Tensor,
|
|
logprob_actor_reject: torch.Tensor,
|
|
logprob_ref_chosen: torch.Tensor,
|
|
logprob_ref_reject: torch.Tensor,
|
|
chosen_mask: torch.Tensor,
|
|
reject_mask: torch.Tensor,
|
|
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
|
|
"""Compute the DPO loss for a batch of policy and reference model log probabilities.
|
|
|
|
# adapted from https://github.com/huggingface/trl/blob/main/trl/trainer/dpo_trainer.py#L328
|
|
|
|
Args:
|
|
logprob_actor_chosen: Log probabilities of the policy model for the chosen responses. Shape: (batch_size,)
|
|
logprob_actor_reject: Log probabilities of the policy model for the rejected responses. Shape: (batch_size,)
|
|
logprob_ref_chosen: Log probabilities of the reference model for the chosen responses. Shape: (batch_size,)
|
|
logprob_ref_reject: Log probabilities of the reference model for the rejected responses. Shape: (batch_size,)
|
|
|
|
Returns:
|
|
A tuple of three tensors: (losses, chosen_rewards, rejected_rewards).
|
|
The losses tensor contains the DPO loss for each example in the batch.
|
|
The chosen_rewards and rejected_rewards tensors contain the rewards for the chosen and rejected responses, respectively.
|
|
"""
|
|
logprob_actor_chosen = logprob_actor_chosen * chosen_mask
|
|
logprob_actor_reject = logprob_actor_reject * reject_mask
|
|
if logprob_ref_chosen is not None and logprob_ref_reject is not None:
|
|
logprob_ref_chosen = logprob_ref_chosen * chosen_mask
|
|
logprob_ref_reject = logprob_ref_reject * reject_mask
|
|
if len(logprob_ref_chosen.shape) == 2:
|
|
ref_logratios = logprob_ref_chosen.sum(-1) - logprob_ref_reject.sum(-1)
|
|
else:
|
|
ref_logratios = logprob_ref_chosen.squeeze() - logprob_ref_reject.squeeze()
|
|
else:
|
|
# If no reference model is provided
|
|
ref_logratios = 0.0
|
|
|
|
pi_logratios = logprob_actor_chosen.sum(-1) - logprob_actor_reject.sum(-1)
|
|
logits = pi_logratios - ref_logratios
|
|
losses = -torch.nn.functional.logsigmoid(self.beta * logits)
|
|
|
|
# Calculate rewards for logging
|
|
if logprob_ref_chosen is not None:
|
|
chosen_rewards = self.beta * (logprob_actor_chosen.sum(-1) - logprob_ref_chosen.sum(-1)).detach()
|
|
else:
|
|
chosen_rewards = self.beta * logprob_actor_chosen.sum(-1).detach()
|
|
if logprob_ref_reject is not None:
|
|
rejected_rewards = self.beta * (logprob_actor_reject.sum(-1) - logprob_ref_reject.sum(-1)).detach()
|
|
else:
|
|
rejected_rewards = self.beta * logprob_actor_reject.sum(-1).detach()
|
|
|
|
return losses, chosen_rewards, rejected_rewards
|
|
|
|
|
|
class LogSigLoss(nn.Module):
|
|
"""
|
|
Pairwise Loss for Reward Model
|
|
Details: https://arxiv.org/abs/2203.02155
|
|
"""
|
|
|
|
def forward(self, chosen_reward: torch.Tensor, reject_reward: torch.Tensor) -> torch.Tensor:
|
|
return -torch.nn.functional.logsigmoid(chosen_reward - reject_reward).mean()
|
|
|
|
|
|
class LogExpLoss(nn.Module):
|
|
"""
|
|
Pairwise Loss for Reward Model
|
|
Details: https://arxiv.org/abs/2204.05862
|
|
"""
|
|
|
|
def forward(self, chosen_reward: torch.Tensor, reject_reward: torch.Tensor) -> torch.Tensor:
|
|
loss = torch.log(1 + torch.exp(reject_reward - chosen_reward)).mean()
|
|
return loss
|