Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- ja
|
5 |
+
base_model:
|
6 |
+
- kotoba-tech/kotoba-whisper-v2.0
|
7 |
+
library_name: mlx
|
8 |
+
tags:
|
9 |
+
- whisper
|
10 |
+
---
|
11 |
+
|
12 |
+
# kotoba-whisper-v2.0-mlx
|
13 |
+
|
14 |
+
This repository contains a converted `mlx-whisper` model of [kotoba-whisper-v2.0](https://huggingface.co/kotoba-tech/kotoba-whisper-v2.0) which is suitable for running with Apple Silicon.
|
15 |
+
As `kotoba-whisper-v2.0` 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.
|
16 |
+
|
17 |
+
## Usage
|
18 |
+
|
19 |
+
```sh
|
20 |
+
pip install mlx-whisper
|
21 |
+
```
|
22 |
+
|
23 |
+
```py
|
24 |
+
mlx_whisper.transcribe(speech_file, path_or_hf_repo="kaiinui/kotoba-whisper-v2.0-mlx")
|
25 |
+
```
|
26 |
+
|
27 |
+
## Related Links
|
28 |
+
* [kotoba-whisper-v2.0](https://huggingface.co/kotoba-tech/kotoba-whisper-v2.0) (The original model)
|
29 |
+
* [mlx-whisper](https://github.com/ml-explore/mlx-examples/tree/main/whisper)
|