div0-space commited on
Commit
cf73191
·
verified ·
1 Parent(s): 5ed45c6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ - pl
6
+ - de
7
+ - fr
8
+ - es
9
+ - it
10
+ - pt
11
+ - nl
12
+ - ru
13
+ - zh
14
+ - ja
15
+ - ko
16
+ - ar
17
+ - hi
18
+ - multilingual
19
+ tags:
20
+ - whisper
21
+ - speech-to-text
22
+ - mlx
23
+ - quantized
24
+ - q8
25
+ - apple-silicon
26
+ library_name: transformers
27
+ pipeline_tag: automatic-speech-recognition
28
+ base_model: openai/whisper-large-v3
29
+ ---
30
+
31
+ # Whisper Large V3 - MLX Q8 Quantized
32
+
33
+ 8-bit quantized version of OpenAI's Whisper Large V3, optimized for Apple Silicon with MLX.
34
+
35
+ ## Model Details
36
+
37
+ | Property | Value |
38
+ |----------|-------|
39
+ | Original Model | [openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3) |
40
+ | Parameters | ~1.55B |
41
+ | Quantization | INT8 (Q8) |
42
+ | Size | ~1.6GB |
43
+ | Decoder Layers | 32 |
44
+
45
+ Best accuracy among Whisper models. Use `large-v3-turbo` for faster inference with slightly lower accuracy.
46
+
47
+ ## Other Whisper Models
48
+
49
+ | Model | Size | Speed | Link |
50
+ |-------|------|-------|------|
51
+ | small | ~300MB | Fastest | [LibraxisAI/whisper-small-mlx-q8](https://huggingface.co/LibraxisAI/whisper-small-mlx-q8) |
52
+ | medium | ~800MB | Fast | [LibraxisAI/whisper-medium-mlx-q8](https://huggingface.co/LibraxisAI/whisper-medium-mlx-q8) |
53
+ | **large-v3** (this) | ~1.6GB | Slow | - |
54
+ | large-v3 q4 | ~900MB | Medium | [LibraxisAI/whisper-large-v3-q4](https://huggingface.co/LibraxisAI/whisper-large-v3-q4) |
55
+ | large-v3-turbo | ~900MB | Fast | [LibraxisAI/whisper-large-v3-turbo-mlx-q8](https://huggingface.co/LibraxisAI/whisper-large-v3-turbo-mlx-q8) |
56
+
57
+ ## Usage
58
+
59
+ ```python
60
+ import mlx_whisper
61
+
62
+ result = mlx_whisper.transcribe(
63
+ "audio.wav",
64
+ path_or_hf_repo="LibraxisAI/whisper-large-v3-mlx-q8"
65
+ )
66
+ print(result["text"])
67
+ ```
68
+
69
+ ## Supported Languages
70
+
71
+ Full multilingual support: English, Polish, German, French, Spanish, Italian, Portuguese, Dutch, Russian, Chinese, Japanese, Korean, Arabic, Hindi, and 90+ additional languages.
72
+
73
+ ## Hardware Requirements
74
+
75
+ - Apple Silicon Mac (M1/M2/M3/M4)
76
+ - Minimum 16GB RAM recommended
77
+
78
+ ## License
79
+
80
+ MIT - inherited from OpenAI Whisper.
81
+
82
+ ---
83
+ *Converted by [LibraxisAI](https://huggingface.co/LibraxisAI) using mlx-whisper*