language-and-voice-lab/samromur_asr
Updated • 146
How to use einargizz/whisper_samromur with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="einargizz/whisper_samromur") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("einargizz/whisper_samromur")
model = AutoModelForSpeechSeq2Seq.from_pretrained("einargizz/whisper_samromur")This model is a fine-tuned version of openai/whisper-tiny on the language-and-voice-lab/samromur_asr 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 |
|---|---|---|---|---|
| 1.4531 | 0.25 | 250 | 1.5444 | 88.0 |
| 0.8932 | 0.5 | 500 | 1.0078 | 62.0 |
| 0.7225 | 0.75 | 750 | 0.8466 | 53.625 |
| 0.6828 | 1.0 | 1000 | 0.8061 | 53.125 |