Views
No views yet
int8_float16 quantized version of openai/whisper-large-v3-turbo converted to CTranslate2 format for use with faster-whisper.1from faster_whisper import WhisperModel
2
3model = WhisperModel("ThomasG/faster-whisper-large-v3-turbo-int8-fp16", device="cuda", compute_type="int8_float16")
4
5segments, info = model.transcribe("audio.mp3")
6text = " ".join(segment.text.strip() for segment in segments)ct2-transformers-converter --model openai/whisper-large-v3-turbo --quantization int8_float16 --copy_files tokenizer.json preprocessor_config.json