Papers › ARCHead: Activation-Metric Residual Correction for Large Language Model Output Heads

ARCHead: Activation-Metric Residual Correction for Large Language Model Output Heads

3 Aug 2026arXiv:2608.02703added by Syntology

Şuayp Talha Kocabay, Talha Rüzgar Akkuş, Kamer Ali Yuksel

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Weight-only quantization substantially reduces the storage of large language model (LLM) transformer blocks, but practical backends often retain the final language-modeling head (LM-head) in BF16 or FP16. Quantizing this projection naively can strongly perturb the vocabulary-logit distribution. We present ARCHead, a packed LM-head compressor that combines a quantized low-rank core, group-wise INT4 residuals, and a low-rank correction fitted in an activation-derived metric. ARCHead stores no dense BF16 head and reduces persistent LM-head storage by 3.7-3.9x. On Qwen3-8B-Base, it uses 25.6% of BF16 head storage while attaining 1.007 relative perplexity; storage-matched naive INT4 yields 1.14-1.16. Replacing the BF16 head left by AWQ or bitsandbytes adds only 0.006-0.007 cross-entropy, with less than 2% throughput change in our measurements. ARCHead therefore complements block quantizers by compressing the large output projection they can leave untouched. Code is available at https://github.com/suayptalha/archead.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2608.02703")

Code

Syntology Ran 19 of 20 code samples harvested from 1 repository linked to this paper; 1 has no recorded run. Of those that ran: 13 ran · our draft was wrong; 3 ran · fixture could not drive it; 3 ran with no contract checked.

By repository: found in paper text by Syntology: 20 samples from 1 repository, 19 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

suayptalha/archead found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

20 samples harvested; 19 ran; 0 honoured the contract we drafted; 1 has no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

13ran · our draft was wrong
3ran · fixture could not drive it
3ran
1unverified

Licence: 0 of the 20 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from suayptalha/archead. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

ARCHeadPacked suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran MIT (permissive) · 475fd2cc8062ba47 · report
CompressedHead suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 7be9cd1d083b3f12 · report
LMHeadConfig suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran MIT (permissive) · e220e73affd6d602 · report
_pad_cols suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · fixture could not drive it fingerprinted MIT (permissive) · 6f7f45db26e94ae1 · report
compress_gptq suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · f99f8e31bb13809c · report
int4_dq_per_row suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 5783ff7794088771 · report
int4_dq_per_row_packed suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 7fd8f73785679df0 · report
int8_dq_per_row suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 0ad3c214dca74fd6 · report
int8_dq_per_row_packed suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 66bcf153b0a61ad2 · report
lowrank_rand suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · fixture could not drive it MIT (permissive) · e7dbcf53f4f4270a · report
make_kernel_fused_dequant_row suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 09c2bd65d9e48901 · report
make_metric suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · df6233d5637db742 · report
pack_int4 suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 87be27c4f4213c52 · report
quant_group suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · f9c7158e8e46dfe1 · report
quant_group_packed suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · b4bce7789e31d1c4 · report
quantize_Wd_per_row_int8 suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 073277642104b103 · report
sc4_quant_R suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · fixture could not drive it fingerprinted MIT (permissive) · 37348d6bf052f8bd · report
sc4_quant_R_packed suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 9427bb505bf281e0 · report
unpack_int4 suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 8d0cffe63ad4024f · report
compress_lm_head suayptalha/archead/archead/lm_head_methods.py found in paper text by Syntology unverified MIT (permissive) · b3f401d1268426a1 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2608.02703, was issued in August 2026, after that date, so the archive has no leaderboard rows for it.

Placed on leaderboards by Syntology Syntology

This paper's own results, placed by Syntology on archive leaderboards: a model pointed at the cell in the paper's own table, the number was read from that cell and checked against the leaderboard's metric, dataset, split and scale, and an independent check accepted it. Not reviewed by the paper's authors or by the archive's editors; listed below each leaderboard's archive rows, never ranked among them.

Leaderboard (task · dataset)Method (configuration)ValuesWhere in the paperReport
Question Answering · TruthfulQA ARCHead MC2 0.5408 Table 10, row “ARCHead” report

Syntology's extractor also considered 2 other leaderboards for this paper and placed the paper on none of them: 2 refused by a rule. What is not shown.

Syntology has checked 6,264 of the 9,581 papers on this site that are newer than the archive; results from the others appear after they are checked.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections