To train, fine-tune or play with the model you will need to install
NVIDIA NeMo. We recommend you install it after you've installed latest Pytorch version.
The model is available for use in the NeMo toolkit [3], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.
1import nemo.collections.asr as nemo_asr
2asr_model = nemo_asr.models.ASRModel.from_pretrained("ayymen/stt_zgh_fastconformer_ctc_small")
This model accepts 16000 KHz Mono-channel Audio (wav files) as input.
This model provides transcribed speech as a string for a given audio sample.
Training
The model was fine-tuned from an older checkpoint on a NVIDIA GeForce RTX 4050 Laptop GPU.
Datasets
Common Voice 18 kab and zgh splits, Tatoeba (kab, ber, shy), and bible readings in Tachelhit and Tarifit.
Performance
Metrics are computed on the cleaned, non-punctuated test sets of zgh and kab (converted to Tifinagh).
Limitations
Eg:
Since this model was trained on publicly available speech datasets, the performance of this model might degrade for speech which includes technical terms, or vernacular that the model has not been trained on. The model might also perform worse for accented speech.
References