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": "A glass of milk is 8 ounces of milk. John drinks 2 glasses of milk. If milk has 3 calories per ounce how many calories did he consume?",
|
||||
"answer": "He drank 8*2=<<8*2=16>>16 ounces of milk\nSo he drank 16*3=<<16*3=48>>48 calories of milk\n#### 48",
|
||||
"id_orig": 400,
|
||||
"id_shuffled": 56,
|
||||
"question_annotated": "A {container} of {liquid} is {vol} {unit}s of {liquid}. {name} drinks {num} {container}s of {liquid}. If {liquid} has {cal} calories per {unit} how many calories did he consume?\n\n#init:\n- name = sample(names_male)\n- container = sample([\"cup\", \"bottle\", \"carton\"])\n- liquid = sample([\"juice\", \"soda\", \"sparkling water\", \"tea\", \"lemonade\"])\n- unit = sample([\"ounce\", \"mL\", \"cc\", \"oz\"])\n- $vol = range(6, 16)\n- $num = range(2, 6)\n- $cal = range(2, 10)\n\n\n#answer: vol * num * cal",
|
||||
"answer_annotated": "He drank {vol}*{num}=<<{vol}*{num}={vol*num}>>{vol*num} {unit}s of {liquid}.\nSo he drank {vol*num}*{cal}=<<{vol*num}*{cal}={vol*num*cal}>>{vol*num*cal} calories of {liquid}\n#### {vol*num*cal}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue