This repository provides an automatic speech recognition (ASR) model fine-tuned for the Hmong language using Whisper Large.
The model is available on Hugging Face and can be used immediately with the Transformers pipeline.
This model is a fine-tuned version of Whisper Large for Hmong automatic speech recognition (ASR). It is trained on carefully prepared Hmong speech datasets ranging from short to medium-length utterances. The model is optimized for real-world conversational and general speech.
1from transformers import pipeline
2
3transcriber = pipeline(
4 "automatic-speech-recognition",
5 model="Pakorn2112/whisper-"
6)
7
8result = transcriber("hmong_sample.wav")
9print(result["text"])
Special thanks to the localvoice.org community for supporting Hmong language technology development.
This project is licensed under the Apache License 2.0. Please see the LICENSE file for details.