mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
fix question templates
This commit is contained in:
parent
72fcb36cb4
commit
2cbaab2918
6 changed files with 606 additions and 134 deletions
|
|
@ -57,9 +57,7 @@ class GCDDataset(ProceduralDataset):
|
|||
numbers_str = ", ".join(str(n) for n in numbers)
|
||||
|
||||
return {
|
||||
"question": f"""Find the Greatest Common Divisor (GCD) of these numbers: {numbers_str}. Give only the
|
||||
GCD as your final answer.
|
||||
""",
|
||||
"question": f"Find the Greatest Common Divisor (GCD) of these numbers: {numbers_str}. Give only the GCD as your final answer.",
|
||||
"answer": str(result),
|
||||
"metadata": {"numbers": numbers, "result": result},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue