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