How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="solaarphunk/turbospeak-correction-model",
	filename="",
)
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

TurboSpeak Correction Model

Fine-tuned Qwen3-1.7B (Q4_K_M quantization) for cleaning up speech transcription output.

What it does

  • Removes filler words (um, uh, like, you know, basically)
  • Fixes stutters (w-w-want โ†’ want)
  • Resolves mid-sentence self-corrections (speaker says X then corrects to Y โ†’ keeps only Y)
  • Preserves all content words โ€” never adds words the speaker didn't say

Performance

Metric Score
Correction accuracy 87.5% (35/40 P+G)
Filler/stutter handling 100%
Avg latency ~100ms on Apple Silicon
Model size 1.0 GB (Q4_K_M)

Training

  • Base model: Qwen/Qwen3-1.7B
  • Fine-tuning: LoRA (rank=8, lr=5e-5, 500 iterations)
  • Training data: 2,390 examples (1,710 base + 680 hard corrections)
  • Quantization: Q4_K_M via llama.cpp

Usage

Used by TurboSpeak macOS dictation app. Runs locally via llama.cpp / llama-cpp-2 Rust bindings.

System prompt (ChatML format)

Clean up the transcribed text. Remove filler words, fix stutters, and resolve mid-sentence corrections. Output only the cleaned text.

License

Apache 2.0 (same as base Qwen3 model)

Downloads last month
-
GGUF
Model size
2B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for solaarphunk/turbospeak-correction-model

Finetuned
Qwen/Qwen3-1.7B
Adapter
(511)
this model