From 7b582f3f9feb18ce0eee754085599f4044903d83 Mon Sep 17 00:00:00 2001 From: Quentin Fuxa Date: Thu, 13 Mar 2025 12:01:08 +0100 Subject: [PATCH] change default model to tiny, and vad activated by default --- whisper_streaming_custom/whisper_online.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whisper_streaming_custom/whisper_online.py b/whisper_streaming_custom/whisper_online.py index 29e5a22..147749f 100644 --- a/whisper_streaming_custom/whisper_online.py +++ b/whisper_streaming_custom/whisper_online.py @@ -77,7 +77,7 @@ def add_shared_args(parser): parser.add_argument( "--model", type=str, - default="large-v3-turbo", + default="tiny", choices="tiny.en,tiny,base.en,base,small.en,small,medium.en,medium,large-v1,large-v2,large-v3,large,large-v3-turbo".split( "," ), @@ -128,7 +128,7 @@ def add_shared_args(parser): parser.add_argument( "--vad", action="store_true", - default=False, + default=True, help="Use VAD = voice activity detection, with the default parameters.", ) parser.add_argument(