From 256f3f1320ce6a44b77c5625105b601a853dbf8f Mon Sep 17 00:00:00 2001 From: SWivid Date: Mon, 21 Oct 2024 22:17:44 +0800 Subject: [PATCH] Update. change asr pipeline back to whisper-large-v3-turbo --- model/utils_infer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/utils_infer.py b/model/utils_infer.py index a7a510889..1cc2c98df 100644 --- a/model/utils_infer.py +++ b/model/utils_infer.py @@ -99,7 +99,7 @@ def initialize_asr_pipeline(device=device): asr_pipe = pipeline( "automatic-speech-recognition", - model="openai/whisper-large", + model="openai/whisper-large-v3-turbo", torch_dtype=torch.float16, device=device, )