mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-05-03 17:53:26 +00:00
fix: Register missing coin_flip (#507)
* register missing coin_flip * lint
This commit is contained in:
parent
3fcb8642c6
commit
2f9eaee32a
3 changed files with 106 additions and 82 deletions
|
|
@ -2,7 +2,21 @@
|
|||
Reasoning Gym - A library of procedural dataset generators for training reasoning models
|
||||
"""
|
||||
|
||||
from . import algebra, algorithmic, arc, arithmetic, code, cognition, data, games, geometry, graphs, induction, logic
|
||||
from . import (
|
||||
algebra,
|
||||
algorithmic,
|
||||
arc,
|
||||
arithmetic,
|
||||
code,
|
||||
cognition,
|
||||
data,
|
||||
games,
|
||||
geometry,
|
||||
graphs,
|
||||
induction,
|
||||
logic,
|
||||
probability,
|
||||
)
|
||||
from .factory import create_dataset, get_score_answer_fn, register_dataset
|
||||
|
||||
__version__ = "0.1.19"
|
||||
|
|
@ -19,6 +33,7 @@ __all__ = [
|
|||
"graphs",
|
||||
"logic",
|
||||
"induction",
|
||||
"probability",
|
||||
"create_dataset",
|
||||
"register_dataset",
|
||||
"get_score_answer_fn",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue