whisper-small-4bit / README.md
depasquale's picture
Upload folder using huggingface_hub
1ac90ab verified
metadata
library_name: mlx-audio-plus
license: apache-2.0
base_model:
  - openai/whisper-small
tags:
  - mlx
  - whisper
  - speech-recognition
  - speech-to-text
  - stt
pipeline_tag: automatic-speech-recognition

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

pip install -U mlx-audio-plus

Command line

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

Python

from mlx_audio.stt import transcribe

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