Views
No views yet
empero-ai/Qwen3.8-9B, pinned to
revision 0934f3d2327ff2df2197495278c4c46ae5a56bd9. The source is a third-party full-parameter
distillation based on Qwen/Qwen3.5-9B; it
is not an official Qwen3.8 release. Conversion and validation were performed by
PocketAI Model Lab.mlx==0.32.0, mlx-vlm==0.6.8, batch size 1, temperature 0, seed 0, and
thinking disabled:| Precision | Prefill tok/s | Decode tok/s | Peak MLX memory |
|---|---|---|---|
| 4-bit | 3197.3 | 100.28 | 6.97 GB |
| 8-bit | 3144.8 | 57.86 | 11.37 GB |
| BF16 | 3103.4 | 30.56 | 19.85 GB |
validation-summary.json and artifact-manifest.json.python -m pip install "mlx==0.32.0" "mlx-vlm==0.6.8"1from pathlib import Path
2
3from huggingface_hub import snapshot_download
4from mlx_vlm import generate, load
5from mlx_vlm.prompt_utils import apply_chat_template
6
7repo_id = "PocketAiHub/Qwen3.8-9B-MLX"
8variant = "4bit" # "4bit", "8bit", or "bf16"
9snapshot = Path(snapshot_download(repo_id, allow_patterns=[f"{variant}/*"]))
10model, processor = load(str(snapshot / variant))
11prompt = apply_chat_template(
12 processor,
13 model.config,
14 "Explain why seasons occur.",
15 num_images=0,
16 enable_thinking=False,
17)
18result = generate(
19 model,
20 processor,
21 prompt,
22 max_tokens=256,
23 temperature=0.0,
24 enable_thinking=False,
25)
26print(result.text)mlx_vlm.generate media arguments.empero-ai/Qwen3.8-9B at 0934f3d2327ff2df2197495278c4c46ae5a56bd9Qwen/Qwen3.5-9BLICENSE. Original model credit remains with Empero
and the Qwen team; PocketAI is the conversion publisher.