Unverified Commit 424419f5 authored by Stas Bekman's avatar Stas Bekman Committed by GitHub
Browse files

[examples] fix white space (#11099)

these get concatenated without whitespace, so fix it
parent c9035e45
...@@ -136,8 +136,8 @@ class DataTrainingArguments: ...@@ -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)."
}, },
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment