mozilla-foundation/common_voice_17_0
Updated • 5.41k • 17
How to use GerwinVanGiessen/whisper-base-nl-1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="GerwinVanGiessen/whisper-base-nl-1") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("GerwinVanGiessen/whisper-base-nl-1")
model = AutoModelForSpeechSeq2Seq.from_pretrained("GerwinVanGiessen/whisper-base-nl-1")This model is a fine-tuned version of openai/whisper-base on the Common Voice 17.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 | Step | Validation Loss | Wer |
|---|---|---|---|
| 0.3639 | 500 | 0.396971 | 24.3028 |
| 0.2625 | 1000 | 0.358340 | 22.5210 |
| 0.2212 | 1500 | 0.341232 | 21.0322 |
| 0.1455 | 2000 | 0.330033 | 20.2046 |
| 0.1406 | 2500 | 0.324484 | 20.0508 |
| 0.1244 | 3000 | 0.321562 | 19.5279 |
| 0.0848 | 3500 | 0.321506 | 19.5114 |
| 0.0844 | 4000 | 0.316492 | 19.1462 |
| 0.0731 | 4500 | 0.321992 | 19.0167 |
| 0.0515 | 5000 | 0.324720 | 19.1492 |
| 0.0532 | 5500 | 0.324773 | 19.0148 |
| 0.0426 | 6000 | 0.332404 | 19.0576 |
| 0.0328 | 6500 | 0.334900 | 18.8249 |
| 0.0327 | 7000 | 0.335876 | 19.0080 |
| 0.0252 | 7500 | 0.343928 | 19.0031 |
Base model
openai/whisper-base