PolyAI/minds14
Viewer • Updated • 16.3k • 6.08k • 103
How to use HeinrichWirth/whisper-tiny_en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="HeinrichWirth/whisper-tiny_en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("HeinrichWirth/whisper-tiny_en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("HeinrichWirth/whisper-tiny_en")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.8643 | 1.79 | 50 | 3.5786 | 0.5114 | 0.3714 |
| 2.4042 | 3.57 | 100 | 2.3266 | 0.4657 | 0.3689 |
| 1.4319 | 5.36 | 150 | 1.3619 | 0.4367 | 0.3702 |
| 0.7558 | 7.14 | 200 | 0.7935 | 0.4213 | 0.3721 |
| 0.524 | 8.93 | 250 | 0.6820 | 0.4078 | 0.3721 |
| 0.4702 | 10.71 | 300 | 0.6349 | 0.3964 | 0.3630 |
Base model
openai/whisper-tiny