[examples] fix white space (#11099)

these get concatenated without whitespace, so fix it
This commit is contained in:
Stas Bekman
2021-04-07 06:20:58 -07:00
committed by GitHub
parent c9035e4537
commit 424419f549

View File

@@ -136,8 +136,8 @@ class DataTrainingArguments:
block_size: Optional[int] = field( block_size: Optional[int] = field(
default=None, default=None,
metadata={ metadata={
"help": "Optional input sequence length after tokenization." "help": "Optional input sequence length after tokenization. "
"The training dataset will be truncated in block of this size for training." "The training dataset will be truncated in block of this size for training. "
"Default to the model max input length for single sentence inputs (take into account special tokens)." "Default to the model max input length for single sentence inputs (take into account special tokens)."
}, },
) )