mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
14 lines
288 B
Python
14 lines
288 B
Python
"""
|
|
Cognition tasks for training reasoning capabilities:
|
|
- Code Analysis
|
|
- Code Interpretation
|
|
- Code Execution
|
|
"""
|
|
|
|
from .family_relationships import FamilyRelationshipsConfig, FamilyRelationshipsDataset
|
|
from .bf import BFConfig, BFDataset
|
|
|
|
__all__ = [
|
|
"BFConfig",
|
|
"BFDataset"
|
|
]
|