Views
No views yet
Special-purpose model. This checkpoint does exactly one job: cleaning up speech-to-text output under the fixed system prompts and JSON output contract documented below. It is not a general-purpose chat or instruction model; off-task use (open-ended chat, question answering) is unsupported and will underperform the base model. All Yooz task models are collected in Yooz Working Models; for general-purpose local LLMs see Lean QAT MLX.
{"result": "..."}.{"result": "<cleaned text>"}. No explanation, no markdown.mlx-community/Qwen2.5-0.5B-Instruct-4bit (Apache 2.0).mlx-swift-lm consumers.mlx-lm:1from mlx_lm import load, generate
2
3model, tokenizer = load("YoozLabs/Yooz-Light-v2-Qwen2.5-0.5B-LoRA")
4
5system_prompt = """Fix grammar, capitalize properly, and convert spoken numbers
6to digits. Keep ALL sentences. Return the fixed text as JSON.
7
8Always respond with ONLY a JSON object. Never remove sentences. Never include
9explanations."""
10
11raw = "the meeting is at two pm on march fifteenth"
12
13response = generate(
14 model, tokenizer,
15 prompt=tokenizer.apply_chat_template(
16 [{"role": "system", "content": system_prompt},
17 {"role": "user", "content": raw}],
18 tokenize=False, add_generation_prompt=True,
19 ),
20 max_tokens=256,
21)
22# {"result": "The meeting is at 2 PM on March 15th."}YoozLabs/Yooz-Quality-v2-Qwen3.5-0.8B-LoRA — the Quality tier sibling.yooz-engine — runtime that consumes these checkpoints.