Automatic Speech Recognition
Transformers
PyTorch
TensorFlow
JAX
Safetensors
English
whisper
audio
hf-asr-leaderboard
Eval Results (legacy)
Eval Results
Instructions to use openai/whisper-base.en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use openai/whisper-base.en with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="openai/whisper-base.en")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("openai/whisper-base.en") model = AutoModelForSpeechSeq2Seq.from_pretrained("openai/whisper-base.en") - Notebooks
- Google Colab
- Kaggle
Commit ·
dcc71d8
1
Parent(s): 2ae9a06
Update generation_config.json to suppress task tokens
Browse files- generation_config.json +2 -0
generation_config.json
CHANGED
|
@@ -104,6 +104,8 @@
|
|
| 104 |
47282,
|
| 105 |
49146,
|
| 106 |
50257,
|
|
|
|
|
|
|
| 107 |
50359,
|
| 108 |
50360,
|
| 109 |
50361
|
|
|
|
| 104 |
47282,
|
| 105 |
49146,
|
| 106 |
50257,
|
| 107 |
+
50357,
|
| 108 |
+
50358,
|
| 109 |
50359,
|
| 110 |
50360,
|
| 111 |
50361
|