Views
No views yet
mistralai/Mistral-7B-Instruct-v0.3.Quantization Undoes Alignment: Bias Emergence in Compressed LLMs Across Models and Precision Levels Plawan Kumar Rath, Rahul Maliakkal. IEEE Cloud Summit 2026. Code: https://github.com/plawanrath/compression-bias-amplification arXiv: https://arxiv.org/abs/2605.15208
mlx_lm.convert:1python -m mlx_lm.convert \
2 --hf-path mistralai/Mistral-7B-Instruct-v0.3 \
3 --mlx-path ./mistral-7b-instruct-v0.3-q4 \
4 --quantize \
5 --q-bits 4 \
6 --q-group-size 64pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("plawanrath/mistral-7b-instruct-v0.3-q4-mlx-cba")
4prompt = tokenizer.apply_chat_template(
5 [{"role": "user", "content": "Hello!"}],
6 add_generation_prompt=True,
7 tokenize=False,
8)
9print(generate(model, tokenizer, prompt=prompt, max_tokens=128))mlx_lm.generate --model plawanrath/mistral-7b-instruct-v0.3-q4-mlx-cba --prompt "Hello!"| Variant | % of BF16-unbiased items that became biased |
|---|---|
| Q8 | 0.1–0.9% |
| Q6 | 0.3–1.3% |
| Q4 | 2.2–5.6% |
| Q3 | 6.0–21.1% |
mistralai/Mistral-7B-Instruct-v0.3mlx-lmapache-2.0). See the upstream model page for the full license text.1@inproceedings{rath2026quantization,
2 title = { Quantization Undoes Alignment: Bias Emergence in Compressed LLMs Across Models and Precision Levels },
3 author = {Rath, Plawan Kumar and Maliakkal, Rahul},
4 booktitle = { IEEE Cloud Summit 2026 },
5 year = {2026},
6 eprint = {2605.15208},
7 archivePrefix = {arXiv},
8 url = {https://arxiv.org/abs/2605.15208}
9}