Downloads · 30 days
41
4% of all-time downloads
mlx-community/whisper-tiny-4bit
whisper-tiny-4bit is a automatic speech recognition model from mlx-community. Use it when you need speech turned into text. It is set up for mlx-audio-plus. The card lists the license as apache-2.0.
This model was converted to MLX format from openai/whisper-tiny using mlx-audio-plus version 0.1.4.
Downloads · 30 days
41
4% of all-time downloads
All-time downloads
924
Public
Parameters
37.2M
44.1 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors22 MB · 96%
How the weights are stored.
U3236.4M · 98%
From the Hugging Face model README
This model was converted to MLX format from openai/whisper-tiny using mlx-audio-plus version 0.1.4.
pip install -U mlx-audio-plus
mlx_audio.stt --model mlx-community/whisper-tiny-4bit --audio audio.mp3
from mlx_audio.stt import transcribe
result = transcribe(
audio="audio.mp3",
model="mlx-community/whisper-tiny-4bit",
)
print(result["text"])