Views
No views yet
amitashwini/mumble-cleanup-2stage,
a LoRA fine-tune of Qwen/Qwen2.5-0.5B-Instruct
trained to clean up raw speech-to-text transcripts — removing filler words, false starts and
self-corrections while preserving the speaker's meaning.f16 and Q4_K_M. It adds the missing
Q4_0 build. Nothing here is a new model: same weights, different quantization target.llama.cpp ships ARM i8mm / dotprod dot-product kernels that the legacy
Q4_0 type hits directly; Q4_K_M does not benefit from that path.| Build | On-device cleanup latency | Result |
|---|---|---|
| Q4_K_M (upstream prebuilt) | exceeded a 15 s cap, aborted mid-decode | unusable |
| Q4_0 (this repo) | ~2.9 s | usable |
| File | Size (bytes) | SHA-256 |
|---|---|---|
mumble-cleanup-2stage-q4_0.gguf | 352,154,912 | 000efc700d74636bc3885afe1d8f32dbb3fe813b8198dea79d8fd73efcc2c711 |
7659e5dc4df164b50be3dce70d80b191fe7ac378a9e8e44b92e5e4313ef9ff82.shasum -a 256 mumble-cleanup-2stage-q4_0.ggufllama-quantize from llama.cpp (no custom tooling, no hand-edited
tensors), at submodule revision 152d337fa (tag b9867):1# 1. fetch upstream f16
2huggingface-cli download amitashwini/mumble-cleanup-2stage \
3 mumble-cleanup-2stage-f16.gguf --local-dir .
4
5# 2. confirm the source before quantizing
6shasum -a 256 mumble-cleanup-2stage-f16.gguf
7# expect 7659e5dc4df164b50be3dce70d80b191fe7ac378a9e8e44b92e5e4313ef9ff82
8
9# 3. quantize
10llama-quantize mumble-cleanup-2stage-f16.gguf \
11 mumble-cleanup-2stage-q4_0.gguf Q4_0amitashwini and the
Qwen team.