Merge pull request #180 from Adefioye/list-functions

Add induction-based tasks for list functions
This commit is contained in:
Andreas Köpf 2025-02-21 16:20:49 +01:00 committed by GitHub
commit 700aab6114
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 546 additions and 1 deletions

View file

@ -2,7 +2,7 @@
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 . import algebra, algorithmic, arc, arithmetic, code, cognition, data, games, geometry, graphs, induction, logic
from .factory import create_dataset, register_dataset
__version__ = "0.1.9"
@ -18,6 +18,7 @@ __all__ = [
"geometry",
"graphs",
"logic",
"induction",
"create_dataset",
"register_dataset",
]