Views
No views yet
openai/whisper-large-v3 with the LoRA adapter
Flurin17/whisper-large-v3-peft-swiss-german merged into the weights. This is a
standalone FP16 checkpoint for Apple Silicon, mlx-audio, oMLX and
mlx-whisper.pip install "omlx[audio]".
Download this repository through the oMLX model browser or place it below the
configured model directory. It is detected as an audio_stt model and served
through POST /v1/audio/transcriptions.1curl http://localhost:8000/v1/audio/transcriptions \
2 -F "file=@audio.wav" \
3 -F "model=whisper-large-v3-swiss-german-mlx-fp16" \
4 -F "language=de"pip install mlx-whisper1import mlx_whisper
2
3result = mlx_whisper.transcribe(
4 "audio.wav",
5 path_or_hf_repo="gcoli/whisper-large-v3-swiss-german-mlx-fp16",
6 language="de",
7 task="transcribe",
8)
9print(result["text"])1ecca609f9a5ae2cd97a576a9725bc714c022a932ae117cf342bc57d6068066181a9d359e98a2961mlx-examples Whisper converter, revision
796f5b53cab69a3d48a44233ce21aae889e94a08mlx-whisper layout and transposes convolution kernels as required. No
quantization is applied.mlx-audio Whisper loader. oMLX auto-detects model_type: whisper
as an audio_stt engine.openai/whisper-large-v3 and converted to MLX
FP16. The Whisper base model remains subject to its Apache-2.0 license. This
repository grants no additional rights to upstream models, training data, or
software and does not imply endorsement by ETH Zurich, OpenAI, or the adapter
authors.