Views
No views yet
5B or 8B, that is a Hub-side auto-inference artifact from the exported MLX quantized config.SuperGemma4-26B-Abliterated-Multimodal line derived from the Gemma 4 26B-A4B multimodal family. The smaller badge does not mean the model was accidentally converted into a different 5B or 8B model.9 / 9, reliability audit 20 / 20.READYred for a solid red test image26 GB1from mlx_vlm import load, generate
2
3model, processor = load("/absolute/path/to/supergemma4-26b-abliterated-multimodal-mlx-8bit")
4
5prompt = processor.apply_chat_template(
6 [
7 {
8 "role": "user",
9 "content": [
10 {"type": "text", "text": "Describe the image briefly."},
11 {"type": "image", "image": "/absolute/path/to/image.png"},
12 ],
13 }
14 ],
15 tokenize=False,
16 add_generation_prompt=True,
17)
18
19out = generate(
20 model,
21 processor,
22 prompt,
23 image="/absolute/path/to/image.png",
24 max_tokens=128,
25 temperature=0.0,
26 verbose=False,
27)
28
29print(out.text)1python3 -m mlx_vlm.server \
2 --model /absolute/path/to/supergemma4-26b-abliterated-multimodal-mlx-8bit \
3 --host 127.0.0.1 \
4 --port 8091