mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-22 16:49:06 +00:00
Initial ExerciseRegistrar and PerformanceTrend
This commit is contained in:
parent
45701be61e
commit
60be5d2949
10 changed files with 240 additions and 141 deletions
17
reasoning_gym/curricula/__init__.py
Normal file
17
reasoning_gym/curricula/__init__.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from .algebra import *
|
||||
from .algorithmic import *
|
||||
from .arithmetic import *
|
||||
from .code import *
|
||||
from .cognition import *
|
||||
from .games import *
|
||||
from .geometry import *
|
||||
from .graphs import *
|
||||
from .logic import *
|
||||
|
||||
# Re-export all Curriculum classes
|
||||
__all__ = []
|
||||
for module in [
|
||||
algebra, algorithmic, arithmetic, code,
|
||||
cognition, games, geometry, graphs, logic
|
||||
]:
|
||||
__all__.extend([name for name in module.__all__ if name.endswith('Curriculum')])
|
||||
Loading…
Add table
Add a link
Reference in a new issue