mozilla-foundation/common_voice_17_0
Updated • 5.24k • 17
How to use cankaracelebi/whisper-medium-tr-v4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="cankaracelebi/whisper-medium-tr-v4") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("cankaracelebi/whisper-medium-tr-v4")
model = AutoModelForSpeechSeq2Seq.from_pretrained("cankaracelebi/whisper-medium-tr-v4")This model is a fine-tuned version of openai/whisper-medium 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 | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.203 | 0.3448 | 1000 | 0.2255 | 19.4192 |
| 0.1602 | 0.6895 | 2000 | 0.2142 | 18.0448 |
| 0.0814 | 1.0343 | 3000 | 0.2087 | 17.5338 |
| 0.0761 | 1.3791 | 4000 | 0.2060 | 17.1558 |
| 0.0734 | 1.7238 | 5000 | 0.1998 | 16.5052 |
| 0.0335 | 2.0686 | 6000 | 0.2073 | 16.7283 |
| 0.0344 | 2.4134 | 7000 | 0.2066 | 15.9091 |
| 0.0338 | 2.7581 | 8000 | 0.2023 | 15.3709 |
| 0.0099 | 3.1029 | 9000 | 0.2211 | 15.6331 |
| 0.0097 | 3.4477 | 10000 | 0.2254 | 15.6008 |
| 0.0096 | 3.7924 | 11000 | 0.2254 | 15.3334 |
| 0.0022 | 4.1372 | 12000 | 0.2285 | 15.4185 |
Base model
openai/whisper-medium