From 676300fd3646a18f0c20d3e55d8a513f3a04e0d4 Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Tue, 6 Apr 2021 13:57:07 -0700 Subject: [PATCH] [examples] fix white space these get concatenated without whitespace, so fix it --- examples/language-modeling/run_clm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/language-modeling/run_clm.py b/examples/language-modeling/run_clm.py index 4635703b9db0..e322cc2b1747 100755 --- a/examples/language-modeling/run_clm.py +++ b/examples/language-modeling/run_clm.py @@ -136,8 +136,8 @@ class DataTrainingArguments: block_size: Optional[int] = field( default=None, metadata={ - "help": "Optional input sequence length after tokenization." - "The training dataset will be truncated in block of this size for training." + "help": "Optional input sequence length after tokenization. " + "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)." }, )