kaiinui commited on
Commit
a1736a6
1 Parent(s): cb4b90c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - ja
5
+ library_name: mlx
6
+ tags:
7
+ - whisper
8
+ ---
9
+
10
+ # kotoba-whisper-v1.1-mlx
11
+
12
+ This repository contains a converted `mlx-whisper` model of [kotoba-whisper-v1.1](https://huggingface.co/kotoba-tech/kotoba-whisper-v1.1) which is suitable for running with Apple Silicon.
13
+ As `kotoba-whisper-v1.1` is derived from `distil-large-v3`, this model is significantly faster than [mlx-community/whisper-large-v3-mlx](https://huggingface.co/mlx-community/whisper-large-v3-mlx) without losing much accuracy for Japanese transcription.
14
+
15
+ **CAUTION: While the original model contains a custom pipeline implementation, this repository does NOT include them. Some functionalities such as `stable_ts` and `punctuator` may NOT work.**
16
+
17
+ ## Usage
18
+
19
+ ```sh
20
+ pip install mlx-whisper
21
+ ```
22
+
23
+ ```py
24
+ import mlx_whisper
25
+
26
+ mlx_whisper.transcribe(speech_file, path_or_hf_repo="kaiinui/kotoba-whisper-v1.1-mlx")
27
+ ```
28
+
29
+ ## Related Links
30
+ * [kotoba-whisper-v1.1](https://huggingface.co/kotoba-tech/kotoba-whisper-v1.1) (The original model)
31
+ * [mlx-whisper](https://github.com/ml-explore/mlx-examples/tree/main/whisper)