Skip to content

Latest commit

History

History
68 lines (43 loc) 路 2.54 KB

whisper.mdx

File metadata and controls

68 lines (43 loc) 路 2.54 KB

Whisper

Overview

The Whisper model was proposed in Robust Speech Recognition via Large-Scale Weak Supervision by Alec Radford, Jong Wook Kim, Tao Xu, Greg Brockman, Christine McLeavey, Ilya Sutskever.

The abstract from the paper is the following:

We study the capabilities of speech processing systems trained simply to predict large amounts of transcripts of audio on the internet. When scaled to 680,000 hours of multilingual and multitask supervision, the resulting models generalize well to standard benchmarks and are often competitive with prior fully supervised results but in a zeroshot transfer setting without the need for any finetuning. When compared to humans, the models approach their accuracy and robustness. We are releasing models and inference code to serve as a foundation for further work on robust speech processing.

Tips:

  • The model usually performs well without requiring any finetuning.
  • The architecture follows a classic encoder-decoder architecture, which means that it relies on the [~generation_utils.GenerationMixin.generate] function for inference.
  • One can use [WhisperProcessor] to prepare audio for the model, and decode the predicted ID's back into text.

This model was contributed by Arthur Zucker. The original code can be found here.

WhisperConfig

[[autodoc]] WhisperConfig

WhisperTokenizer

[[autodoc]] WhisperTokenizer - build_inputs_with_special_tokens - get_special_tokens_mask - create_token_type_ids_from_sequences - save_vocabulary

WhisperFeatureExtractor

[[autodoc]] WhisperFeatureExtractor - call

WhisperProcessor

[[autodoc]] WhisperProcessor - call - from_pretrained - save_pretrained - batch_decode - decode

WhisperModel

[[autodoc]] WhisperModel - forward

WhisperForConditionalGeneration

[[autodoc]] WhisperForConditionalGeneration - forward