Fixed documentation typo, parameter name is evaluation_strategy, not eval_strategy (#17669)

Co-authored-by: Saint <saint@st-mini.local>
This commit is contained in:
Saint 2022-06-13 08:02:06 -04:00 committed by GitHub
parent 66336dc183
commit c1daf724ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -305,8 +305,8 @@ class TrainingArguments:
<Tip>
When set to `True`, the parameters `save_strategy` needs to be the same as `eval_strategy`, and in the case
it is "steps", `save_steps` must be a round multiple of `eval_steps`.
When set to `True`, the parameters `save_strategy` needs to be the same as `evaluation_strategy`, and in
the case it is "steps", `save_steps` must be a round multiple of `eval_steps`.
</Tip>