Views
No views yet
| Format | Text bpw | Payload | WikiText-2 PPL ↓ | ARC-299 ↑ | MMLU-13,943 ↑ |
|---|---|---|---|---|---|
| BF16 | 16.00 | 14.965 GiB | 6.2559 | 50.50 | 41.04 |
| Q4_K_M | 4.89 | 4.583 GiB | 6.4359 | 50.84 | 40.67 |
| IQ3_S + imatrix | 3.66 | 3.429 GiB | 6.9929 | 44.15 | 39.87 |
| WarpQuant Fisher R16E4H4 | 3.6256 | 3.389 GiB | 7.3446 | 45.49 | 38.99 |
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "HarimxChoi/WarpQuant-Llama-3-8B-R16E4H4"
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.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}