PolyAI/minds14
Viewer • Updated • 16.3k • 10.2k • 107
How to use bogosla/whisper-tiny-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="bogosla/whisper-tiny-en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("bogosla/whisper-tiny-en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("bogosla/whisper-tiny-en", device_map="auto")This model is a fine-tuned version of openai/whisper-tiny on the PolyAI/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 |
|---|---|---|---|---|---|
| No log | 1.0 | 14 | 0.7929 | 0.3230 | 0.3224 |
| 0.0136 | 2.0 | 28 | 0.7854 | 0.3378 | 0.3372 |
| 0.0136 | 3.0 | 42 | 0.7646 | 0.2907 | 0.2868 |
| 0.0102 | 4.0 | 56 | 0.8354 | 0.2914 | 0.2901 |
| 0.0102 | 5.0 | 70 | 0.7656 | 0.3244 | 0.3230 |
| 0.0103 | 6.0 | 84 | 0.8051 | 0.2968 | 0.2933 |
| 0.0103 | 7.0 | 98 | 0.8514 | 0.3318 | 0.3301 |
Base model
openai/whisper-tiny