jiwook-mobilint commited on
Commit
1b14e61
·
verified ·
1 Parent(s): ae32d26

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: openai/whisper-small
4
+ tags:
5
+ - whisper
6
+ - automatic-speech-recognition
7
+ - ggml
8
+ - mobilint
9
+ language:
10
+ - en
11
+ - zh
12
+ - de
13
+ - es
14
+ - ru
15
+ - ko
16
+ - fr
17
+ - ja
18
+ - pt
19
+ - tr
20
+ - pl
21
+ - multilingual
22
+ library_name: whisper.cpp
23
+ ---
24
+
25
+ # whisper.cpp GGML Models for Mobilint NPU
26
+
27
+ This repository provides GGML-format model files for use with [whisper.cpp-mblt](https://git.mobilint.com/algorithm-team/integration/whisper.cpp-mblt), the Mobilint NPU-accelerated fork of [whisper.cpp](https://github.com/ggml-org/whisper.cpp).
28
+
29
+ ## Available Models
30
+
31
+ | Model | File | Size | Parameters |
32
+ |-------|------|------|------------|
33
+ | whisper-small | `ggml-small.bin` | 466 MB | 244M |
34
+
35
+ ## Usage
36
+
37
+ The GGUF file provides the tokenizer vocabulary and embedding weights. For NPU inference, pair it with the MXQ files from [mobilint/whisper-small](https://huggingface.co/mobilint/whisper-small):
38
+
39
+ ```bash
40
+ # Auto-download from HuggingFace
41
+ whisper-cli-mblt -hf mobilint/whisper-small -f audio.wav
42
+
43
+ # Or manual paths
44
+ whisper-cli-mblt \
45
+ -m ggml-small.bin \
46
+ --mxq-encoder whisper-small_encoder.mxq \
47
+ --mxq-decoder whisper-small_decoder.mxq \
48
+ -f audio.wav
49
+ ```
50
+
51
+ ## Related Repositories
52
+
53
+ - **[mobilint/whisper-small](https://huggingface.co/mobilint/whisper-small)** — Encoder and decoder MXQ files for Mobilint NPU
54
+ - **[ggerganov/whisper.cpp](https://huggingface.co/ggerganov/whisper.cpp)** — Upstream GGML models for CPU inference
55
+
56
+ ## License
57
+
58
+ Apache 2.0 (same as the original OpenAI Whisper model)