From fce0c4fa3fdeef196afca98c375c947a8d155936 Mon Sep 17 00:00:00 2001 From: Cavit Erginsoy Date: Sat, 1 Feb 2025 14:27:06 +0000 Subject: [PATCH] refactor: Clarify word ladder question --- reasoning_gym/algorithmic/word_ladder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reasoning_gym/algorithmic/word_ladder.py b/reasoning_gym/algorithmic/word_ladder.py index 8f7390d2..c3a21520 100644 --- a/reasoning_gym/algorithmic/word_ladder.py +++ b/reasoning_gym/algorithmic/word_ladder.py @@ -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,