OpenAI Whisper on Apple silicon with MLX and the Hugging Face Hub
Project description
Whisper
Speech recognition with Whisper in MLX. Whisper is a set of open source speech recognition models from OpenAI, ranging from 39 million to 1.5 billion parameters.[^1]
Setup
Install ffmpeg
:
# on macOS using Homebrew (https://brew.sh/)
brew install ffmpeg
Install the mlx-whisper
package with:
pip install mlx-whisper
Run
CLI
At its simplest:
mlx_whisper audio_file.mp3
This will make a text file audio_file.txt
with the results.
Use -f
to specify the output format and --model
to specify the model. There
are many other supported command line options. To see them all, run
mlx_whisper -h
.
API
Transcribe audio with:
import mlx_whisper
text = mlx_whisper.transcribe(speech_file)["text"]
The default model is "mlx-community/whisper-tiny". Choose the model by
setting path_or_hf_repo
. For example:
result = mlx_whisper.transcribe(speech_file, path_or_hf_repo="models/large")
This will load the model contained in models/large
. The path_or_hf_repo
can
also point to an MLX-style Whisper model on the Hugging Face Hub. In this case,
the model will be automatically downloaded. A collection of pre-converted
Whisper
models
are in the Hugging Face MLX Community.
The transcribe
function also supports word-level timestamps. You can generate
these with:
output = mlx_whisper.transcribe(speech_file, word_timestamps=True)
print(output["segments"][0]["words"])
To see more transcription options use:
>>> help(mlx_whisper.transcribe)
Converting models
[!TIP] Skip the conversion step by using pre-converted checkpoints from the Hugging Face Hub. There are a few available in the MLX Community organization.
To convert a model, first clone the MLX Examples repo:
git clone https://github.com/ml-explore/mlx-examples.git
Then run convert.py
from mlx-examples/whisper
. For example, to convert the
tiny
model use:
python convert.py --torch-name-or-path tiny --mlx-path mlx_models/tiny
Note you can also convert a local PyTorch checkpoint which is in the original OpenAI format.
To generate a 4-bit quantized model, use -q
. For a full list of options:
python convert.py --help
By default, the conversion script will make the directory mlx_models
and save the converted weights.npz
and config.json
there.
Each time it is run, convert.py
will overwrite any model in the provided
path. To save different models, make sure to set --mlx-path
to a unique
directory for each converted model. For example:
model="tiny"
python convert.py --torch-name-or-path ${model} --mlx-path mlx_models/${model}_fp16
python convert.py --torch-name-or-path ${model} --dtype float32 --mlx-path mlx_models/${model}_fp32
python convert.py --torch-name-or-path ${model} -q --q_bits 4 --mlx-path mlx_models/${model}_quantized_4bits
[^1]: Refer to the arXiv paper, blog post, and code for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mlx_whisper-0.4.1.tar.gz
.
File metadata
- Download URL: mlx_whisper-0.4.1.tar.gz
- Upload date:
- Size: 778.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c9f342d9d4f6a4d1ffd1178051e1251f4a346067651f3707eea907fe36fe031 |
|
MD5 | 4756991e2b96e95ec4ae8b18298047f9 |
|
BLAKE2b-256 | a3d5e8e8996d030d876bcdd68c13619358df2b65592f20320b8c7aca6822cf90 |
Provenance
File details
Details for the file mlx_whisper-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: mlx_whisper-0.4.1-py3-none-any.whl
- Upload date:
- Size: 782.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f63f7071795d104a1a6d4b4cfc54ec65937bb4497bc2819769fffd3726a4154c |
|
MD5 | 07915454c306443eb106f279d55f10c8 |
|
BLAKE2b-256 | 1a4c1ac790f0619b2b2071f0903215809df9649578a124eed1e753b3f106cece |