Views
No views yet
openai-whisper-base, then fine-tined to Khmer language using two datasets:wer) on 2 popular datasets:test split of google/fleurs km-khtrain split of openslr/openslr SLR42pip install mlx-whisperexample.py, as the following1import mlx_whisper
2
3result = mlx_whisper.transcribe(
4 SPEECH_FILE_NAME,
5 path_or_hf_repo="mlx-community/whisper-base-khmer-mlx-fp16",
6 fp16=True
7)
8print(result['text'])example.py to see the result.mlx_whisper --model mlx-community/whisper-base-khmer-mlx-fp16 --task transcribe SPEECH_FILE_NAME --fp16 True