Upload folder using huggingface_hub
Browse files- README.md +20 -0
- config.json +17 -0
- weights.npz +3 -0
README.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: mlx
|
3 |
+
---
|
4 |
+
|
5 |
+
# whisper-large-v3-turbo-q4
|
6 |
+
This model was converted to MLX format from [`openai/whisper-large-v3-turbo`]().
|
7 |
+
|
8 |
+
## Use with mlx
|
9 |
+
```bash
|
10 |
+
pip install mlx-whisper
|
11 |
+
```
|
12 |
+
|
13 |
+
```python
|
14 |
+
import mlx_whisper
|
15 |
+
|
16 |
+
result = mlx_whisper.transcribe(
|
17 |
+
"FILE_NAME",
|
18 |
+
path_or_hf_repo=mlx-community/whisper-large-v3-turbo-q4,
|
19 |
+
)
|
20 |
+
```
|
config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"n_mels": 128,
|
3 |
+
"n_audio_ctx": 1500,
|
4 |
+
"n_audio_state": 1280,
|
5 |
+
"n_audio_head": 20,
|
6 |
+
"n_audio_layer": 32,
|
7 |
+
"n_vocab": 51866,
|
8 |
+
"n_text_ctx": 448,
|
9 |
+
"n_text_state": 1280,
|
10 |
+
"n_text_head": 20,
|
11 |
+
"n_text_layer": 4,
|
12 |
+
"quantization": {
|
13 |
+
"group_size": 64,
|
14 |
+
"bits": 4
|
15 |
+
},
|
16 |
+
"model_type": "whisper"
|
17 |
+
}
|
weights.npz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:862bbc832b05f3f4ec19dd632b701d61a6d3f5c7906360a10d72a79870642a80
|
3 |
+
size 463664664
|