Views
No views yet
PROVENANCE.md).| Property | Value |
|---|---|
| Base Model | Qwen/Qwen-Image-Bench (Qwen3.6-27B based) |
| Parameters | 27 billion (dense) |
| Architecture | qwen3_5 dense VLM (Qwen3_5ForConditionalGeneration) |
| Modality | Image + text input, text (JSON scores) output |
| License | Apache 2.0 |
| Weight Quantization | 8-bit affine, group size 64; vision tower BF16 |
| Framework | MLX (Apple Silicon), mlx-vlm >= 0.6 |
1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("majentik/Qwen-Image-Bench-MLX-8bit")
5
6prompt = apply_chat_template(
7 processor, model.config,
8 "Evaluate this generated image against the prompt: 'a red square'. "
9 "Score Quality, Aesthetics, Alignment, Real-world Fidelity, Creative "
10 "Generation (0=Fail, 1=Pass, 2=Excel) as JSON.",
11 num_images=1,
12)
13output = generate(model, processor, prompt, image=["generated.png"], max_tokens=512)
14print(output.text)judge.py and structured checklists.| Variant | Approx size | Use case |
|---|---|---|
| 4bit | ~17 GB | Balanced default |
| 6bit | ~23 GB | Higher judge fidelity |
| 8bit(https://huggingface.co/majentik/Qwen-Image-Bench-MLX-8bit) | ~30 GB | Reference fidelity |