From 19732cc07a653280e4ada179d195551b1249eab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20REMY?= Date: Wed, 26 Jan 2022 16:19:38 +0100 Subject: [PATCH] Fix 'eval_split_name' described as defaulting to 'train' (#15348) The default is correct (`test`) but the description is not. --- .../pytorch/speech-recognition/run_speech_recognition_ctc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py index 0c460c3f02..028101ab0f 100755 --- a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py +++ b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py @@ -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(