Self-contained snapshot of
macminix/qwen3_voice_design_t1
with the
ckpt-600 LoRA adapter folded into the Talker weights.
No PEFT layers at runtime — load directly with
Qwen3TTSModel.from_pretrained.
1from qwen_tts import Qwen3TTSModel
2
3wrap = Qwen3TTSModel.from_pretrained("<this-repo-id>")
4wavs, sr = wrap.generate_voice_design(
5 text="Hello, this is a test.",
6 instruct="A young adult female speaker speaks calmly at a normal pace.",
7 language="english",
8 temperature=0.9, top_p=1.0, top_k=50,
9 repetition_penalty=1.05, max_new_tokens=600,
10)
See
merge_info.json for the exact base path, adapter
path, LoRA hyperparameters, and merge timestamp.