Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: openrail
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: openrail
|
| 3 |
+
language:
|
| 4 |
+
- am
|
| 5 |
+
base_model: openai/whisper-small
|
| 6 |
+
tags:
|
| 7 |
+
- whisper
|
| 8 |
+
- speech
|
| 9 |
+
- amharic
|
| 10 |
+
- asr
|
| 11 |
+
- automatic-speech-recognition
|
| 12 |
+
datasets:
|
| 13 |
+
- mozilla-foundation/common_voice_17_0
|
| 14 |
+
metrics:
|
| 15 |
+
- wer
|
| 16 |
+
model-index:
|
| 17 |
+
- name: whisper-amharic-small-v2
|
| 18 |
+
results:
|
| 19 |
+
- task:
|
| 20 |
+
type: automatic-speech-recognition
|
| 21 |
+
dataset:
|
| 22 |
+
type: mozilla-foundation/common_voice_17_0
|
| 23 |
+
name: Common Voice 17.0
|
| 24 |
+
config: am
|
| 25 |
+
split: test
|
| 26 |
+
metrics:
|
| 27 |
+
- type: wer
|
| 28 |
+
value: 69.0
|
| 29 |
+
name: WER
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
# Whisper Amharic Small v2
|
| 33 |
+
|
| 34 |
+
Fine-tuned Whisper Small model for Amharic speech recognition using Mozilla Common Voice dataset.
|
| 35 |
+
|
| 36 |
+
## Performance
|
| 37 |
+
- **WER**: 69% (improved from 77% in v1)
|
| 38 |
+
- **Dataset**: Mozilla Common Voice Amharic
|
| 39 |
+
- **Base Model**: openai/whisper-small
|
| 40 |
+
|
| 41 |
+
## Usage
|
| 42 |
+
```python
|
| 43 |
+
from transformers import WhisperProcessor, WhisperForConditionalGeneration
|
| 44 |
+
|
| 45 |
+
processor = WhisperProcessor.from_pretrained("chappM/whisper-amharic-small-v2")
|
| 46 |
+
model = WhisperForConditionalGeneration.from_pretrained("chappM/whisper-amharic-small-v2")
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
Optimized for Amharic speech recognition tasks.
|