CoolFace
Modelpublic

HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes16downloads
Model Card

WarpQuant Qwen3.8-27B R16E4H4

This is the complete Qwen3.8-27B multimodal checkpoint produced with WarpQuant. It retains the vision tower and multimodal components while applying WarpQuant to the 64-layer text backbone.

Technical report · Code · Text-only model

Format

The text backbone uses signed Hadamard rotation, 3-bit group quantization, block-GPTQ reconstruction, and Output-Fisher weak-column recovery. Token embeddings and the language-model head use group-128 INT4.

ScopeValue
Text parameters26,895,998,464
Text payload3.616506953 bpw
Text payload size11.323668 GiB
Projection group / tile128 / 128
Vision towerincluded
Multimodal projectorincluded

Text-backbone evaluation

FormatText bpwPayloadWT2 PPL ↓ARC-299 ↑MMLU-13,943 ↑Commonsense ↑GSM8K-500 flex ↑
BF1616.0050.11 GiB6.954852.1743.0779.2370.40
Q4KM4.9215.41 GiB6.965650.8442.9079.2375.20
IQ3_S3.694011.57 GiB7.182052.1742.9778.8359.40
WarpQuant R16E4H43.616511.32 GiB7.473756.8642.7278.8361.00

GSM8K uses the same first 500 examples, 5-shot prompts, and flexible-extract accuracy for all four models.

KV cache and activation ablation

ConfigurationPPL ↓Top-1KV compression @ 512
Weight-only6.6468reference1.00×
K4/V4/R1286.649597.65%2.14×
Dynamic A86.713992.10%1.00×
K4/V4/R128 + A86.694592.47%2.14×

Use

python
from transformers import AutoModelForImageTextToText, AutoProcessor

model_id = "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(model_id, device_map="auto")

Citation

bibtex
@misc{choi2026warpquant,
  author = {Harim Choi},
  title = {WarpQuant: Dual-Domain LLM Quantization via Hadamard Rotation and Output-Fisher Sensitivity},
  year = {2026},
  url = {https://github.com/HarimxChoi/WarpQuant}
}