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 ·
9a99381
1
Parent(s): 48b9de7
Update generation_config.json to suppress task tokens (#9)
Browse files- Update generation_config.json to suppress task tokens (80f37cf37c1333dee5dbd5179fe70353f989b2f1)
Co-authored-by: Guillaume Klein <guillaumekln@users.noreply.huggingface.co>
- generation_config.json +2 -0
generation_config.json
CHANGED
|
@@ -103,6 +103,8 @@
|
|
| 103 |
47282,
|
| 104 |
49146,
|
| 105 |
50257,
|
|
|
|
|
|
|
| 106 |
50359,
|
| 107 |
50360,
|
| 108 |
50361
|
|
|
|
| 103 |
47282,
|
| 104 |
49146,
|
| 105 |
50257,
|
| 106 |
+
50357,
|
| 107 |
+
50358,
|
| 108 |
50359,
|
| 109 |
50360,
|
| 110 |
50361
|