Instructions to use argmaxinc/whisperkit-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- WhisperKit
How to use argmaxinc/whisperkit-mlx with WhisperKit:
# Install CLI with Homebrew on macOS device brew install whisperkit-cli # View all available inference options whisperkit-cli transcribe --help # Download and run inference using whisper base model whisperkit-cli transcribe --audio-path /path/to/audio.mp3 # Or use your preferred model variant whisperkit-cli transcribe --model "large-v3" --model-prefix "distil" --audio-path /path/to/audio.mp3 --verbose
- MLX
How to use argmaxinc/whisperkit-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir whisperkit-mlx argmaxinc/whisperkit-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
Upload 3 files
Browse files
openai_whisper-tiny/config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"n_mels": 80,
|
| 3 |
+
"n_audio_ctx": 1500,
|
| 4 |
+
"n_audio_state": 384,
|
| 5 |
+
"n_audio_head": 6,
|
| 6 |
+
"n_audio_layer": 4,
|
| 7 |
+
"n_vocab": 51865,
|
| 8 |
+
"n_text_ctx": 448,
|
| 9 |
+
"n_text_state": 384,
|
| 10 |
+
"n_text_head": 6,
|
| 11 |
+
"n_text_layer": 4,
|
| 12 |
+
"model_type": "whisper"
|
| 13 |
+
}
|
openai_whisper-tiny/decoder.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d5a697ba7d50346040bc91fe252ee18ac4a06110a54928f54fe8aa50a0ad1a9
|
| 3 |
+
size 59113848
|
openai_whisper-tiny/encoder.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36edd41b44f2af7b695e74c84a95ceb9ffa3acdc309e28d1dbcb66340837ba9f
|
| 3 |
+
size 15270680
|