mozilla-foundation/common_voice_17_0
Updated • 4.75k • 29
How to use volkan-aslan/whisper-tiny-tr-optimized-v3 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="volkan-aslan/whisper-tiny-tr-optimized-v3") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("volkan-aslan/whisper-tiny-tr-optimized-v3")
model = AutoModelForSpeechSeq2Seq.from_pretrained("volkan-aslan/whisper-tiny-tr-optimized-v3")This model is a fine-tuned version of openai/whisper-tiny 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.4323 | 0.6894 | 1000 | 0.5809 | 44.9016 |
| 0.2368 | 1.3785 | 2000 | 0.5329 | 41.3199 |
| 0.1354 | 2.0676 | 3000 | 0.5079 | 41.0066 |
| 0.1287 | 2.7570 | 4000 | 0.4931 | 38.8487 |
| 0.0888 | 3.4461 | 5000 | 0.4976 | 38.8691 |
Base model
openai/whisper-tiny