mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
refactor: Clarify word ladder question
This commit is contained in:
parent
893ef97c2e
commit
fce0c4fa3f
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ class WordLadderDataset(ProceduralDataset):
|
|||
start, end, path = self._generate_word_pair(rng, length)
|
||||
|
||||
return {
|
||||
"question": f"Transform the word '{start}' into '{end}' by changing one letter at a time. Each step must create a valid English word (including plurals) and keep the same word length. Show the sequence of words needed.",
|
||||
"question": f"Transform the word ladder '{start}' to '{end}' by changing one letter at a time.",
|
||||
"answer": ",".join(path),
|
||||
"metadata": {
|
||||
"start_word": start,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue