From 8766ecb8028870046c08fa48c44f6ac9297057df Mon Sep 17 00:00:00 2001 From: "Nat Kershaw (MSFT)" Date: Tue, 30 May 2023 15:28:15 -0700 Subject: [PATCH] Update with review comment --- tutorials/whisper_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/whisper_e2e.py b/tutorials/whisper_e2e.py index a7cf808bd..e74f2cc00 100644 --- a/tutorials/whisper_e2e.py +++ b/tutorials/whisper_e2e.py @@ -234,7 +234,7 @@ def postprocessing(token_ids, hf_processor): if __name__ == '__main__': parser = argparse.ArgumentParser() - parser.add_argument("-a", "--audio", required=True, help="Audio file input used to export model") + parser.add_argument("-a", "--audio", required=True, help="Audio file input used to test exported model") parser.add_argument("-m", "--model", required=True, help="Whisper model with beam search onnx file. Filename must be named whisper-.*_beamsearch.onnx") args = parser.parse_args()