mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-23 16:55:05 +00:00
fix(curriculum): Make boundaries in curriculum more sensible (#407)
* init * fix tests * unify codeio * filtered for libraries not present in reasoning-gym * fix more bounds * puzzle24 * knight swap curriculum * fix number sorting * fix attributes * add validation of config in creation of dataset * dry run for instantiating and validating the datasets * remove unused imports * fix curriculum tests to reference newly updated attribute names
This commit is contained in:
parent
7853263650
commit
dced3bfc45
132 changed files with 1226 additions and 347 deletions
|
|
@ -163,31 +163,31 @@ class ModuloGridCurriculum(BaseCurriculum):
|
|||
ScalarAttributeDefinition(
|
||||
name="size_x",
|
||||
field_name="size_x",
|
||||
levels=[20, 30, 50, 75],
|
||||
levels=[20, 40, 60, 80],
|
||||
description="Size x",
|
||||
),
|
||||
ScalarAttributeDefinition(
|
||||
name="size_y",
|
||||
field_name="size_y",
|
||||
levels=[20, 30, 50, 75],
|
||||
levels=[20, 40, 60, 80],
|
||||
description="Size y",
|
||||
),
|
||||
ScalarAttributeDefinition(
|
||||
name="max_holes",
|
||||
field_name="max_holes",
|
||||
levels=[1, 2, 3, 5],
|
||||
levels=[1, 5, 10, 15],
|
||||
description="Max holes",
|
||||
),
|
||||
ScalarAttributeDefinition(
|
||||
name="max_divisor",
|
||||
field_name="max_divisor",
|
||||
levels=[9, 10, 11, 48],
|
||||
levels=[3, 5, 7, 15, 17, 49],
|
||||
description="Max divisor",
|
||||
),
|
||||
ScalarAttributeDefinition(
|
||||
name="max_target",
|
||||
field_name="max_target",
|
||||
levels=[7, 14, 21, 49],
|
||||
levels=[1, 0, 3, 7, 9, 21],
|
||||
description="Max target",
|
||||
),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue