Skip to content

Commit 19732cc

Browse files
authored
Fix 'eval_split_name' described as defaulting to 'train' (huggingface#15348)
The default is correct (`test`) but the description is not.
1 parent 5d8b986 commit 19732cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pytorch/speech-recognition/run_speech_recognition_ctc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class DataTrainingArguments:
152152
eval_split_name: str = field(
153153
default="test",
154154
metadata={
155-
"help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
155+
"help": "The name of the training data set split to use (via the datasets library). Defaults to 'test'"
156156
},
157157
)
158158
audio_column_name: str = field(

0 commit comments

Comments
 (0)