diff options
| author | yum <yum.food.vr@gmail.com> | 2024-03-14 18:03:54 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-03-14 18:03:54 -0700 |
| commit | 5638d86c97041de31217e058e411034143e9c882 (patch) | |
| tree | dc90d20f28437e97fded97aeb05b724ff75c594c /GUI | |
| parent | cdc079fb59832fce46708df36ac80ede6d2bd046 (diff) | |
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.
Diffstat (limited to 'GUI')
| -rw-r--r-- | GUI/GUI/GUI/Frame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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
|
