mozilla-foundation/common_voice_13_0
Updated • 1.5k • 6
How to use beratcmn/whisper-base-tr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="beratcmn/whisper-base-tr") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("beratcmn/whisper-base-tr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("beratcmn/whisper-base-tr", device_map="auto")This model is a fine-tuned version of openai/whisper-base on the Common Voice 13 Turkish 30% 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.3817 | 0.5 | 33 | 0.5206 | 42.0632 |
| 0.2896 | 1.0 | 66 | 0.5182 | 44.3036 |
| 0.4421 | 1.5 | 99 | 0.5153 | 43.3137 |
| 0.187 | 2.0 | 132 | 0.5079 | 42.1501 |
| 0.2459 | 2.5 | 165 | 0.5001 | 41.7506 |
| 0.2297 | 3.0 | 198 | 0.4968 | 41.2122 |
Base model
openai/whisper-base