hedronstone
commited on
Commit
·
a1647c8
1
Parent(s):
f55e686
Update README.md
Browse files
README.md
CHANGED
@@ -10,11 +10,23 @@ datasets:
|
|
10 |
metrics:
|
11 |
- WER
|
12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
|
15 |
-
*
|
16 |
-
*
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
10 |
metrics:
|
11 |
- WER
|
12 |
---
|
13 |
+
## Model
|
14 |
+
* Name: Whisper Small Swahili
|
15 |
+
* Description: Fine-tuned Whisper weights for speech-to-text task.
|
16 |
+
* Dataset:
|
17 |
+
- Train and validation splits for Swahili subsets of [Common Voice 11.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0).
|
18 |
+
- Train, validation and test splits for Swahili subsets of [Google Fleurs](https://huggingface.co/datasets/google/fleurs/).
|
19 |
+
* Performance: **21.934203 WER**
|
20 |
|
21 |
+
## Weights
|
22 |
+
* Date of release: 12.09.2022
|
23 |
+
* Size:
|
24 |
+
* License: MIT
|
25 |
|
26 |
+
## Usage
|
27 |
+
To use these weights in HuggingFace's `transformers` library, you can do the following:
|
28 |
+
```python
|
29 |
+
from transformers import WhisperForConditionalGeneration
|
30 |
+
|
31 |
+
model = WhisperForConditionalGeneration.from_pretrained("hedronstone/whisper-small-sw")
|
32 |
+
```
|