Skip to content

Commit

Permalink
Fix 'eval_split_name' described as defaulting to 'train' (huggingface…
Browse files Browse the repository at this point in the history
…#15348)

The default is correct (`test`) but the description is not.
  • Loading branch information
FremyCompany authored Jan 26, 2022
1 parent 5d8b986 commit 19732cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class DataTrainingArguments:
eval_split_name: str = field(
default="test",
metadata={
"help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
"help": "The name of the training data set split to use (via the datasets library). Defaults to 'test'"
},
)
audio_column_name: str = field(
Expand Down

0 comments on commit 19732cc

Please sign in to comment.