--- library_name: ctranslate2 pipeline_tag: automatic-speech-recognition tags: - faster-whisper - whisper-small - ko license: apache-2.0 --- # ko__ss0ffii__whisper-small-german-swiss__int8 CTranslate2 export of Whisper Small for `ko` (usable with [faster-whisper](https://github.com/SYSTRAN/faster-whisper)). ## Usage ```python from faster_whisper import WhisperModel model = WhisperModel("ko__ss0ffii__whisper-small-german-swiss__int8", device="cpu", compute_type="int8") # or cuda / int8_float16 segments, info = model.transcribe("sample.wav", language="ko") for s in segments: print(f"[{s.start:.2f} -> {s.end:.2f}] {s.text}") ``` > Tip: If you get a language mismatch, pass `language=""` explicitly.