mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
refactor: Update default sentence length constraints to 3-20 words
This commit is contained in:
parent
b03b02f3a5
commit
49533e10ad
1 changed files with 2 additions and 2 deletions
|
|
@ -11,8 +11,8 @@ from ..factory import ProceduralDataset, register_dataset
|
|||
@dataclass
|
||||
class SentenceReorderingConfig:
|
||||
"""Configuration for sentence reordering task generation"""
|
||||
min_words_in_sentence: int = 10
|
||||
max_words_in_sentence: int = 64
|
||||
min_words_in_sentence: int = 3
|
||||
max_words_in_sentence: int = 20
|
||||
seed: Optional[int] = None
|
||||
size: int = 500
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue