提交 fa78eeda 编写于 作者: U u010280923

opt reward model

上级 68662e23
......@@ -181,6 +181,10 @@ class RewardModel(pl.LightningModule):
return reward
def forward(self, x_p, x_a, m_p, m_a):
# 因为前向传播的时候,需要过两次模型。所以反馈的时候需要冻结其中一次的参数
# 不然梯度会被计算两次,在包含 deepspeed 框架下会报错
# 报错信息:Gradient computed twice for this partition.
with torch.enable_grad():
prefer_reward = self.single_forward(x_p, prompt_mask=m_p)
with torch.no_grad():
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册