diff options
Diffstat (limited to 'candle-transformers/src/models/whisper/mod.rs')
-rw-r--r-- | candle-transformers/src/models/whisper/mod.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/candle-transformers/src/models/whisper/mod.rs b/candle-transformers/src/models/whisper/mod.rs index 6123884a..d7082ea6 100644 --- a/candle-transformers/src/models/whisper/mod.rs +++ b/candle-transformers/src/models/whisper/mod.rs @@ -1,10 +1,14 @@ //! Whisper Model Implementation //! //! Whisper is an automatic speech recognition (ASR) system trained on large amounts -//! of multilingual and multitask supervised data collected from the web. +//! of multilingual and multitask supervised data collected from the web. It can be used to +//! convert audio files (in the `.wav` format) to text. Supported features include +//! language detection as well as multilingual speech recognition. +//! +//! - ⚡ [Interactive Wasm Example](https://huggingface.co/spaces/lmz/candle-whisper) +//! - 💻 [GH Link](https://github.com/openai/whisper) +//! - 💻 Transformers Python [reference implementation](https://github.com/huggingface/transformers/blob/main/src/transformers/models/whisper/modeling_whisper.py) //! -//! - [GH Link](https://github.com/openai/whisper) -//! - Transformers Python [reference implementation](https://github.com/huggingface/transformers/blob/main/src/transformers/models/whisper/modeling_whisper.py) //! pub mod audio; pub mod model; |