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
|
|
@ -122,7 +122,6 @@ class ProductsCurriculum(BaseCurriculum):
|
|||
RangeAttributeDefinition(
|
||||
name="num_terms",
|
||||
levels=list(range(2, 13)),
|
||||
default_level=0, # Start with 2 terms
|
||||
description="Maximum number of terms in the expression",
|
||||
lower_field_name="min_terms",
|
||||
upper_field_name="max_terms",
|
||||
|
|
@ -130,7 +129,6 @@ class ProductsCurriculum(BaseCurriculum):
|
|||
RangeAttributeDefinition(
|
||||
name="num_digits",
|
||||
levels=list(range(1, 11)),
|
||||
default_level=0, # Start with 1-digit numbers
|
||||
description="Number of digits in each operand",
|
||||
lower_field_name="min_digits",
|
||||
upper_field_name="max_digits",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue