From 0094eba36381da08bf4d199386e25db32f37753b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20REMY?= Date: Mon, 31 Jan 2022 13:45:11 +0100 Subject: [PATCH] Fix additional DataTrainingArguments documentation (#15408) (This is an editorial change only) --- .../pytorch/speech-recognition/run_speech_recognition_ctc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py index 20ff0b7e54..eea78f58ae 100755 --- a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py +++ b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py @@ -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(