PolyAI/minds14
Viewer • Updated • 16.3k • 7.07k • 102
How to use OmBenz/whisper-tiny with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="OmBenz/whisper-tiny") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("OmBenz/whisper-tiny")
model = AutoModelForSpeechSeq2Seq.from_pretrained("OmBenz/whisper-tiny")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 |
|---|---|---|---|---|---|
| 3.4388 | 1.43 | 20 | 2.2576 | 0.5022 | 0.4038 |
| 1.1317 | 2.86 | 40 | 0.5981 | 0.4047 | 0.3932 |
| 0.3235 | 4.29 | 60 | 0.4967 | 0.3720 | 0.3707 |
| 0.138 | 5.71 | 80 | 0.5035 | 0.3356 | 0.3282 |
| 0.0563 | 7.14 | 100 | 0.5198 | 0.3362 | 0.3294 |
| 0.033 | 8.57 | 120 | 0.5278 | 0.3436 | 0.3383 |
Base model
openai/whisper-tiny