mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +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
|
|
@ -79,10 +79,10 @@ def test_rubiks_cube_curriculum():
|
|||
curriculum.increment_attr_level("scramble_steps")
|
||||
increased_cfg = curriculum.generate_configuration(base_value)
|
||||
assert increased_cfg.cube_size == 4
|
||||
assert increased_cfg.min_scramble_steps == 3 and increased_cfg.max_scramble_steps == 50
|
||||
assert increased_cfg.min_scramble_steps == 3 and increased_cfg.max_scramble_steps == 25
|
||||
|
||||
# test decrementing attribute level for cube_size again
|
||||
curriculum.decrement_attr_level("cube_size")
|
||||
partially_decreased_cfg = curriculum.generate_configuration(base_value)
|
||||
assert partially_decreased_cfg.cube_size == 3
|
||||
assert partially_decreased_cfg.min_scramble_steps == 3 and partially_decreased_cfg.max_scramble_steps == 50
|
||||
assert partially_decreased_cfg.min_scramble_steps == 3 and partially_decreased_cfg.max_scramble_steps == 25
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue