Skip to content

Commit

Permalink
Add support for Whisper models distil-large-v3 and distil-large-v3-tu…
Browse files Browse the repository at this point in the history
…rbo to Whisper module
  • Loading branch information
Woolverine94 committed Oct 3, 2024
1 parent 51891db commit 42bcf08
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ressources/whisper.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@

model_list_whisper_builtin = {
"openai/whisper-tiny": "model.safetensors",
"openai/whisper-base": "model.safetensors",
"openai/whisper-base": "model.safetensors",
"openai/whisper-medium": "model.safetensors",
"openai/whisper-large": "model.safetensors",
"openai/whisper-large-v3": "model.safetensors",
"distil-whisper/distil-large-v2": "model.safetensors",
"openai/whisper-large-v3": "model.safetensors",
"distil-whisper/distil-large-v2": "model.safetensors",
"distil-whisper/distil-large-v3": "model.safetensors",
"openai/whisper-large-v3-turbo": "model.safetensors",
}

model_list_whisper.update(model_list_whisper_builtin)
Expand Down

0 comments on commit 42bcf08

Please sign in to comment.