Views
No views yet
mlx-vlm.| Source | microsoft/GELab-Zero-4B-preview-Sico-Evolution @ 517c05402871b7c3020eab0925c7e0f9c2b02248 |
| Architecture | Qwen3VLForConditionalGeneration (36-layer text tower, 24-layer vision tower) |
| Format | MLX (Apple Silicon native), mlx-vlm loadable |
| Quantization | 6-bit, group-size 64 (7.39 bits/weight effective) |
| Disk size | 3.8 GB |
mlx-vlm 0.3.9 and image-inference smoke-tested locally before publishing — the BF16 source and this quantized pack both correctly describe the model's own benchmark chart:"The image displays a bar chart comparing the Task Success Rate (TSR) of various models in Edge/Copilot test cases."
| Variant | Size | Status |
|---|---|---|
| GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit | 4.8 GB | public |
| GELab-Zero-4B-preview-Sico-Evolution-MLX-6bit | 3.8 GB | public |
| GELab-Zero-4B-preview-Sico-Evolution-MLX-4bit | 2.9 GB | public |
mlx-vlm >= 0.3.9:1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("majentik/GELab-Zero-4B-preview-Sico-Evolution-MLX-6bit")
5prompt = apply_chat_template(processor, model.config, "Describe this screenshot.", num_images=1)
6print(generate(model, processor, prompt, ["screenshot.png"], max_tokens=256))1python -m mlx_vlm generate \
2 --model majentik/GELab-Zero-4B-preview-Sico-Evolution-MLX-6bit \
3 --image screenshot.png --prompt "What action should I take next?"1python -m mlx_vlm convert --hf-path microsoft/GELab-Zero-4B-preview-Sico-Evolution \
2 --mlx-path GELab-6bit -q --q-bits 6 --q-group-size 64