"docs/vscode:/vscode.git/clone" did not exist on "8aa01d2a6db0059077ecdd4e5948e6ffe51340ee"
Unverified Commit 19732cc0 authored by François REMY's avatar François REMY Committed by GitHub
Browse files

Fix 'eval_split_name' described as defaulting to 'train' (#15348)

The default is correct (`test`) but the description is not.
parent 5d8b9860
...@@ -152,7 +152,7 @@ class DataTrainingArguments: ...@@ -152,7 +152,7 @@ class DataTrainingArguments:
eval_split_name: str = field( eval_split_name: str = field(
default="test", default="test",
metadata={ 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( audio_column_name: str = field(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment