CoolFace
Modelpublic

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

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

WarpQuant Qwen3.8-27B R16E4H4 Text

This is the text-only Qwen3.8-27B checkpoint produced with WarpQuant. It contains the causal language model, tokenizer, and chat template. The vision tower and MTP layer are not included.

Technical report · Code · Multimodal model

Format

WarpQuant applies a signed Hadamard rotation and 3-bit group quantization to 400 projection tensors. An Output-Fisher score selects a 0.05 bpw weak-column recovery budget in the original activation coordinates. The token embedding and output head use grouped INT4.

ScopeValue
Text parameters26,895,998,464
Analytical payload3.616506953 bpw
Analytical payload size11.323668 GiB
Calibration512 sequences × 512 tokens
Group / tile size128 / 128

The first release checkpoint stores reconstructed tensors in BF16 for direct Transformers evaluation. Its physical safetensor size is therefore larger than the analytical packed payload.

The text-only export was compared against the source conditional-generation checkpoint on the same tokenized prompt. The last-token logits matched exactly (max_abs_logit_error = 0, mean_abs_logit_error = 0, identical top-1), followed by a deterministic generation smoke test.

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

Commonsense is the macro average of fixed 1,000-example HellaSwag, WinoGrande, and PIQA screens. GSM8K uses the same first 500 examples, 5-shot prompts, and flexible-extract accuracy for all four models.

Use

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "HarimxChoi/WarpQuant-Qwen3.8-27B-R16E4H4-Text"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.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}
}