This repository contains the
MediaTek-Research/Breeze-ASR-25 model converted to the
CTranslate2 format.
The model can be used with CTranslate2 or CTranslate2-based projects such as
faster-whisper.
1from faster_whisper import WhisperModel
2
3model = WhisperModel("SoybeanMilk/faster-whisper-Breeze-ASR-25")
4
5segments, info = model.transcribe("audio.wav")
6for segment in segments:
7 print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
ct2-transformers-converter \
--model MediaTek-Research/Breeze-ASR-25 \
--output_dir faster-whisper-Breeze-ASR-25 \
--copy_files tokenizer.json preprocessor_config.json \
--quantization float16
Note: The model weights are saved in FP16 format. You can change the type when loading the model using the
compute_type option in CTranslate2.