mozilla-foundation/common_voice_17_0
Updated โข 4.33k โข 38
How to use Drahokma/whisper-large-v3-kz with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Drahokma/whisper-large-v3-kz") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Drahokma/whisper-large-v3-kz")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Drahokma/whisper-large-v3-kz", device_map="auto")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Drahokma/whisper-large-v3-kz")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Drahokma/whisper-large-v3-kz", device_map="auto")This model is a fine-tuned version of openai/whisper-large-v3 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.0003 | 28.5714 | 1000 | 0.4718 | 546.6835 |
| 0.0 | 57.1429 | 2000 | 0.5506 | 175.4264 |
| 0.0 | 85.7143 | 3000 | 0.5751 | 185.3759 |
| 0.0 | 114.2857 | 4000 | 0.5842 | 188.0606 |
Base model
openai/whisper-large-v3
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Drahokma/whisper-large-v3-kz")