mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
feat: Clarify prime factorization example and answer format
This commit is contained in:
parent
c964eba5a4
commit
d4dd3cf3e3
1 changed files with 2 additions and 2 deletions
|
|
@ -68,8 +68,8 @@ class PrimeFactorizationDataset:
|
|||
answer = " × ".join(map(str, factors))
|
||||
|
||||
return {
|
||||
"question": (f"Find the prime factorization of {number}. "
|
||||
f"(Example: 12 = 2 × 2 × 3)"),
|
||||
"question": (f"Find the prime factorization of {number}. Write the factors separated by × "
|
||||
f"(Example: for 12 the answer would be: 2 × 2 × 3)"),
|
||||
"answer": answer,
|
||||
"metadata": {
|
||||
"number": number,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue