hedronstone
commited on
Commit
•
d6f06cc
1
Parent(s):
595b912
Update README.md
Browse files
README.md
CHANGED
@@ -10,3 +10,18 @@ datasets:
|
|
10 |
metrics:
|
11 |
- WER
|
12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
metrics:
|
11 |
- WER
|
12 |
---
|
13 |
+
## Model
|
14 |
+
* Name: Whisper Medium Swahili
|
15 |
+
* Description: Whisper weights for speech-to-text task, fine-tuned and evaluated on normalized data.
|
16 |
+
|
17 |
+
## Weights
|
18 |
+
* Date of release: 12.09.2022
|
19 |
+
* License: MIT
|
20 |
+
|
21 |
+
## Usage
|
22 |
+
To use these weights in HuggingFace's `transformers` library, you can do the following:
|
23 |
+
```python
|
24 |
+
from transformers import WhisperForConditionalGeneration
|
25 |
+
|
26 |
+
model = WhisperForConditionalGeneration.from_pretrained("hedronstone/whisper-small-sw")
|
27 |
+
```
|