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