awni commited on
Commit
7f71d4d
·
verified ·
1 Parent(s): f7f36a5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
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
+ ```