solaarphunk commited on
Commit
ce48118
·
verified ·
1 Parent(s): acb782f

Update model card with v12b benchmark results

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3-1.7B
4
+ tags:
5
+ - gguf
6
+ - speech-to-text
7
+ - text-cleanup
8
+ - dictation
9
+ - lora
10
+ - qwen3
11
+ language:
12
+ - en
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ # TurboSpeak Correction Model
17
+
18
+ Fine-tuned Qwen3-1.7B (Q4_K_M quantization) for cleaning up speech transcription output.
19
+
20
+ ## What it does
21
+
22
+ - Removes filler words (um, uh, like, you know, basically)
23
+ - Fixes stutters (w-w-want → want)
24
+ - Resolves mid-sentence self-corrections (speaker says X then corrects to Y → keeps only Y)
25
+ - Preserves all content words — never adds words the speaker didn't say
26
+
27
+ ## Performance
28
+
29
+ | Metric | Score |
30
+ |--------|-------|
31
+ | Correction accuracy | 87.5% (35/40 P+G) |
32
+ | Filler/stutter handling | 100% |
33
+ | Avg latency | ~100ms on Apple Silicon |
34
+ | Model size | 1.0 GB (Q4_K_M) |
35
+
36
+ ## Training
37
+
38
+ - Base model: Qwen/Qwen3-1.7B
39
+ - Fine-tuning: LoRA (rank=8, lr=5e-5, 500 iterations)
40
+ - Training data: 2,390 examples (1,710 base + 680 hard corrections)
41
+ - Quantization: Q4_K_M via llama.cpp
42
+
43
+ ## Usage
44
+
45
+ Used by [TurboSpeak](https://github.com/kavanaghpatrick/gpu-forge) macOS dictation app.
46
+ Runs locally via llama.cpp / llama-cpp-2 Rust bindings.
47
+
48
+ ### System prompt (ChatML format)
49
+
50
+ ```
51
+ Clean up the transcribed text. Remove filler words, fix stutters, and resolve mid-sentence corrections. Output only the cleaned text.
52
+ ```
53
+
54
+ ## License
55
+
56
+ Apache 2.0 (same as base Qwen3 model)