From 5638d86c97041de31217e058e411034143e9c882 Mon Sep 17 00:00:00 2001 From: yum Date: Thu, 14 Mar 2024 18:03:54 -0700 Subject: Fix distilled models These were broken due to some logic errors in the codepath which acquires models from huggingface. Distilled large-v2 seems promising as a new default model. --- GUI/GUI/GUI/Frame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'GUI') diff --git a/GUI/GUI/GUI/Frame.cpp b/GUI/GUI/GUI/Frame.cpp index 66c3d4e..908a54c 100644 --- a/GUI/GUI/GUI/Frame.cpp +++ b/GUI/GUI/GUI/Frame.cpp @@ -461,12 +461,12 @@ namespace { "base", "small.en", "small", - "yumfood/whisper_distil_medium_en_ct2", + "Systran/faster-distil-whisper-medium.en", "medium.en", "medium", + "Systran/faster-distil-whisper-large-v2", "large-v1", "large-v2", - "yumfood/whisper_distil_large_v2_ct2", }; const size_t kNumModelChoices = sizeof(kModelChoices) / sizeof(kModelChoices[0]); constexpr int kModelDefault = 2; // base.en -- cgit v1.2.3