mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
feat: Clarify word sorting instructions with ASCII/Unicode ordering and output format
This commit is contained in:
parent
9bb5a94c29
commit
f91417aaa9
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ class WordSortingDataset(ProceduralDataset):
|
|||
answer = asc_words if is_ascending else desc_words
|
||||
|
||||
return {
|
||||
"question": f"Sort these words in {direction} order: {', '.join(transformed_words)}",
|
||||
"question": f"Sort these words in {direction} order (using ASCII/Unicode ordering) and return them as a comma-separated list: {', '.join(transformed_words)}",
|
||||
"answer": ", ".join(answer),
|
||||
"metadata": {
|
||||
"original_words": original_words,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue