From 87b9ed6ecdf2753b6060216b813e3008a75ef388 Mon Sep 17 00:00:00 2001 From: Quentin Fuxa Date: Tue, 12 Aug 2025 18:34:37 +0200 Subject: [PATCH] nonspeech_prob from 1 to 0.5 --- whisperlivekit/simul_whisper/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisperlivekit/simul_whisper/config.py b/whisperlivekit/simul_whisper/config.py index d015da2..20ce856 100644 --- a/whisperlivekit/simul_whisper/config.py +++ b/whisperlivekit/simul_whisper/config.py @@ -8,7 +8,7 @@ class SimulWhisperConfig: '''Options that are common for all simul policies that could be implemented in SimulWhisper.''' model_path: str language: str = field(default="zh") - nonspeech_prob: float = 1.0 + nonspeech_prob: float = 0.5 audio_min_len: float = 1.0 decoder_type: Literal["greedy","beam"] = "greedy" beam_size: int = 5