reasoning-gym/reasoning_gym/__init__.py
rasdani 72e45e9401
Feat: expose score_answer function without needing to instantiate a dataset (#422)
* feat: get `score_answer` for a given dataset

* fix: `self` error

* add test
2025-04-18 10:36:44 +02:00

25 lines
579 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
from .factory import create_dataset, get_score_answer_fn, register_dataset
__version__ = "0.1.19"
__all__ = [
"arc",
"algebra",
"algorithmic",
"arithmetic",
"code",
"cognition",
"data",
"games",
"geometry",
"graphs",
"logic",
"induction",
"create_dataset",
"register_dataset",
"get_score_answer_fn",
]