Views
No views yet
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 | mPLUG/GUI-Owl-7B |
| 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 |
| Reported effective bits per weight | 7.280 |
| Artifact size | 7.04G |
| Template repair | tokenizer_config.json["chat_template"] was re-injected after quantization |
bf16 base artifact.chat_template.json, chat_template.jinja, and tokenizer_config.json["chat_template"] were kept aligned after quantization.mlx_vlm prompt-packet validation: PASSvllm-mlx OpenAI-compatible serve validation: PASSbf16 artifact, including the same normalization failure.bf16 Chinese drift, but it became more verbose than the non-stream answer.7.04Gmlx_vlm validation used about 9.08 GB peak memoryvllm-mlx serve validation completed in about 21.80s non-stream and 24.60s streamedpip install -U mlx-vlm1python -m mlx_vlm.generate \
2 --model mlx-community/GUI-Owl-7B-6bit \
3 --image path/to/image.png \
4 --prompt "Describe the visible controls on this screen in five short bullet points." \
5 --max-tokens 256 \
6 --temperature 0.01from mlx_vlm import load, generate
2
3model, processor = load("mlx-community/GUI-Owl-7B-6bit")
4result = generate(
5 model,
6 processor,
7 prompt="Describe the visible controls on this screen in five short bullet points.",
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/GUI-Owl-7B-6bit --mllm --localhost --port 8000bf16 reference artifact, especially on streamed responses.1@misc{ye2025mobileagentv3foundamentalagentsgui,
2 title={Mobile-Agent-v3: Foundamental Agents for GUI Automation},
3 author={Jiabo Ye and Xi Zhang and Haiyang Xu and Haowei Liu and Junyang Wang and Zhaoqing Zhu and Ziwei Zheng and Feiyu Gao and Junjie Cao and Zhengxi Lu and Jitong Liao and Qi Zheng and Fei Huang and Jingren Zhou and Ming Yan},
4 year={2025},
5 eprint={2508.15144},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2508.15144},
9}