mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-29 17:35:16 +00:00
Still experimenting
This commit is contained in:
parent
b0e70008ea
commit
b203353751
357 changed files with 2888 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "Teddy finished half of a 500 piece puzzle, and then started and finished another 500 piece puzzle within an hour. How many puzzle pieces did Teddy place during that hour?",
|
||||
"answer": "Teddy did 1/2 * 500 pieces = <<500/2=250>>250 pieces.\nTeddy completed 250 pieces + 500 pieces = <<250+500=750>>750 pieces.\n#### 750",
|
||||
"id_orig": 1074,
|
||||
"id_shuffled": 79,
|
||||
"question_annotated": "{name} finished {frac} of a {n1} piece puzzle, and then started and finished another {n2} piece puzzle within an hour. How many puzzle pieces did {name} place during that hour?\n\n#init:\n- name = sample(names)\n- $frac = sample(fraction_alnum)\n- $n1 = range(100, 501)\n- $n2 = range(300, 1001)\n\n#conditions:\n- is_int(n1 * frac)\n\n#answer: int(n1 * frac) + n2",
|
||||
"answer_annotated": "{name} did {frac} * {n1} pieces = <<{n1}*{frac}={int(n1*frac)}>>{int(n1*frac)} pieces.\n{name} completed {int(n1*frac)} pieces + {n2} pieces = <<{int(n1*frac)}+{n2}={int(n1*frac)+n2}>>{int(n1*frac)+n2} pieces.\n#### {int(n1*frac)+n2}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue