google/gemma-4-26B-A4B-it quantized to
4.674 bpw for Apple Silicon (MLX). Built by elevating the top sensitivity tier from 4-bit to
6-bit AFFINE on top of the
ship recipe (hsng95/gemma-4-26b-a4b-mlx-imatrix3plus-awq).
The top sensitivity-ranked 35 % of tensors get elevated from 4-bit to 6-bit AFFINE. At 6-bit, quantization noise becomes small enough that the AWQ rescaling baked in from the 4-bit-noise calibration becomes a near-no-op rather than a mismatch — yielding pure precision gain instead of calibration drift.
1from mlx_lm import load, generate
2
3model, tokenizer = load("hsng95/gemma-4-26b-a4b-mlx-imatrix3plus-awq-high6")
4
5messages = [
6 {"role": "system", "content": "You are a helpful assistant."},
7 {"role": "user", "content": "Write a short joke about saving RAM."},
8]
9prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True)
10print(generate(model, tokenizer, prompt=prompt, max_tokens=256))
Built on top of
mlx-community/gemma-4-26b-a4b-4bit (DWQ source) for imatrix capture, and the upstream
google/gemma-4-26B-A4B-it for bf16 source weights.
Apache 2.0 (Gemma 4 license terms apply, see
Gemma license).