Automatic Speech Recognition
NeMo
PyTorch
Swahili
speech
Swahili
audio
CTC
Conformer
Transformer
NeMo
Instructions to use de-coder/stt_sw_ctc_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use de-coder/stt_sw_ctc_model with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("de-coder/stt_sw_ctc_model") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -46,9 +46,12 @@ asr_model = nemo_asr.models.ASRModel.from_pretrained("decoder/STT_SW_Model")
|
|
| 46 |
```
|
| 47 |
|
| 48 |
### Transcribing using Python
|
| 49 |
-
First, let's get a
|
| 50 |
```
|
| 51 |
-
!wget https://
|
|
|
|
|
|
|
|
|
|
| 52 |
```
|
| 53 |
Then simply do: if in colab
|
| 54 |
```
|
|
|
|
| 46 |
```
|
| 47 |
|
| 48 |
### Transcribing using Python
|
| 49 |
+
First, let's get a samples of three different files
|
| 50 |
```
|
| 51 |
+
!wget https://rapidshare.io/2oUF/common_voice_sw_27777611.wav
|
| 52 |
+
!wget https://rapidshare.io/2oUG/common_voice_sw_27777627.wav
|
| 53 |
+
!wget https://rapidshare.io/2oUH/common_voice_sw_27791961.wav
|
| 54 |
+
|
| 55 |
```
|
| 56 |
Then simply do: if in colab
|
| 57 |
```
|