whisper
Collection
42 items • Updated
How to use aoiandroid/Breeze-ASR-25_coreml with WhisperKit:
# Install CLI with Homebrew on macOS device brew install whisperkit-cli # View all available inference options whisperkit-cli transcribe --help # Download and run inference using whisper base model whisperkit-cli transcribe --audio-path /path/to/audio.mp3 # Or use your preferred model variant whisperkit-cli transcribe --model "large-v3" --model-prefix "distil" --audio-path /path/to/audio.mp3 --verbose
This model is based on MediaTek-Research_Breeze-ASR-25, a state-of-the-art automatic speech recognition (ASR) model. It has been converted into the CoreML format for compatibility with Whisperkit, enabling efficient ASR inference on Apple Silicon devices.
Breeze-ASR-25 is a high-performance automatic speech recognition model developed by MediaTek Research. This CoreML version enables on-device inference on Apple Silicon devices through Whisperkit integration.
This repository contains three CoreML models:
import whisperkit
# Load the model
model = whisperkit.load_model("your-username/Breeze-ASR-25_coreml")
# Transcribe audio
result = model.transcribe("path/to/audio.wav")
print(result.text)
This model is licensed under the Apache 2.0 License.
If you use this model, please cite the original Breeze-ASR-25 paper:
@article{breeze-asr-25,
title={Breeze-ASR-25: Efficient Speech Recognition for Mobile Devices},
author={MediaTek Research},
journal={arXiv preprint},
year={2024}
}