feat: Add word sorting dataset with configurable text transformations

This commit is contained in:
Andreas Koepf (aider) 2025-01-26 16:11:32 +01:00
parent 49533e10ad
commit 648ad26bd3

View file

@ -15,6 +15,7 @@ from .number_sorting import NumberSortingConfig, NumberSortingDataset
from .sentence_reordering import SentenceReorderingConfig, SentenceReorderingDataset
from .spell_backward import SpellBackwardConfig, SpellBackwardDataset
from .word_sequence_reversal import WordSequenceReversalConfig, WordSequenceReversalDataset
from .word_sorting import WordSortingConfig, WordSortingDataset, TextTransformation
__all__ = [
"SpellBackwardConfig",
@ -35,4 +36,7 @@ __all__ = [
"SentenceReorderingDataset",
"WordSequenceReversalConfig",
"WordSequenceReversalDataset",
"WordSortingConfig",
"WordSortingDataset",
"TextTransformation",
]