Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion slime/rollout/rm_hub/deepscaler.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ def get_deepscaler_rule_based_reward(response, label):
elif "###Response" in response:
model_solution = response.split("###Response")[1]
else:
return 0
# Non-thinking models emit neither marker; grade the whole response
# instead of silently returning 0 (which zeroes every reward and
# kills the GRPO signal without any visible error).
model_solution = response

model_answer = extract_answer(model_solution)
if model_answer is None:
Expand Down
Loading