mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +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
|
|
@ -144,5 +144,5 @@ def test_basic_arithmetic_curriculum():
|
|||
curriculum.increment_attr_level("num_terms")
|
||||
curriculum.increment_attr_level("num_digits")
|
||||
upper_bound_cfg = curriculum.generate_configuration(base_value)
|
||||
assert upper_bound_cfg.min_terms == 2 and upper_bound_cfg.max_terms == 20
|
||||
assert upper_bound_cfg.min_terms == 2 and upper_bound_cfg.max_terms == 15
|
||||
assert upper_bound_cfg.min_digits == 1 and upper_bound_cfg.max_digits == 10
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue