Commit graph

89 commits

Author SHA1 Message Date
Andreas Koepf
20069b2a7d formatting 2025-01-24 10:34:07 +01:00
Andreas Koepf
98988c8481 Rename ArithmeticDataset to BasicArithmeticDataset 2025-01-24 10:31:26 +01:00
Andreas Koepf (aider)
44fd0d4a25 refactor: Inherit LegCountingDataset from ProceduralDataset 2025-01-24 10:19:11 +01:00
Andreas Koepf
1f93058834 refactor: Simplify imports in leg_counting.py 2025-01-24 10:19:10 +01:00
Andreas Koepf (aider)
719d760eea feat: Add return type annotation to ProceduralDataset.__next__() 2025-01-24 10:16:27 +01:00
Andreas Koepf (aider)
2a6a9655d7 feat: Add Sized and Iterable base classes to ProceduralDataset 2025-01-24 10:14:42 +01:00
Andreas Koepf (aider)
95d9974911 refactor: Rename ArithmeticDataset to BasicArithmeticDataset 2025-01-24 10:02:02 +01:00
Andreas Koepf (aider)
1b556b70f7 refactor: Inherit ArithmeticDataset from ProceduralDataset base class 2025-01-24 10:00:19 +01:00
Andreas Koepf (aider)
ad69954b6e refactor: Inherit PrimeFactorizationDataset from ProceduralDataset base class 2025-01-24 09:59:08 +01:00
Andreas Koepf (aider)
d191e78a28 refactor: Inherit ChainSum from ProceduralDataset base class 2025-01-24 09:57:26 +01:00
Andreas Koepf (aider)
0dc19b831c refactor: Inherit LCMDataset from ProceduralDataset base class 2025-01-24 09:56:19 +01:00
Andreas Koepf (aider)
c3170fd5f1 refactor: Inherit GCDDataset from ProceduralDataset base class 2025-01-24 09:55:14 +01:00
Andreas Koepf (aider)
018bdcef6f feat: Add ProceduralDataset abstract base class for dataset generators 2025-01-24 09:51:04 +01:00
Andreas Koepf
eb24c065ac refactor: Update fraction simplification config with expanded value ranges 2025-01-24 09:51:03 +01:00
Andreas Koepf (aider)
2585f92e86 refactor: Replace if/elif chain with match/case in _format_fraction 2025-01-24 09:43:13 +01:00
Andreas Koepf (aider)
e64e82c9e2 feat: Update fraction simplification config to use Sequence and default tuple for styles 2025-01-24 09:42:07 +01:00
Andreas Koepf (aider)
9826d98fcf feat: Add configurable formatting styles for fraction simplification dataset 2025-01-24 09:39:21 +01:00
Andreas Koepf (aider)
f157470864 feat: Ensure numerator is always smaller than denominator in fraction generation 2025-01-24 09:35:02 +01:00
Andreas Koepf (aider)
2a30cab79e refactor: Simplify fraction simplification dataset metadata 2025-01-24 09:30:12 +01:00
Andreas Koepf (aider)
17b7c3a1b1 feat: Add multiple LaTeX fraction formatting styles to FractionSimplificationDataset 2025-01-24 09:28:58 +01:00
Andreas Koepf
545c9d998b add gcd default max_value to 10_000 2025-01-24 09:18:46 +01:00
Andreas Koepf (aider)
7cf3eb5f26 fix: Ensure simplified fraction values stay within configured bounds 2025-01-24 09:11:07 +01:00
Andreas Koepf (aider)
1220118d95 feat: Add fraction simplification dataset to arithmetic module 2025-01-24 09:10:15 +01:00
Andreas Koepf (aider)
387740b9bd feat: Modify LCM dataset to generate numbers with LCM less than their product 2025-01-24 09:02:57 +01:00
Andreas Koepf (aider)
e2957a744d feat: Enhance GCD dataset to retry generating numbers with GCD > 1 2025-01-24 08:58:59 +01:00
Andreas Koepf (aider)
8d369e6ced feat: Add LCM dataset generator for arithmetic reasoning tasks 2025-01-24 08:55:16 +01:00
Andreas Koepf (aider)
2bc9319aa6 feat: Add GCD dataset imports to arithmetic module 2025-01-24 08:51:29 +01:00
Andreas Koepf (aider)
1fc5f2eb8f feat: Add GCD dataset generator for finding GCD of multiple integers 2025-01-24 08:47:19 +01:00
Andreas Koepf (aider)
0406b26c4c feat: Add NumberSortingDataset to algorithmic package with configuration and tests 2025-01-23 23:28:15 +01:00
Andreas Koepf (aider)
4c6bcb763f fix: Improve mini sudoku board generation and empty cell handling 2025-01-23 23:16:59 +01:00
Andreas Koepf (aider)
877057421d feat: Add mini sudoku puzzle generator to games package 2025-01-23 23:14:51 +01:00
Andreas Koepf (aider)
c4b0923157 feat: Add Sudoku puzzle generator with configurable difficulty 2025-01-23 22:55:09 +01:00
Andreas Koepf (aider)
d4dd3cf3e3 feat: Clarify prime factorization example and answer format 2025-01-23 22:50:00 +01:00
Andreas Koepf (aider)
c964eba5a4 feat: Add prime factorization task generator with configurable range and example 2025-01-23 22:46:58 +01:00
Andreas Koepf (aider)
45330da122 refactor: Rename chain_sum to chain_sum_dataset for consistency 2025-01-23 22:27:48 +01:00
Andreas Koepf (aider)
ed71ac20cb feat: Update arithmetic __init__.py with docstring and additional exports 2025-01-23 22:26:51 +01:00
Andreas Koepf (aider)
00219aa3a3 feat: Add arithmetic dataset functions to algorithmic package __init__ 2025-01-23 22:24:59 +01:00
Andreas Koepf (aider)
40c3c9d434 feat: Add leg counting imports and exports to arithmetic package 2025-01-23 22:22:12 +01:00
Andreas Koepf (aider)
8db31dc87c refactor: Remove centipede from ANIMALS due to variable leg count 2025-01-23 22:18:59 +01:00
Andreas Koepf (aider)
23d420bbfe refactor: Sort ANIMALS dictionary by leg count with alphabetical order within groups 2025-01-23 22:17:27 +01:00
Andreas Koepf (aider)
84951f5730 feat: Add more 4-legged and 6-legged animals to ANIMALS dictionary 2025-01-23 22:16:08 +01:00
Andreas Koepf (aider)
0e4b4bb602 feat: Add more diverse animals to leg counting dataset 2025-01-23 22:14:15 +01:00
Andreas Koepf (aider)
b0d4ffb07b feat: Add leg counting arithmetic task generator with animal leg counting functionality 2025-01-23 22:08:42 +01:00
Andreas Koepf (aider)
2226b164c7 feat: Add hint for lowercase letters in base conversion questions for bases > 10 2025-01-23 21:49:08 +01:00
Andreas Koepf (aider)
4b2a9f2655 refactor: Remove unnecessary rstrip('L') calls in base conversion 2025-01-23 21:46:06 +01:00
Andreas Koepf (aider)
d9a6295dc0 fix: Strip whitespace from base conversion source and target representations 2025-01-23 21:41:20 +01:00
Andreas Koepf (aider)
64de76a488 feat: Add base conversion task with configurable base ranges 2025-01-23 21:37:40 +01:00
Andreas Koepf (aider)
fc7eb1d5bc feat: Add number filtering task to algorithmic package 2025-01-23 20:39:50 +01:00
Andreas Koepf (aider)
b993c13d5f feat: Add word reversal task generator with configurable word count 2025-01-23 20:25:36 +01:00
Andreas Koepf (aider)
703fcda3cd feat: Add algorithmic and data modules to reasoning_gym package 2025-01-23 19:21:57 +01:00