mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-29 17:35:16 +00:00
refactor: Change word sorting answer format from list string to comma-separated string
This commit is contained in:
parent
c3b6af35f0
commit
557fac66bf
2 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ class WordSortingDataset(ProceduralDataset):
|
|||
|
||||
return {
|
||||
"question": f"Sort these words in {direction} order: {', '.join(transformed_words)}",
|
||||
"answer": str(answer),
|
||||
"answer": ", ".join(answer),
|
||||
"metadata": {
|
||||
"original_words": original_words,
|
||||
"transformed_words": transformed_words,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue