reasoning-gym/reasoning_gym/__init__.py
Andreas Koepf (aider) b66b1c09b9 feat: Add SimpleEquationsDataset to algebra module
Developed together with Benjamin Rio (benjamrio)
2025-01-24 16:08:05 +01:00

8 lines
289 B
Python

"""
Reasoning Gym - A library of procedural dataset generators for training reasoning models
"""
from . import algorithmic, algebra, arithmetic, cognition, data, games, logic
__version__ = "0.1.1"
__all__ = ["arithmetic", "algorithmic", "algebra", "cognition", "data", "games", "logic"]