mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-22 16:49:06 +00:00
Rename ArithmeticDataset to BasicArithmeticDataset
This commit is contained in:
parent
4817c33b65
commit
0e9250bce0
7 changed files with 27 additions and 27 deletions
|
|
@ -19,7 +19,7 @@ class FractionSimplificationConfig:
|
|||
|
||||
def validate(self):
|
||||
"""Validate configuration parameters"""
|
||||
assert self.min_value >= 0, "min_value must be positive"
|
||||
assert self.min_value > 0, "min_value must be positive"
|
||||
assert self.max_value > self.min_value, "max_value must be > min_value"
|
||||
assert self.min_factor >= 1, "min_factor must be at least 1"
|
||||
assert self.max_factor >= self.min_factor, "max_factor must be >= min_factor"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue