awni commited on
Commit
06cacdc
1 Parent(s): ac13a70

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: mlx
4
+ ---
5
+
6
+ ## Use with mlx-whisper
7
+
8
+
9
+ ```bash
10
+ pip install mlx-whisper
11
+ ```
12
+
13
+ ```python
14
+ import mlx_whisper
15
+
16
+ result = mlx_whisper.transcribe(
17
+ speech_file,
18
+ path_or_hf_repo="mlx-community/whisper-large-v3-mlx")
19
+ ```