mozilla-foundation/common_voice_17_0
Updated • 4.79k • 29
How to use volkan-aslan/whisper-small-tr-v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="volkan-aslan/whisper-small-tr-v1") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("volkan-aslan/whisper-small-tr-v1")
model = AutoModelForSpeechSeq2Seq.from_pretrained("volkan-aslan/whisper-small-tr-v1")This model is a fine-tuned version of openai/whisper-small 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.2891 | 0.6894 | 1000 | 0.4224 | 32.9967 |
| 0.1234 | 1.3785 | 2000 | 0.3800 | 28.9125 |
| 0.0491 | 2.0676 | 3000 | 0.3572 | 26.5179 |
| 0.0407 | 2.7570 | 4000 | 0.3405 | 25.3479 |
| 0.0165 | 3.4461 | 5000 | 0.3479 | 24.6155 |
Base model
openai/whisper-small