mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
* feat: add scoring cascade for reducing false negatives in answer verification * style: fix black and isort formatting Run black and isort to satisfy pre-commit checks. Made-with: Cursor * docs: add scoring cascade example to Quickstart section Mention the experimental scoring cascade feature at the end of the Quickstart section with a disclaimer and complete usage examples showing both the dataset method and standalone function. Made-with: Cursor * docs: shorten scoring cascade section in README Trim to a concise standalone example per review feedback. Made-with: Cursor * docs: simplify scoring cascade description in README Made-with: Cursor * update readme --------- Co-authored-by: Zafir Stojanovski <zaf.stojano@gmail.com>
46 lines
852 B
Python
46 lines
852 B
Python
"""
|
|
Reasoning Gym - A library of procedural dataset generators for training reasoning models
|
|
"""
|
|
|
|
from . import (
|
|
algebra,
|
|
algorithmic,
|
|
arc,
|
|
arithmetic,
|
|
code,
|
|
cognition,
|
|
data,
|
|
games,
|
|
geometry,
|
|
graphs,
|
|
induction,
|
|
logic,
|
|
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__ = [
|
|
"arc",
|
|
"algebra",
|
|
"algorithmic",
|
|
"arithmetic",
|
|
"code",
|
|
"cognition",
|
|
"data",
|
|
"games",
|
|
"geometry",
|
|
"graphs",
|
|
"logic",
|
|
"induction",
|
|
"probability",
|
|
"create_dataset",
|
|
"register_dataset",
|
|
"get_score_answer_fn",
|
|
"cascade_score",
|
|
"strip_latex",
|
|
"string_match",
|
|
"float_match",
|
|
"math_match",
|
|
]
|