Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,49 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
library_name: mlx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
# whisper-large-v3-turbo-german-f16-q4
|
6 |
This model was converted to MLX format.
|
7 |
|
|
|
1 |
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- de
|
5 |
library_name: mlx
|
6 |
+
pipeline_tag: automatic-speech-recognition
|
7 |
+
model-index:
|
8 |
+
- name: mlx version of whisper-large-v3-turbo-german by Florian Zimmermeister @primeLine
|
9 |
+
results:
|
10 |
+
- task:
|
11 |
+
type: automatic-speech-recognition
|
12 |
+
name: Speech Recognition
|
13 |
+
dataset:
|
14 |
+
name: German ASR Data-Mix
|
15 |
+
type: flozi00/asr-german-mixed
|
16 |
+
metrics:
|
17 |
+
- type: wer
|
18 |
+
value: 2.628 %
|
19 |
+
name: Test WER
|
20 |
+
datasets:
|
21 |
+
- flozi00/asr-german-mixed
|
22 |
+
- flozi00/asr-german-mixed-evals
|
23 |
+
base_model:
|
24 |
+
- primeline/whisper-large-v3-german
|
25 |
---
|
26 |
|
27 |
+
# whisper-large-v3-turbo-german-f16-q4
|
28 |
+
This model was converted to MLX format from primeline/whisper-large-v3-turbo-german and is quantized to 4bit, float16.
|
29 |
+
|
30 |
+
made with a [custom script for converting safetensor whisper models](https://github.com/CrispStrobe/mlx-examples/blob/main/whisper/convert_safetensors.py).
|
31 |
+
|
32 |
+
there is also an [unquantized float16](https://huggingface.co/mlx-community/whisper-large-v3-turbo-german-f16) version
|
33 |
+
|
34 |
+
## Use with MLX
|
35 |
+
```bash
|
36 |
+
git clone https://github.com/ml-explore/mlx-examples.git
|
37 |
+
cd mlx-examples/whisper/
|
38 |
+
pip install -r requirements.txt
|
39 |
+
```
|
40 |
+
|
41 |
+
```python
|
42 |
+
import mlx_whisper
|
43 |
+
result = mlx_whisper.transcribe("test.mp3", path_or_hf_repo="mlx-community/whisper-large-v3-turbo-german-f16")
|
44 |
+
print(result)
|
45 |
+
```
|
46 |
+
|
47 |
# whisper-large-v3-turbo-german-f16-q4
|
48 |
This model was converted to MLX format.
|
49 |
|