cstr commited on
Commit
a476adc
·
verified ·
1 Parent(s): 38810d3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ pipeline_tag: automatic-speech-recognition
6
+ tags:
7
+ - audio
8
+ - speech-recognition
9
+ - transcription
10
+ - gguf
11
+ - moonshine
12
+ - lightweight
13
+ library_name: ggml
14
+ base_model: UsefulSensors/moonshine-tiny
15
+ ---
16
+
17
+ # Moonshine Tiny -- GGUF
18
+
19
+ GGUF conversions and quantisations of [`UsefulSensors/moonshine-tiny`](https://huggingface.co/UsefulSensors/moonshine-tiny) for use with **[CrispStrobe/CrispASR](https://github.com/CrispStrobe/CrispASR)**.
20
+
21
+ ## Available variants
22
+
23
+ | File | Quant | Size | Notes |
24
+ |---|---|---|---|
25
+ | `moonshine-tiny.gguf` | F32 | 104 MB | Full precision |
26
+ | `moonshine-tiny-q8_0.gguf` | Q8_0 | 33 MB | High quality |
27
+ | `moonshine-tiny-q4_k.gguf` | Q4_K | 21 MB | Best size/quality tradeoff |
28
+
29
+ All variants produce correct transcription on test audio.
30
+
31
+ ## Model details
32
+
33
+ - **Architecture:** Conv1d stem + 6L transformer encoder + 6L transformer decoder (288d, 8 heads, partial RoPE, SiLU/GELU)
34
+ - **Parameters:** 27M
35
+ - **Languages:** English only
36
+ - **WER:** 4.55% (LibriSpeech clean), 11.68% (Other)
37
+ - **Performance:** 11.2x realtime on CPU (F32)
38
+ - **License:** MIT
39
+ - **Source:** [moonshine.cpp](https://github.com/csexton-ua/moonshine.cpp) (MIT)
40
+
41
+ ## Usage with CrispASR
42
+
43
+ ```bash
44
+ ./build/bin/crispasr -m moonshine-tiny-q4_k.gguf -f audio.wav
45
+ ./build/bin/crispasr --backend moonshine -m moonshine-tiny-q4_k.gguf -f audio.wav -osrt
46
+ ```