mozilla-foundation/common_voice_17_0
Updated • 4.79k • 29
How to use volkan-aslan/whisper-base-tr-v2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="volkan-aslan/whisper-base-tr-v2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("volkan-aslan/whisper-base-tr-v2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("volkan-aslan/whisper-base-tr-v2")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 | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.2299 | 0.6894 | 1000 | 0.4219 | 34.5602 |
| 0.1368 | 1.3785 | 2000 | 0.4092 | 32.7446 |
| 0.0736 | 2.0676 | 3000 | 0.3968 | 31.2152 |
| 0.0695 | 2.7570 | 4000 | 0.3973 | 31.0636 |
| 0.0403 | 3.4461 | 5000 | 0.4112 | 31.0398 |
| 0.0241 | 4.1351 | 6000 | 0.4148 | 30.8729 |
Base model
openai/whisper-base