Views
No views yet
openai/whisper-large-v3-turbo for Khmer (Cambodian) speech recognition, using a
custom merged BPE tokenizer (whisper-khmer-tokenizer-v3, content-first vocab layout).openai/whisper-large-v3-turboaugment_prob=0.3, noisy evaltransformers ASR pipeline decodes them correctly.1from transformers import pipeline
2
3pipe = pipeline("automatic-speech-recognition",
4 model="1morecupofhottea/whisper-turbo-khmer-v7-stable",
5 chunk_length_s=30, device=0)
6
7result = pipe("path/to/audio.wav")
8print(result["text"]) # khmercut-segmented output with ';' word-group separators;),
which matches the training data format.