MLX
awni commited on
Commit
7500693
1 Parent(s): f93c4ff

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -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-base-mlx-2bit")
19
+ ```