Skip to content

Commit

Permalink
whisper: Add distil-large-v3 model (#3605)
Browse files Browse the repository at this point in the history
* Add distil-large-v3 to whisper addon

https://huggingface.co/distil-whisper/distil-large-v3

* Bump version number

* Update DOCS.md

* Update CHANGELOG.md

* Remove "in progress" note from the changelog

---------

Co-authored-by: Jan Čermák <sairon@users.noreply.github.com>
  • Loading branch information
jamesmyatt and sairon committed May 24, 2024
1 parent 8e5480d commit 30e16c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions whisper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.1.0

- Add distil-large-v3 `model` option

## 2.0.0

- Add more models for `model` option
Expand Down
1 change: 1 addition & 0 deletions whisper/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Available models:
- `large-v1`
- `distil-large-v2` (distilled, English only)
- `large-v2`
- `distil-large-v3` (distilled, English only)
- `large-v3`

### Option: `custom_model`
Expand Down
4 changes: 2 additions & 2 deletions whisper/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 2.0.0
version: 2.1.0
slug: whisper
name: Whisper
description: Speech-to-text with Whisper
Expand All @@ -19,7 +19,7 @@ options:
debug_logging: false
schema:
model: |
list(tiny-int8|tiny|tiny.en|base-int8|base|base.en|small-int8|distil-small.en|small|small.en|distil-medium.en|medium-int8|medium|medium.en|large|large-v1|distil-large-v2|large-v2|large-v3|custom)
list(tiny-int8|tiny|tiny.en|base-int8|base|base.en|small-int8|distil-small.en|small|small.en|distil-medium.en|medium-int8|medium|medium.en|large|large-v1|distil-large-v2|large-v2|distil-large-v3|large-v3|custom)
custom_model: str?
language: |
list(auto|af|am|ar|as|az|ba|be|bg|bn|bo|br|bs|ca|cs|cy|da|de|el|en|es|et|eu|fa|fi|fo|fr|gl|gu|ha|haw|he|hi|hr|ht|hu|hy|id|is|it|ja|jw|ka|kk|km|kn|ko|la|lb|ln|lo|lt|lv|mg|mi|mk|ml|mn|mr|ms|mt|my|ne|nl|nn|no|oc|pa|pl|ps|pt|ro|ru|sa|sd|si|sk|sl|sn|so|sq|sr|su|sv|sw|ta|te|tg|th|tk|tl|tr|tt|uk|ur|uz|vi|yi|yo|zh|yue)
Expand Down

0 comments on commit 30e16c4

Please sign in to comment.