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