mozilla-foundation/common_voice_17_0
Updated • 4.79k • 29
How to use volkan-aslan/whisper-base-tr 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") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("volkan-aslan/whisper-base-tr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("volkan-aslan/whisper-base-tr")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.3682 | 0.3447 | 1000 | 0.4452 | 36.6618 |
| 0.3152 | 0.6894 | 2000 | 0.4094 | 34.3439 |
| 0.2074 | 1.0341 | 3000 | 0.3889 | 32.5232 |
| 0.2044 | 1.3788 | 4000 | 0.3818 | 32.3120 |
Base model
openai/whisper-base