CoolFace
Modelpublic

majentik/GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes3downloads
Model Card

GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit

8-bit MLX quantization of microsoft/GELab-Zero-4B-preview-Sico-Evolution — Microsoft's Qwen3-VL-based GUI agent (Edge / Copilot UI trajectories, from the Sico evolution pipeline) — running natively on Apple Silicon via mlx-vlm.

At a glance

Sourcemicrosoft/GELab-Zero-4B-preview-Sico-Evolution @ 517c05402871b7c3020eab0925c7e0f9c2b02248
ArchitectureQwen3VLForConditionalGeneration (36-layer text tower, 24-layer vision tower)
FormatMLX (Apple Silicon native), mlx-vlm loadable
Quantization8-bit, group-size 64 (9.20 bits/weight effective)
Disk size4.8 GB

Verification (2026-07-12, M-series Mac)

Converted with 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."

Sibling variants

VariantSizeStatus
GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit4.8 GBpublic
GELab-Zero-4B-preview-Sico-Evolution-MLX-6bit3.8 GBpublic
GELab-Zero-4B-preview-Sico-Evolution-MLX-4bit2.9 GBpublic

<!-- sibling-table -->

Usage

Requires mlx-vlm >= 0.3.9:

python
from mlx_vlm import load, generate
from mlx_vlm.prompt_utils import apply_chat_template

model, processor = load("majentik/GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit")
prompt = apply_chat_template(processor, model.config, "Describe this screenshot.", num_images=1)
print(generate(model, processor, prompt, ["screenshot.png"], max_tokens=256))
bash
python -m mlx_vlm generate \
    --model majentik/GELab-Zero-4B-preview-Sico-Evolution-MLX-8bit \
    --image screenshot.png --prompt "What action should I take next?"

Intended use

GUI-agent tasks — screenshot understanding, UI grounding, and next-action prediction for desktop/web automation — locally on Apple Silicon. This is the Edge/Copilot-evolved variant; see the base model card for benchmarks (82.9% TSR) and the Sico pipeline.

Reproduce

bash
python -m mlx_vlm convert --hf-path microsoft/GELab-Zero-4B-preview-Sico-Evolution \
    --mlx-path GELab-8bit -q --q-bits 8 --q-group-size 64

License

Apache-2.0, inherited from the upstream model. This repository redistributes quantized weights with attribution; training and evaluation details are on the base model card.