Variant: OptiQ mixed-precision (target 5.0 bpw)
Disk size: 42 MB
Quantized by:
sahilchachra
Unlike uniform 4-bit quantization (which forces every layer onto the same bit grid and often collapses reasoning at low bit widths), this model was quantized with
mlx-optiq using
per-layer KL-sensitivity analysis:
84 quantizable components total. OptiQ allocated bits non-uniformly based on KL sensitivity:
Evaluated on Apple M4 Pro with MLX. Model loaded once; performance and quality measured in a single pass.
1from mlx_lm import load, generate
2
3model, tokenizer = load("sahilchachra/supra-50m-instruct-optiq-5bpw-mlx")
4response = generate(model, tokenizer, prompt="Your prompt here", max_tokens=256, verbose=True)
See
SupraLabs/Supra-50M-Instruct for full model details and intended use.