mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-23 16:55:05 +00:00
add difficulty where possible (#274)
This commit is contained in:
parent
8790c6be00
commit
a48ff14507
6 changed files with 46 additions and 14 deletions
|
|
@ -42,7 +42,12 @@ class CountBitsDataset(ProceduralDataset):
|
|||
return {
|
||||
"question": QUESTION_TEMPLATE.format(number=number),
|
||||
"answer": str(answer),
|
||||
"metadata": {"number": number, "solution": answer, "binary": binary},
|
||||
"metadata": {
|
||||
"number": number,
|
||||
"solution": answer,
|
||||
"binary": binary,
|
||||
"difficulty": {"n": number},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue