Views
No views yet
| File | Size | Role |
|---|---|---|
qwen-talker-1.7b-base-Q4_K_M.gguf | 1.22 GB | Talker LM — text to 12.5 Hz codec frames. Carries the merged Hebrew weights. |
qwen-tokenizer-12hz-Q4_K_M.gguf | 255 MB | 12 Hz audio codec — frames to 24 kHz mono audio. Unmodified upstream. |
ʃalˈom, mˈa ʃlomχˈa hajˈom?1printf 'ʃalˈom, mˈa ʃlomχˈa hajˈom?' | ./build/qwen-tts \
2 --model qwen-talker-1.7b-base-Q4_K_M.gguf \
3 --codec qwen-tokenizer-12hz-Q4_K_M.gguf \
4 --ref-wav reference_voice.wav \
5 --lang auto --greedy -o out.wav--ref-wav, a reference recording of the voice to clone.lora_A/lora_B pairs at alpha / r = 2.0, the adapter's
modules_to_save lists 20 fully retrained tensors (codec_head,
text_projection, and the fifteen code_predictor.lm_head.* heads) that
replace their base counterparts outright. Folding only the LoRA pairs
yields a model that loads and sounds wrong.scripts/merge_qwen_lora.py
in the MamboTTS repo, math in float32 and cast back to bf16.convert.py from qwentts.cpp, producing F32 GGUFs.quantize from the same project, to Q4_K_M. RVQ codebooks
and their projections stay F32 under that tool's policy, since
nearest-neighbour lookup is sensitive to per-row quantization noise.