Instructions to use cdli/whisper-large-v3_finetuned_ugandan_luganda_waxal_7_standard_speech_v1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cdli/whisper-large-v3_finetuned_ugandan_luganda_waxal_7_standard_speech_v1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="cdli/whisper-large-v3_finetuned_ugandan_luganda_waxal_7_standard_speech_v1.0")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("cdli/whisper-large-v3_finetuned_ugandan_luganda_waxal_7_standard_speech_v1.0") model = AutoModelForSpeechSeq2Seq.from_pretrained("cdli/whisper-large-v3_finetuned_ugandan_luganda_waxal_7_standard_speech_v1.0", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,17 +12,19 @@ metrics:
|
|
| 12 |
- wer
|
| 13 |
---
|
| 14 |
|
| 15 |
-
This is a fine-tuned version of [**`openai/whisper-large-v3`**](https://huggingface.co/openai/whisper-large-v3) for `Luganda`
|
| 16 |
|
| 17 |
All CDLI models and datasets can be found on [**CDLI's HuggingFace page**](https://huggingface.co/cdli).
|
| 18 |
|
| 19 |
## Dataset
|
| 20 |
|
| 21 |
-
The model has been fine-tuned using [`google/WaxalNLP`](https://huggingface.co/datasets/google/WaxalNLP)
|
| 22 |
|
| 23 |
## Training
|
| 24 |
|
| 25 |
-
The *train* split was used for training, and the *dev* split for selecting the best checkpoint.
|
|
|
|
|
|
|
| 26 |
|
| 27 |
All model parameters (encoder, decoder, and output projection) were fine-tuned, with SpecAugment enabled.
|
| 28 |
|
|
|
|
| 12 |
- wer
|
| 13 |
---
|
| 14 |
|
| 15 |
+
This is a fine-tuned version of [**`openai/whisper-large-v3`**](https://huggingface.co/openai/whisper-large-v3) for `Luganda` standard speech. It is part of CDLI's effort to make speech technology work for people whose speech is underserved by mainstream ASR systems.
|
| 16 |
|
| 17 |
All CDLI models and datasets can be found on [**CDLI's HuggingFace page**](https://huggingface.co/cdli).
|
| 18 |
|
| 19 |
## Dataset
|
| 20 |
|
| 21 |
+
The model has been fine-tuned using [`google/WaxalNLP`](https://huggingface.co/datasets/google/WaxalNLP). The `lug_asr` subset of the dataset was used.
|
| 22 |
|
| 23 |
## Training
|
| 24 |
|
| 25 |
+
The *train* split was used for training, and the *dev* split for selecting the best checkpoint.
|
| 26 |
+
|
| 27 |
+
This Whisper model was fine-tuned and is decoded using the **Swahili** (`sw`) language setting — out of all languages Whisper supports, the one most similar to Luganda.
|
| 28 |
|
| 29 |
All model parameters (encoder, decoder, and output projection) were fine-tuned, with SpecAugment enabled.
|
| 30 |
|