1.5 family spans dense 2B and 8B variants plus a 30B-A3B MoE variant, and is framed upstream around a shared GUI semantics stage, online RL for long-horizon navigation, and model merging across grounding, web, and mobile domains.bf16 reference conversion and then quantized with mlx-vlm. It was validated locally with both mlx_vlm prompt-packet checks and vllm-mlx OpenAI-compatible serve checks.| Field | Value |
|---|---|
| Upstream model | inclusionAI/UI-Venus-1.5-2B |
| Artifact type | 6bit quantized MLX conversion |
| Source artifact | local validated bf16 MLX artifact |
| Conversion tool | mlx_vlm.convert via mlx-vlm 0.3.12 |
| Python | 3.11.14 |
| MLX | 0.31.0 |
| Transformers | 5.2.0 |
| Validation backend | vllm-mlx (phase/p1 @ 8a5d41b) |
| Quantization | 6bit |
| Group size | 64 |
| Quantization mode | affine |
| Converter dtype note | float16 |
| Reported effective bits per weight | 8.086 |
| Artifact size | 2.31G |
| Template repair | tokenizer_config.json["chat_template"] was re-injected after quantization |
| Inherited config workaround | local bf16 base was created from an upstream mirror with tie_word_embeddings = false |
chat_template.json, chat_template.jinja, and tokenizer_config.json["chat_template"].chat_template.jinja is present as an additive compatibility shim.bf16 base artifact.mlx_vlm prompt-packet validation: PASSvllm-mlx OpenAI-compatible serve validation: PASSbf16 reference artifactDefault Models answer were preserved2.31Gmlx_vlm validation used about 3.99 GB peak memory536-565 prompt tok/s and 114.6-180.2 generation tok/s across the four validation promptsvllm-mlx serve validation completed in about 8.94s non-stream and 9.68s streamedpip install -U mlx-vlm1python -m mlx_vlm.generate \
2 --model mlx-community/UI-Venus-1.5-2B-6bit \
3 --image path/to/image.png \
4 --prompt "Describe the visible controls on this screen." \
5 --max-tokens 256 \
6 --temperature 0.01from mlx_vlm import load, generate
2
3model, processor = load("mlx-community/UI-Venus-1.5-2B-6bit")
4result = generate(
5 model,
6 processor,
7 prompt="Describe the visible controls on this screen.",
8 image="path/to/image.png",
9 max_tokens=256,
10 temp=0.0,
11)
12print(result.text)python -m vllm_mlx.cli serve mlx-community/UI-Venus-1.5-2B-6bit --mllm --localhost --port 8000bf16 reference artifact.8B family on precise UI instruction-following, even though the serve path stayed stable.