Views
No views yet
loftq4 (W4A16-LoftQ-NF4) — SIMULATED⚠️ This is a simulated LoftQ backbone, stored densely in bf16, and it is incomplete on its own.LoftQ savesQ = quantize(W - BA)— the quantized residual. It is meant to be loaded together with the rank-16 adapter in theloftq_init/subfolder of this repo, which supplies theBAterm. Used bare, this checkpoint is missing that term; at 2 bits the bare backbone degenerates into pure repetition.python1from peft import PeftModel 2model = PeftModel.from_pretrained(base, "Jeesup/Llama-3.2-1B-Instruct-safetyquant-loftq4", 3 subfolder="loftq_init")The adapter is stored pre-divided by sqrt(alpha/r) so that peft's(alpha/r)·B@AreconstructsW - Qexactly at alpha=32, r=16. peft's ownloftq_initdoes not rescale, so it is only correct when alpha == r.Stored densely because vLLM 0.11 has no 2/3-bit kernel: no memory or latency benefit.
| field | value |
|---|---|
| scheme | W4A16-LoftQ-NF4 |
| method | loftq |
| simulated | yes — dense bf16 storage |
| weight bits | 4 |
| activation bits | 16 |
| group / block size | 64 |
| symmetric | n/a |
| calibration | none — LoftQ is data-free |
| calibration sha256 | n/a |
Jeesup/safety-quant-phase1 (loftq_comparison.md).Jeesup/safety-quant-phase0.