From de8162dc6a2700a6822e978e70844c1785929ae9 Mon Sep 17 00:00:00 2001 From: Andreas Koepf Date: Sun, 16 Feb 2025 16:38:43 +0100 Subject: [PATCH] cryptarithm change defaults: size=500, include_example=True --- reasoning_gym/algorithmic/cryptarithm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reasoning_gym/algorithmic/cryptarithm.py b/reasoning_gym/algorithmic/cryptarithm.py index 0f2d385c..7075e9ec 100644 --- a/reasoning_gym/algorithmic/cryptarithm.py +++ b/reasoning_gym/algorithmic/cryptarithm.py @@ -36,9 +36,9 @@ class CryptarithmConfig: min_words: int = 2 # Minimum number of addends max_words: int = 3 # Maximum number of addends allow_leading_zero: bool = False + include_example: bool = True seed: Optional[int] = None - size: int = 20 # Number of puzzle instances to generate - include_example: bool = False + size: int = 500 # Number of puzzle instances to generate def validate(self): """Validate configuration parameters."""