Views
No views yet
| Component | Format |
|---|---|
| Text projections | signed Hadamard + block-GPTQ INT3 |
| Weak columns | Output-Fisher selected BF16 recovery |
| Token embedding | group-128 INT4 |
| Vision weights | group-128 INT4 |
| Full-model packed-equivalent rate | 3.6912 bpw |
| Scope | Metric | Result |
|---|---|---|
| Text backbone | WikiText-2 PPL ↓ | 9.2494 |
| Text backbone | ARC-Challenge, 299 ↑ | 46.15 |
| Text backbone | MMLU, 13,943 ↑ | 38.13 |
| Full VLM | ChartQA-128 exact ↑ | 44.53 |
| Full VLM | ChartQA-128 relaxed ↑ | 53.91 |
pip install "transformers @ git+https://github.com/huggingface/transformers.git@main"1import torch
2from transformers import AutoModelForImageTextToText, AutoProcessor
3
4model_id = "HarimxChoi/WarpQuant-Qwen3.5-4B-R16E4V4"
5processor = AutoProcessor.from_pretrained(model_id)
6model = AutoModelForImageTextToText.from_pretrained(
7 model_id,
8 torch_dtype=torch.bfloat16,
9 device_map="auto",
10)1@misc{choi2026warpquant,
2 author = {Harim Choi},
3 title = {WarpQuant: Dual-Domain LLM Quantization via Hadamard Rotation and Output-Fisher Sensitivity},
4 year = {2026},
5 url = {https://harimxchoi.github.io/projects/warpquant/}
6}