m-i/AREX-Base-mxfp4_plus

This model was converted to MLX format from BAAI/AREX-Base using mlx-vlm version 0.4.4. Refer to the original model card for more details on the model.

Use with mlx

pip install -U mlx-vlm
python -m mlx_vlm.generate --model m-i/AREX-Base-mxfp4_plus --max-tokens 100 --temperature 0.0 --prompt "Describe this image." --image <path_to_image>

Quant Predicate

'[INFO] Quantized model with 4.883 bits per weight.'

def qwen35_122b_experts_only_predicate(path: str, module):
    """
    Qwen3.5-122B MoE:
      - Routed experts -> MXFP4
      - Everything else -> keep BF16
    """

    p = path.lower()

    # ------------------------------------------------------------------
    # Routed experts only
    # ------------------------------------------------------------------
    if "switch_mlp" in p:
        # Keep metadata tensors untouched
        if any(x in p for x in (
            "bias",
            "scales",
        )):
            return False

        return {
            "mode": "mxfp4",
            "groupe":32,
        }

    # ------------------------------------------------------------------
    # Keep everything else BF16
    # ------------------------------------------------------------------
    return False
Downloads last month
2
Safetensors
Model size
28B params
Tensor type
BF16
U8
U32
MLX
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 馃檵 Ask for provider support

Model tree for mlx-community/AREX-Base-mixed-mxfp4-bf16

Finetuned
BAAI/AREX-Base
Quantized
(3)
this model