mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
23 lines
502 B
Python
23 lines
502 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, logic
|
|
from .factory import create_dataset, register_dataset
|
|
|
|
__version__ = "0.1.6"
|
|
__all__ = [
|
|
"arc",
|
|
"algebra",
|
|
"algorithmic",
|
|
"arithmetic",
|
|
"code",
|
|
"cognition",
|
|
"data",
|
|
"games",
|
|
"geometry",
|
|
"graphs",
|
|
"logic",
|
|
"create_dataset",
|
|
"register_dataset",
|
|
]
|