language-and-voice-lab/samromur_asr
Updated • 41
How to use Valdimarb13/whisper-small-icelandic with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Valdimarb13/whisper-small-icelandic") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Valdimarb13/whisper-small-icelandic")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Valdimarb13/whisper-small-icelandic")This model is a fine-tuned version of openai/whisper-small on the samromur 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 |
|---|---|---|---|---|
| 0.3551 | 0.18 | 1000 | 0.4322 | 35.0421 |
| 0.2541 | 0.36 | 2000 | 0.3249 | 27.4721 |
| 0.231 | 0.53 | 3000 | 0.2781 | 24.2234 |
| 0.2277 | 0.71 | 4000 | 0.2613 | 23.0409 |