mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
Revert "Restructure {reasoning_gym, tests}/{core, exercises, curricula}"
This reverts commit 10dbb374b0.
This commit is contained in:
parent
b756f26c09
commit
4c3ae0aebf
109 changed files with 0 additions and 0 deletions
69
reasoning_gym/arithmetic/lcm.py
Normal file
69
reasoning_gym/arithmetic/lcm.py
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
"""Least Common Multiple (LCM) task generator"""
|
||||
|
||||
from dataclasses import dataclass
|
||||
from functools import reduce
|
||||
from math import lcm
|
||||
from random import Random
|
||||
from typing import List, Optional, Tuple
|
||||
|
||||
from ..factory import ProceduralDataset, register_dataset
|
||||
|
||||
|
||||
@dataclass
|
||||
class LCMConfig:
|
||||
"""Configuration for LCM task generation"""
|
||||
|
||||
min_numbers: int = 2 # Minimum numbers to find LCM of
|
||||
max_numbers: int = 2 # Maximum numbers to find LCM of
|
||||
min_value: int = 1 # Minimum value for each number
|
||||
max_value: int = 100 # Maximum value for each number (kept smaller than GCD default since LCM grows fast)
|
||||
seed: Optional[int] = None
|
||||
size: int = 500 # Virtual dataset size
|
||||
|
||||
def validate(self) -> None:
|
||||
"""Validate configuration parameters"""
|
||||
assert self.min_numbers >= 2, "min_numbers must be at least 2"
|
||||
assert self.max_numbers >= self.min_numbers, "max_numbers must be >= min_numbers"
|
||||
assert self.min_value >= 1, "min_value must be positive"
|
||||
assert self.max_value > self.min_value, "max_value must be > min_value"
|
||||
|
||||
|
||||
class LCMDataset(ProceduralDataset):
|
||||
"""Generates Least Common Multiple (LCM) tasks"""
|
||||
|
||||
def __init__(self, config: LCMConfig):
|
||||
super().__init__(config=config, seed=config.seed, size=config.size)
|
||||
|
||||
def _generate_numbers(self, rng: Random) -> Tuple[List[int], int]:
|
||||
"""Generate a list of random positive integers and their LCM.
|
||||
Will try up to 3 times to find numbers with LCM < product."""
|
||||
|
||||
def calculate_product(nums: List[int]) -> int:
|
||||
return reduce(lambda x, y: x * y, nums)
|
||||
|
||||
# Try up to 3 times to get LCM < product
|
||||
for _ in range(3):
|
||||
num_count = rng.randint(self.config.min_numbers, self.config.max_numbers)
|
||||
numbers = [rng.randint(self.config.min_value, self.config.max_value) for _ in range(num_count)]
|
||||
result = reduce(lcm, numbers)
|
||||
if result < calculate_product(numbers):
|
||||
break
|
||||
|
||||
# Return the last generated numbers, whether they met the criteria or not
|
||||
return numbers, result
|
||||
|
||||
def __getitem__(self, idx: int) -> dict:
|
||||
"""Generate a single LCM task"""
|
||||
rng = Random(self.seed + idx)
|
||||
|
||||
numbers, result = self._generate_numbers(rng)
|
||||
numbers_str = ", ".join(str(n) for n in numbers)
|
||||
|
||||
return {
|
||||
"question": f"Find the Least Common Multiple (LCM) of these numbers: {numbers_str}",
|
||||
"answer": str(result),
|
||||
"metadata": {"numbers": numbers, "result": result},
|
||||
}
|
||||
|
||||
|
||||
register_dataset("lcm", LCMDataset, LCMConfig)
|
||||
Loading…
Add table
Add a link
Reference in a new issue