Chillarmo/common_voice_20_armenian
Viewer • Updated • 58.3k • 1.61k • 1
How to use Chillarmo/whisper-small-armenian with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Chillarmo/whisper-small-armenian") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Chillarmo/whisper-small-armenian")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Chillarmo/whisper-small-armenian")This model is a fine-tuned version of OpenAI's Whisper-small on the Common Voice 20 Armenian dataset for automatic speech recognition.
The model was trained for 5.34 epochs with the following final results:
| Metric | Value |
|---|---|
| Training Loss | 0.101 |
| Training Runtime | 59,610 seconds (≈16.56 hours) |
| Training Samples/Second | 1.34 |
| Training Steps/Second | 0.084 |
| Total Training Steps | 5,000 |
| Epochs | 5.34 |
| Metric | Value |
|---|---|
| Evaluation Loss | 0.165 |
| Word Error Rate (WER) | 29.43% |
| Character Error Rate (CER) | 5.89% |
| Exact Match | 20.05% |
| Average Prediction Length | 7.71 tokens |
| Average Label Length | 7.77 tokens |
| Length Ratio | 0.992 |
| Evaluation Runtime | 9,486 seconds (≈2.63 hours) |
| Evaluation Samples/Second | 0.62 |
| Evaluation Steps/Second | 0.077 |