Automatic Speech Recognition
Transformers
PyTorch
TensorFlow
JAX
Safetensors
English
whisper
audio
hf-asr-leaderboard
Eval Results (legacy)
Eval Results
Instructions to use openai/whisper-small.en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use openai/whisper-small.en with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="openai/whisper-small.en")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("openai/whisper-small.en") model = AutoModelForSpeechSeq2Seq.from_pretrained("openai/whisper-small.en") - Notebooks
- Google Colab
- Kaggle
Commit History
add timestamp tokens (#14) 8cf2071
add timestamp tokens (#13) f402f31
Adding `safetensors` variant of this model (#12) 59db474
Update generation config with word-level alignment heads (#11) 362fbd3
Update README.md a8ed769
Update generation_config.json to suppress task tokens (#9) 9a99381
Update config.json to suppress task tokens (#8) 48b9de7
Add Flax weights 287fee8
sanchit-gandhi commited on