CoolFace
Modelpublic

mlx-community/whisper-small-4bit

sourceHugging Faceapache-2.0updated 9mo agoView on Hugging Face
0likes105downloads
Model Card

mlx-community/whisper-small-4bit

This model was converted to MLX format from openai/whisper-small using mlx-audio-plus version 0.1.4.

Use with mlx-audio-plus

bash
pip install -U mlx-audio-plus

Command line

bash
mlx_audio.stt --model mlx-community/whisper-small-4bit --audio audio.mp3

Python

python
from mlx_audio.stt import transcribe

result = transcribe(
    audio="audio.mp3",
    model="mlx-community/whisper-small-4bit",
)
print(result["text"])