mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
feat: Add word reversal task generator with configurable word count
This commit is contained in:
parent
4f198bfb80
commit
5e324f98fa
2 changed files with 95 additions and 1 deletions
|
|
@ -7,5 +7,13 @@ Algorithmic tasks for training reasoning capabilities:
|
|||
"""
|
||||
|
||||
from .letter_counting import LetterCountingConfig, LetterCountingDataset, letter_counting_dataset
|
||||
from .word_reversal import WordReversalConfig, WordReversalDataset, word_reversal_dataset
|
||||
|
||||
__all__ = ["LetterCountingConfig", "LetterCountingDataset", "letter_counting_dataset"]
|
||||
__all__ = [
|
||||
"LetterCountingConfig",
|
||||
"LetterCountingDataset",
|
||||
"letter_counting_dataset",
|
||||
"WordReversalConfig",
|
||||
"WordReversalDataset",
|
||||
"word_reversal_dataset"
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue