@@ -48,12 +48,19 @@ class TrainingArguments:
48
48
If :obj:`True`, overwrite the content of the output directory. Use this to continue training if
49
49
:obj:`output_dir` points to a checkpoint directory.
50
50
do_train (:obj:`bool`, `optional`, defaults to :obj:`False`):
51
- Whether to run training or not.
51
+ Whether to run training or not. This argument is not directly used by :class:`~transformers.Trainer`, it's
52
+ intended to be used by your training/evaluation scripts instead. See the `example scripts
53
+ <https://github.com/huggingface/transformers/tree/master/examples>`__ for more details.
52
54
do_eval (:obj:`bool`, `optional`):
53
- Whether to run evaluation on the dev set or not. Will default to :obj:`evaluation_strategy` different from
54
- :obj:`"no"`.
55
+ Whether to run evaluation on the dev set or not. Will be set to :obj:`True` if :obj:`evaluation_strategy`
56
+ is different from :obj:`"no"`. This argument is not directly used by :class:`~transformers.Trainer`, it's
57
+ intended to be used by your training/evaluation scripts instead. See the `example scripts
58
+ <https://github.com/huggingface/transformers/tree/master/examples>`__ for more details.
55
59
do_predict (:obj:`bool`, `optional`, defaults to :obj:`False`):
56
- Whether to run predictions on the test set or not.
60
+ Whether to run predictions on the test set or not. This argument is not directly used by
61
+ :class:`~transformers.Trainer`, it's intended to be used by your training/evaluation scripts instead. See
62
+ the `example scripts <https://github.com/huggingface/transformers/tree/master/examples>`__ for more
63
+ details.
57
64
evaluation_strategy (:obj:`str` or :class:`~transformers.trainer_utils.EvaluationStrategy`, `optional`, defaults to :obj:`"no"`):
58
65
The evaluation strategy to adopt during training. Possible values are:
59
66
0 commit comments