mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
9 lines
361 B
Python
9 lines
361 B
Python
"""
|
|
Reasoning Gym - A library of procedural dataset generators for training reasoning models
|
|
"""
|
|
|
|
from . import algebra, algorithmic, arithmetic, cognition, data, games, graphs, logic
|
|
from .factory import create_dataset, register_dataset
|
|
|
|
__version__ = "0.1.1"
|
|
__all__ = ["arithmetic", "algorithmic", "algebra", "cognition", "data", "games", "graphs", "logic"]
|