From d6af344c9edec256496b1f9901dccf1dcbd75b44 Mon Sep 17 00:00:00 2001 From: Navjot Date: Mon, 14 Dec 2020 06:02:54 -0800 Subject: [PATCH] correct var name in TrainingArguments docstring (#9096) --- src/transformers/training_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transformers/training_args.py b/src/transformers/training_args.py index d5ad5cd426..f70afc3ff1 100644 --- a/src/transformers/training_args.py +++ b/src/transformers/training_args.py @@ -203,7 +203,7 @@ class TrainingArguments: model_parallel (:obj:`bool`, `optional`, defaults to :obj:`False`): If there are more than one devices, whether to use model parallelism to distribute the model's modules across devices or not. - ignore_skip_data (:obj:`bool`, `optional`, defaults to :obj:`False`): + ignore_data_skip (:obj:`bool`, `optional`, defaults to :obj:`False`): When resuming training, whether or not to skip the epochs and batches to get the data loading at the same stage as in the previous training. If set to :obj:`True`, the training will begin faster (as that skipping step can take a long time) but will not yield the same results as the interrupted training would have.