mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-30 17:40:45 +00:00
feat: add scoring cascade for reducing false negatives in answer verification
This commit is contained in:
parent
437e0b49c4
commit
83fcceb317
5 changed files with 463 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ from . import (
|
|||
probability,
|
||||
)
|
||||
from .factory import create_dataset, get_score_answer_fn, register_dataset
|
||||
from .scoring import cascade_score, float_match, math_match, string_match, strip_latex
|
||||
|
||||
__version__ = "0.1.19"
|
||||
__all__ = [
|
||||
|
|
@ -37,4 +38,9 @@ __all__ = [
|
|||
"create_dataset",
|
||||
"register_dataset",
|
||||
"get_score_answer_fn",
|
||||
"cascade_score",
|
||||
"strip_latex",
|
||||
"string_match",
|
||||
"float_match",
|
||||
"math_match",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue