Automatic Speech Recognition
Transformers
PyTorch
JAX
TensorBoard
ONNX
Safetensors
Transformers.js
English
whisper
audio
Eval Results
Instructions to use distil-whisper/distil-medium.en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use distil-whisper/distil-medium.en with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="distil-whisper/distil-medium.en")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("distil-whisper/distil-medium.en") model = AutoModelForSpeechSeq2Seq.from_pretrained("distil-whisper/distil-medium.en") - Transformers.js
How to use distil-whisper/distil-medium.en with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('automatic-speech-recognition', 'distil-whisper/distil-medium.en'); - Notebooks
- Google Colab
- Kaggle
Commit History
Correct generation config 26f298e verified
Update README.md f4bbf37 verified
Correct long-form generation config parameters 'max_initial_timestamp_index' and 'prev_sot_token_id'. (#11) 276429d verified
Update README.md 024ce6a
Update README.md fce6dfa
Update README.md c8a8967
add license 7eca479
sanchit-gandhi commited on
whisper cpp 9e3e0be
sanchit-gandhi commited on
candle c7bea3d
sanchit-gandhi commited on
add section on OAI whisper 796a56b
sanchit-gandhi commited on
Rename original-medium-24-2-en.fp32.bin to original-model.fp32.bin 71afc3d
Rename original-medium-24-2-en.bin to original-model.bin 2f04123
Update README.md 7ff7624
Update README.md d710fb8
add fp16 weights 44d04c5
Add ggml weights (#4) de23415
Add original OAI weights (#3) d9d78a9
Add ONNX weights (#1) ec2151b
add jiwer to pip install 2c2a145
sanchit-gandhi commited on
update eval ba9afe1
sanchit-gandhi commited on
Add model weights and README c76aba4
sanchit-gandhi commited on
initial commit a4c88f3
Sanchit Gandhi commited on