Views
No views yet
openai-whisper-base, then fine-tined to Khmer language using three datasets:train split of openslr/openslr SLR42wer) on 2 popular datasets:test split of google/fleurs km-khpip 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-fp32",
6 fp16=False
7)
8print(result['text'])example.py to see the result.mlx_whisper --model mlx-community/whisper-base-khmer-mlx-fp32 --task transcribe SPEECH_FILE_NAME --fp16 False