mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-30 17:40:45 +00:00
Still experimenting
This commit is contained in:
parent
a3378bd95f
commit
ff13dc6825
357 changed files with 2888 additions and 0 deletions
8
reasoning_gym/data/gsm_data/p1/0043.json
Normal file
8
reasoning_gym/data/gsm_data/p1/0043.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "Dax went to their farm to pick some apples and found half as many bugs as ants in the garden. If there were 50 ants, calculate the total number of insects in the garden.",
|
||||
"answer": "If there were 50 ants, the total number of bugs in the garden is 1 bug/2 ants * 50 ants = 25 bugs\nThe total number of insects in the garden is 25 bugs + 50 ants = <<25+50=75>>75 insects\n#### 75",
|
||||
"id_orig": 232,
|
||||
"id_shuffled": 43,
|
||||
"question_annotated": "{name,Dax} went to their {place,farm} to pick some {fruit,apples} and found {frac,half} as many {insect1,bugs} as {insect2,ants} in the {location,garden}. {name,Dax} then found {extra,50} rabbits, {i3,10} {insect3,bees}, and {n,50} {insect2,ants}. What percentage of animals in the {location,garden} were rabbits?\n\n#init:\n- name = sample(names)\n- place = sample([\"orchard\", \"backyard\", \"greenhouse\", \"allotment\"])\n- fruit = sample([\"strawberries\", \"cherries\", \"blueberries\", \"raspberries\"])\n- location = sample([\"garden\", \"field\", \"plot\", \"patch\"])\n- insect1, insect2, insect3 = sample([\"ants\", \"beetles\", \"ladybugs\", \"grasshoppers\", \"caterpillars\", \"bees\", \"wasps\"], 3)\n- $frac = sample(fraction_alnum + multi_times)\n- $i3 = range(15, 45)\n- $n = range(4, 25)\n- $extra = range(8, 76)\n\n#conditions:\n- is_int(n * frac)\n- n * frac > 2\n- is_int(extra/(extra+i3+int((n + int(n * frac))))*100)\n\n#answer: int(extra/(extra+i3+int((n + int(n * frac))))*100)",
|
||||
"answer_annotated": "If there were {n} {insect2}, the total number of {insect1} in the {location} is {frac} * {n} {insect2} = {int(n * frac)} {insect1}\nThe total number of insects in the {location} is {int(n * frac)} {insect1} + {n} {insect2} + {i3} {insect3}= <<{int(n * frac)}+{n}+{i3}={n + i3+ int(n * frac)}>>{n + i3+int(n * frac)} insects.\nThe percentage of rabbits is {extra}/{extra+n+i3+ int(n * frac)} * 100 = {int(extra/int((extra+i3+n + int(n * frac)))*100)}\n#### {int(extra/(extra+i3+int((n + int(n * frac))))*100)}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue