mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
11 lines
316 B
Python
11 lines
316 B
Python
"""
|
|
Cognition tasks for training reasoning capabilities:
|
|
- Pattern recognition
|
|
- Sequence completion
|
|
- Logical reasoning
|
|
- Working memory
|
|
"""
|
|
|
|
from .number_sequences import NumberSequenceConfig, NumberSequenceDataset, sequence_dataset
|
|
|
|
__all__ = ["NumberSequenceDataset", "NumberSequenceConfig", "sequence_dataset"]
|