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
|
|
@ -86,14 +86,14 @@ class LCMCurriculum(BaseCurriculum):
|
|||
self._define_attributes(
|
||||
RangeAttributeDefinition(
|
||||
name="numbers",
|
||||
levels=[2, 4, 6, 8, 10],
|
||||
levels=[2, 3, 4, 5],
|
||||
description="Number of integers to find LCM of",
|
||||
lower_field_name="min_numbers",
|
||||
upper_field_name="max_numbers",
|
||||
),
|
||||
RangeAttributeDefinition(
|
||||
name="value",
|
||||
levels=[1, 100, 500, 1000, 5000],
|
||||
levels=[100, 1000, 10000, 100000],
|
||||
description="Range of values for each integer",
|
||||
lower_field_name="min_value",
|
||||
upper_field_name="max_value",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue