Views
No views yet
PhanithLIM/whisper-tiny-aug-19-april-lightning-v1 is a fine-tuned version of OpenAI's Whisper ASR model adapted specifically for the Khmer language. Built on the small variant of Whisper and optimized using FasterWhisper, this model provides efficient and accurate speech-to-text transcription for Khmer audio.pip install faster-whisper1from faster_whisper import WhisperModel
2
3# Load the model
4model = WhisperModel("PhanithLIM/whisper-tiny-khmer-ct2", compute_type="int8", local_files_only=False, beam_size=5)
5
6# Transcribe Khmer audio
7segments, info = model.transcribe("your_audio_file.wav")
8
9# Print segments
10for segment in segments:
11 print(f"{segment.start:.2f}s --> {segment.end:.2f}s: {segment.text}")