Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: mlx
|
3 |
+
---
|
4 |
+
|
5 |
+
# whisper-large-v3-turbo
|
6 |
+
This model was converted to MLX format from [`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,
|
19 |
+
)
|
20 |
+
```
|