CoolFace
Modelpublic

EtMmohammedHafsati/hi__vasista22__whisper-hindi-small__int8

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes14downloads
Model Card

hi_vasista22whisper-hindi-small_int8

CTranslate2 export of Whisper Small for hi (usable with faster-whisper).

Usage

python
from faster_whisper import WhisperModel
model = WhisperModel("hi__vasista22__whisper-hindi-small__int8", device="cpu", compute_type="int8")  # or cuda / int8_float16
segments, info = model.transcribe("sample.wav", language="hi")
for s in segments:
    print(f"[{s.start:.2f} -> {s.end:.2f}] {s.text}")
Tip: If you get a language mismatch, pass language="<code>" explicitly.