-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix accuracy reward for math #566
Conversation
|
||
def test_accuracy_reward_wrong_answer_no_latex(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test fails on main
because we defaulted to reward = 1 when the gold answer could not be parsed.
"""Reward function that checks if the completion is the same as the ground truth.""" | ||
contents = [completion[0]["content"] for completion in completions] | ||
rewards = [] | ||
for content, sol in zip(contents, solution): | ||
gold_parsed = parse( | ||
sol, | ||
extraction_mode="first_match", | ||
extraction_config=[LatexExtractionConfig()], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is better to use the default extraction config to allow one to also parse pure numbers like 6
in the answer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, is it worth filtering the datasets we are working with to ensure all gold answers can be parsed?
This PR adds an important fix to the
accuracy_reward()
function to:verify()
None
instead of 1. This will exclude corrupted samples from the loss => more stableThe latter is particular important to avoid getting spurious reward curves where the base accuracy is high simply because the gold answers could not be parsed.
Here are some WandB logs to show the effect, but you can already see it in this screenshot (red =
main
while green =this pr
)I am not sure why we decided to set the default reward to 1 for parsing errors, but it seems counterintuitive to me.
Fixes #557