mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-23 16:55:05 +00:00
Reduce precision from 28 to 6 in DecimalArithmeticDataset (#256)
This commit is contained in:
parent
17f87476a3
commit
07388767a2
1 changed files with 3 additions and 3 deletions
|
|
@ -11,9 +11,9 @@ from ..factory import ProceduralDataset, register_dataset
|
|||
class DecimalArithmeticConfig:
|
||||
"""Configuration for decimal arithmetic dataset generation"""
|
||||
|
||||
min_num_decimal_places: int = 6
|
||||
max_num_decimal_places: int = 6
|
||||
precision: int = 28
|
||||
min_num_decimal_places: int = 3
|
||||
max_num_decimal_places: int = 3
|
||||
precision: int = 6
|
||||
terms: int = 6
|
||||
seed: Optional[int] = None
|
||||
size: int = 500
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue