Views
No views yet
ar)pip install torch transformers librosa gradio1from transformers import pipeline
2
3pipe = pipeline(
4 "automatic-speech-recognition",
5 model="TuniSpeech-AI/whisper-tunisian-dialect"
6)
7
8result = pipe("audio.wav")
9print(result["text"])1@inproceedings{tunispeech_whisper_2026,
2 title = {A New Tunisian Arabic Corpus and Benchmark for Automatic Speech Recognition},
3 author = {Sghaier, Mohamed Ali and Bellagha, Mohamed Lazhar and Zrigui, Mounir},
4 booktitle = {In Proceedings of the 18th International Conference on Agents and Artificial Intelligence},
5 year = {2026}
6}