Skip to content

Commit

Permalink
Reduce precision from 28 to 6 in DecimalArithmeticDataset
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskoepf committed Mar 3, 2025
1 parent 49db4ed commit c236825
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reasoning_gym/arithmetic/decimal_arithmetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
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
Expand Down

0 comments on commit c236825

Please sign in to comment.