This model is a fine-tuned version of
facebook/mms-300m specifically for
Fongbe (Fon), a tonal language primarily spoken in Benin.
It was developed to preserve linguistic integrity by maintaining critical tonal diacritics and unique orthographic characters (e.g., ɖ, ɛ, ɔ, è, é). This model achieves State-of-the-Art (SOTA) results for Fongbe Automatic Speech Recognition (ASR) on the ALFFA test benchmark.
1from transformers import pipeline
2
3asr = pipeline("automatic-speech-recognition", model="Professor/mms-300m-fongbe")
4
5# Ensure your audio is 16kHz
6transcription = asr("path_to_audio.wav")
7print(transcription["text"])
1@dataset{laleye_frejus_2022_6604637,
2 author = {Laleye, Fréjus A. A.},
3 title = {Fongbe Speech Dataset},
4 year = 2022,
5 publisher = {Zenodo},
6 doi = {10.5281/zenodo.6604637}
7}
8
9@inproceedings{laleye2016FongbeASR,
10 title={First Automatic Fongbe Continuous Speech Recognition System},
11 author={A. A Laleye, Fréjus and Besacier, Laurent and Ezin, Eugène C. and Motamed, Cina},
12 year={2016},
13 organization={FedCSIS}
14}