-
Notifications
You must be signed in to change notification settings - Fork 219
Add G-Pass@k Metric #589
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
base: main
Are you sure you want to change the base?
Add G-Pass@k Metric #589
Conversation
hey ! Thanks for the PR :) |
hey, I have added some tasks in tasks/default_tasks.py that support G-Pass@16 evaluation on AIME24/25 and MATH500 benchmarks, you can check it :) |
@NathanHB Hi, I would like to know if this PR can be merged now? or does it need more further modification? |
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.
Looks good ! Only a verry small nit, wait for the tests and good to merge
k: Union[int, List[int]], | ||
n: int = None, | ||
thresholds: List[float] = [0.0, 0.25, 0.5, 0.75, 1.0], |
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.
list
instead of List
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.
have fixed it
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
@NathanHB Hi, I have fixed the nit, please allow the checks :) |
This PR aims to support the G-Pass@k from paper.
G-Pass@k is a generalized version of Pass@k, measuring the ability of models to generate m correct solution in
k
attempts, where m is controled by the parameterthresholds
. When the threshold is 0, G-Pass@k will discard to G-Pass@k. G-Pass@k can measure the potential and stability of models simultaneously.