mozilla-foundation/common_voice_13_0
Updated • 1.68k • 5
How to use GerwinVanGiessen/whisper-base-nl with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="GerwinVanGiessen/whisper-base-nl") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("GerwinVanGiessen/whisper-base-nl")
model = AutoModelForSpeechSeq2Seq.from_pretrained("GerwinVanGiessen/whisper-base-nl")This model is a fine-tuned version of openai/whisper-base on the Common Voice 13.0 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.294 | 0.3734 | 1000 | 0.4016 | 24.5123 |
| 0.216 | 0.7468 | 2000 | 0.3617 | 22.3141 |
| 0.1437 | 1.1202 | 3000 | 0.3424 | 21.1733 |
| 0.1299 | 1.4937 | 4000 | 0.3354 | 20.4818 |
Base model
openai/whisper-base