mohankumars26/whisper-kannada-medium-ct2
023
whisper-kannada-medium-ct2
CTranslate2 int8 conversion of vasista22/whisper-kannada-medium, ready for faster-whisper.
- Base model:
vasista22/whisper-kannada-medium(Apache-2.0) - Quantization: int8 (CPU-friendly;
model.bin≈ 774 MB) - Tokenizer note:
tokenizer.jsonhere was generated withtokenizers0.19.x so it loads on faster-whisper 1.0.x runtimes. (Atokenizer.jsonproduced by newertokenizerscan raisedata did not match any variant of untagged enum ModelWrapperon older runtimes.)
Usage
from faster_whisper import WhisperModel
model = WhisperModel("mohankumars26/whisper-kannada-medium-ct2", device="cpu", compute_type="int8")
segments, info = model.transcribe("audio.wav", language="kn", beam_size=1)
print("".join(s.text for s in segments))Validation
On a Google FLEURS (kn_in) test clip this int8 model produced correct Kannada script — ~97% character match to the reference, avg_logprob ≈ −0.04.
Converted with:
ct2-transformers-converter --model vasista22/whisper-kannada-medium \
--output_dir ct2-kannada --quantization int8 \
--copy_files tokenizer.json preprocessor_config.json