This repository contains the
MediaTek-Research/Breeze-ASR-26 model converted to the
CTranslate2 format.
The model can be used with CTranslate2 or CTranslate2-based projects such as
faster-whisper.
Breeze-ASR-26 (BreezeASR-Taigi) is a Taiwanese Hokkien (Taigi / 台語) automatic speech recognition model fine-tuned from
openai/whisper-large-v2. It was trained on approximately
10,000 hours of synthetic Taiwanese Hokkien speech data and outputs Mandarin Chinese character transcriptions.
For more details about the original model, please refer to its
model card.
1from faster_whisper import WhisperModel
2
3model = WhisperModel("path/to/faster-whisper-Breeze-ASR-26")
4
5segments, info = model.transcribe("audio.wav")
6for segment in segments:
7 print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
1ct2-transformers-converter \
2 --model /path/to/Breeze-ASR-26 \
3 --output_dir faster-whisper-Breeze-ASR-26 \
4 --copy_files preprocessor_config.json \
5 --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.