mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-24 17:05:03 +00:00
Reduce precision from 28 to 6 in DecimalArithmeticDataset (#256)
This commit is contained in:
parent
68ecdca2bb
commit
c0cf237474
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