Fix additional DataTrainingArguments documentation (#15408)

(This is an editorial change only)
This commit is contained in:
François REMY
2022-01-31 13:45:11 +01:00
committed by GitHub
parent ee5de66349
commit 0094eba363

View File

@@ -146,13 +146,13 @@ class DataTrainingArguments:
train_split_name: str = field(
default="train+validation",
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 'train+validation'"
},
)
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 'test'"
"help": "The name of the evaluation data set split to use (via the datasets library). Defaults to 'test'"
},
)
audio_column_name: str = field(