mozilla-foundation/common_voice_17_0
Updated • 5.12k • 34
How to use cankaracelebi/whisper-medium-tr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="cankaracelebi/whisper-medium-tr") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("cankaracelebi/whisper-medium-tr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("cankaracelebi/whisper-medium-tr", device_map="auto")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.1912 | 0.3448 | 1000 | 0.2200 | 18.9662 |
| 0.1469 | 0.6895 | 2000 | 0.1978 | 16.9565 |
| 0.0666 | 1.0343 | 3000 | 0.1821 | 15.6791 |
| 0.0571 | 1.3791 | 4000 | 0.1778 | 15.0915 |
| 0.0502 | 1.7238 | 5000 | 0.1694 | 14.5329 |
Base model
openai/whisper-medium