PolyAI/minds14
Viewer • Updated • 16.3k • 6.97k • 102
How to use ld76/whisper-tiny-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ld76/whisper-tiny-en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ld76/whisper-tiny-en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ld76/whisper-tiny-en")This model is a fine-tuned version of openai/whisper-tiny on the Minds14 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer Ortho | Wer |
|---|---|---|---|---|---|
| 0.0006 | 17.54 | 500 | 0.7812 | 0.3419 | 0.3477 |
| 0.0 | 35.09 | 1000 | 0.8306 | 0.3267 | 0.3319 |
| 0.0 | 52.63 | 1500 | 0.8573 | 0.3570 | 0.3610 |
| 0.0 | 70.18 | 2000 | 0.8795 | 0.3577 | 0.3616 |
Base model
openai/whisper-tiny