Pith. sign in

REVIEW 3 major objections 5 minor 29 references

Unveiling Simplicities of Attention: Adaptive Long-Context Head Identification

T0 review · 3 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read Attention heads are not fixedly local or long-context: a query-adaptive criterion built from key mean and covariance can label up to 90% of heads as local per query without losing benchmark performance, matching an expensive oracle at…

desk verdict A clever second-moment criterion shows query-adaptive head pruning beats static labeling, but the headline numbers rest on a moment prompt tuned on the same benchmarks. read the letter →

arxiv 2502.09647 v2 pith:VPHTPNDZ submitted 2025-02-11 cs.CL cs.LG

classification cs.CLcs.LG
keywords attentionheadslong-contexttransformersquery-adaptivesparsitysecond-orderstatisticsGaussianapproximationofkeyslocalwindowefficientinferenceRULERbenchmark
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Most LLM attention heads do not have a fixed role: some attend only to nearby tokens for every query, while others switch between local and long-context behavior depending on the token being predicted. This paper sets out to identify, for each query and head, whether the head can be safely approximated by attention restricted to a local window plus sink tokens. It proposes QAdA, a query-adaptive attention criterion that compares the local unnormalized attention mass with an estimate of the mass from all distant tokens, where the distant-token scores are modeled through a Gaussian approximation of the bulk keys. Across Llama, Mistral, and Qwen on RULER, LongBench, and long-context math and code tasks, the criterion reaches roughly 90% sparsity at matched performance, whereas static per-head criteria stop around 60%. The payoff is that long-context inference could skip most attention computation without first computing full attention scores.

What carries the argument

The load-bearing object is the QAdA criterion (Eq. 7): $c^{\text{approx}}(s) = \mathbf{1}\left[ A_{\text{local}} / (A_{\text{local}} + T_{\text{bulk}} \exp(\mu_s + \sigma_s^2/2)) \ge \tau_{\text{approx}} \right]$. It packages three ideas: the local-window plus attention-sink approximation, the separation of attention mass into local and bulk parts, and the Gaussian-key/log-normal-score approximation that turns the bulk mass into a constant-time statistic. Given precomputed $\mu_K$ and $\Sigma_K$, the criterion needs only the local scores, so it costs $O(T_{\text{local}} d + d^2)$ instead of the oracle's $O(Td)$, and the same moments can be updated incrementally during decoding.

What would settle it

Take a prompt whose distant keys are deliberately clustered rather than Gaussian (for example, many repeated near-identical passages, as in the paper's repeated-single-word ablation), compute the true bulk mass $A_{\text{bulk}}$ and QAdA's estimate for every head, and check whether the resulting head labels disagree with the oracle often enough that downstream accuracy at matched sparsity falls below the static oracle's. Concretely, on the variable-tracing task the current-prompt moments already flip QAdA's labels; a systematic measure of label disagreement across such non-Gaussian prompts would settle whether the second-moment approximation is the right object.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that the query-adaptive oracle decision — whether a head assigns at least a fraction $\tau$ of its attention mass to the local window — can be reproduced by a cheap closed-form test. Writing the unnormalized mass of the bulk keys as $A_{\text{bulk}} = T_{\text{bulk}} \mathbb{E}_{k^\top \sim \nu_{\text{bulk}}} \exp(qk^\top / \sqrt{d})$, the paper approximates the empirical key distribution $\nu_{\text{bulk}}$ by a Gaussian with mean $\mu_K$ and covariance $\Sigma_K$, so the expectation becomes the log-normal expression $\exp(\mu_s + \sigma_s^2/2)$ with $\mu_s = q\mu_K^\top/\sqrt{d}$ and $\sigma_s^2 = q\Sigma_K q^\top / d$. The resulting criterion, QAdA, compares the local mass $A_{\text{local}}$ against this estimated bulk mass and labels the head local when the local fraction exceeds a threshold. The paper claims this matches or beats static oracle head selection, approaches the adaptive oracle in several settings, and, when the moments are taken from an unrelated random-words prompt of the right length, is more dependable than moments from the current prompt.

Load-bearing premise

The assumption that carries the method is that the mean and covariance of the bulk keys, borrowed from an unrelated prompt of similar length, are enough to estimate the total attention mass of all distant tokens; the paper's own appendix reports this Gaussian estimate is off by a factor of roughly 2 to 5, and current-prompt moments fail on the variable-tracing task, so the transferability of these moments is doing essential work.

Editorial extensions

If this is right

  • Query-adaptive head labeling can roughly double the fraction of pruned attention heads at matched downstream performance: up to about 90% sparsity instead of about 60% for static criteria.
  • Because the criterion runs in constant time relative to sequence length, it can be applied during decoding before attention is computed, converting sparsity into FLOP savings without a separate trained classifier.
  • On several RULER and LongBench configurations, pruning by this criterion matches or surpasses the static oracle and even exceeds dense full attention for Qwen on RULER 8k and 16k, implying adaptive pruning can remove distracting context.
  • Head behavior is genuinely query-dependent: sparsity fluctuates token to token and task to task, and on a context-independent task the criterion labels far more heads as local, showing the model adapts to whether context is needed.
  • Moment statistics transferred from an unrelated random-words prompt of length $T-1024$ give more stable head selections than the current prompt's own moments, despite being task-agnostic.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If bulk attention mass is truly captured by mean and covariance, a per-model set of moments could be precomputed once from a generic prompt and reused across all future prompts, making the overhead negligible; the paper's random-words result hints at this but does not test it across many model sizes.
  • The same second-moment test could be inverted as an interpretability probe: heads repeatedly labeled long-context across diverse tasks are likely the retrieval or induction heads responsible for cross-context copying, so QAdA could localize them without dataset-specific annotation.
  • Because QAdA is parameter-free, it could generate pseudo-labels to train a cheaper predictor that decides locality from hidden states alone, reducing even the $O(d^2)$ covariance cost during generation.
  • The authors note they did not provide a flash-attention-compatible optimized implementation or wall-clock runtime measurements, so a concrete next test is whether QAdA's FLOP sparsity translates into actual speedup when integrated with such kernels.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper studies whether attention heads in transformer LLMs can be identified, per query, as local or long-context without computing full attention. It proposes QAdA, which approximates the bulk attention mass using a Gaussian moment estimate of the keys and compares it with the local-window mass. The method is evaluated on RULER, LongBench, and long-context variants of GSM8k and MBPP across Llama-3-8B, Mistral-7B, and Qwen2-7B. Results show that QAdA achieves higher sparsity with smaller performance loss than static oracle baselines and approaches an adaptive oracle. Ablations reveal that using moments from a separate random-words prompt is more robust than using current-prompt moments.

Significance. If the results hold, the paper offers a simple, training-free method for dynamic attention-head sparsity with potential inference gains, and it provides evidence for query-dependent local/long-context behaviors of attention heads. Strengths include the breadth of models and benchmarks, the comparison against a strong static oracle, and the transparent closed-form criterion. The main limitations are the heuristic nature of the Gaussian approximation, which has large mass-estimation errors, and the test-set-based selection of the moment prompt, which together leave the generality of the method uncertain.

major comments (3)
  1. [Section 3.2 (Option 2) and Section 4.4] The choice of the moment-generating prompt is effectively a hyperparameter selected on the evaluation tasks. The paper reports that current-prompt moments perform poorly on the 'vt' task (Figures 4e and 9) and that the 'random words' prompt is the most robust. Because the same tasks are used for the headline results and no held-out set is used to pick among the four prompt types, the method's success on those benchmarks is partly due to in-sample tuning. This weakens the claim that QAdA is a general query-adaptive criterion. The authors should either select the moment prompt on a validation split and then freeze it, demonstrate transfer to tasks not used in the ablation, or provide a principled argument for why random-word moments should transfer to arbitrary long-context distributions.
  2. [Appendix D, Table 2] The text states that the Gaussian approximation of A_bulk is 'typically off by a factor of ≈ 2−5', but the first-row log errors listed (0.41±0.58 and 0.37±0.52) correspond to factors of e^0.41≈1.5 and e^0.37≈1.45, not 2–5; either the base or the computation is misreported. More importantly, this large approximation error means Eq. (7) does not faithfully estimate the oracle criterion in Eq. (2); it is a calibrated heuristic whose threshold τ_approx is swept to compensate. The authors should report decision-level accuracy (as in Appendix C) as the primary validation and explicitly state that the Gaussian model serves as a separation rule rather than an accurate mass estimate.
  3. [Section 3.3, Table 1, and Section 7] The claimed efficiency gain is based on FLOP counts that ignore the per-step cost of updating the covariance Σ_K (O(d^2) per head) and the cost of the extra forward pass on the moment prompt. The paper does not report measured wall-clock times on real hardware. Since the abstract and introduction motivate the work with efficiency ('open the door to potentially significant gains in efficiency'), the practical significance is not yet demonstrated. The authors should either provide real runtime comparisons or clearly scope the claim to FLOP/sparsity reductions only.
minor comments (5)
  1. [Listing 1] The parameter `log_thrs = 0.6` and the condition `numerator - denominator > log(log_thrs)` are not explicitly connected to the threshold τ in Eq. (7); clarify the mapping between the logarithmic threshold and the ratio threshold.
  2. [Appendix D] There is a typo in the section title: 'Approximatin error' should be 'Approximation error'.
  3. [Section 5] The sentence 'we also study the behavior on a context-independent task where.' is incomplete; it should finish describing the task or be merged with the following sentence.
  4. [Figure 7a] The correlation matrix is difficult to read because the row and column labels are small; enlarging the labels would improve clarity.
  5. [Section 4.4] When describing Figure 4e-4f, the text says 'we find for the "vt" task that the best performance is attained when using randomly sampled words', but the figure plots normalized performance over sparsity; specify the sparsity level at which this comparison is made.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: QAdA is an explicit approximation of the oracle criterion using local scores and empirical moment statistics, validated against external benchmarks rather than derived from its own outputs.

full rationale

The paper's central derivation is Eq. (2) (oracle criterion) and Eq. (7) (QAdA). QAdA's only inputs are local scores and the empirical mean/covariance of bulk keys; the Gaussian approximation in Eq. (5) is a stated modeling assumption, not a restatement of the oracle labels or of the downstream metrics. The method is validated by agreement with the oracle (Appendix C) and by downstream performance on RULER, LongBench, GSM8k, and MBPP, none of which enter the QAdA formula. The choice of the 'random words' moment prompt is selected by ablations on the same benchmarks, which is a hyperparameter/robustness concern rather than a circular reduction; no equation is defined in terms of its own prediction. There are no load-bearing self-citations (the reference list contains no first-author self-citations), and no imported uniqueness theorem. Appendix D's candid admission that the Gaussian bulk estimate is off by a factor of 2-5 weakens the interpretation of QAdA as a faithful estimate, but an inaccurate approximation is not circularity. Thresholds are swept uniformly for all methods rather than fitted to maximize headline numbers. Overall, the claimed prediction has independent content and is not forced by construction.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The method is not circular, but it rests on several empirical assumptions: Gaussianity of bulk keys at the aggregate level, transferability of moments from a separate prompt, and the validity of attention mass as a proxy for head importance. Free parameters are hyperparameters swept or chosen by ablation rather than fit to a loss.

free parameters (5)
  • Local window size Tlocal = 128
    Fixed hyperparameter that defines the local window in Section 2; affects what 'local' means for both oracle and QAdA.
  • Sink token count Tinit = 16
    Fixed hyperparameter for the attention sink tokens included in the local window.
  • Threshold tau_approx and tau_oracle = swept over 0.1 to 0.995; default 0.6 for comparisons
    Threshold controls the sparsity-performance trade-off; it is swept, but the default operating point is a chosen value, not a fitted optimum.
  • Random-words prompt source for moments = randomly permuted words from Wikipedia
    Selected based on ablations in Section 4.4 as the most robust choice for Option 2 moments.
  • Length of the moment prompt = T - 1024
    Chosen after ablation in Figure 4g and Appendix B because longer moment prompts degrade performance.
assumptions (5)
  • domain assumption Bulk keys are adequately modeled by a Gaussian distribution for the aggregate expectation in Eq. (5).
    Invoked in Section 3.1 Eq. (4)-(6) to replace the empirical expectation over bulk keys with a closed-form log-normal expectation. Appendix D reports the approximation error but argues the criterion remains accurate due to larger local-bulk separation.
  • domain assumption A local window with Tinit=16 sink tokens and Tlocal=128 captures the local part of attention.
    Defines the index set I in Section 2 and is used by the oracle and QAdA; based on prior attention-sink observations (Xiao et al., 2023).
  • domain assumption The oracle criterion based on attention mass (Eq. 2) is a valid proxy for downstream head importance.
    QAdA is designed to approximate the oracle; downstream benchmark performance in Section 4 is used to validate this proxy.
  • domain assumption Moment statistics computed from a random-words prompt generalize to the target prompt.
    Section 3.2 Option 2 and Section 4.4: random-words moments are more robust than current-prompt moments, but the underlying reasons remain unclear according to the text.
  • standard math The log-normal moment generating function formula E[exp(s)] = exp(mu_s + sigma_s^2/2) applies to the Gaussian score model.
    Standard result used in Eq. (6); mathematically exact given the Gaussian assumption.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Unveiling Simplicities of Attention: Adaptive Long-Context Head Identification." pith.science (2026). https://pith.science/paper/VPHTPNDZ

@misc{pith2026250209647,
  author       = {Pith},
  title        = {Pith review of: Unveiling Simplicities of Attention: Adaptive Long-Context Head Identification},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/VPHTPNDZ}},
  note         = {Machine review of arXiv:2502.09647}
}
read the original abstract

The ability to process long contexts is crucial for many natural language processing tasks, yet it remains a significant challenge. While substantial progress has been made in enhancing the efficiency of attention mechanisms, there is still a gap in understanding how attention heads function in long-context settings. In this paper, we observe that while certain heads consistently attend to local information only, others swing between attending to local and long-context information depending on the query. This raises the question: can we identify which heads require long-context information to predict the next token accurately? We demonstrate that it's possible to predict which heads are crucial for long-context processing using only local keys. The core idea here is to exploit a simple model for the long-context scores via second moment approximations. These findings unveil simple properties of attention in the context of long sequences, and open the door to potentially significant gains in efficiency.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

29 extracted references · 4 canonical work pages

  1. [1]

    Gqa: Training generalized multi-query transformer models from multi-head checkpoints.arXiv preprint arXiv:2305.13245 ,

    Joshua Ainslie, James Lee-Thorp, Michiel de Jong, Yury Zemlyanskiy, Federico Lebrón, and Sumit Sanghai. Gqa: Training generalized multi-query transformer models from multi-head checkpoints.arXiv preprint arXiv:2305.13245 ,

  2. [5]

    doi: 10.18653/v1/2024.acl-long.172

    Association for Computational Linguistics. doi: 10.18653/v1/2024.acl-long.172. https://aclanthology.org/2024.acl-long.172. Zefan Cai, Yichi Zhang, Bofei Gao, Yuliang Liu, Tianyu Liu, Keming Lu, Wayne Xiong, Yue Dong, Baobao Chang, Junjie Hu, et al. Pyramidkv: Dynamic kv cache compression based on pyramidal information funneling.arXiv preprint arXiv:2406.02069,

  3. [6]

    Magicpig: Lsh sampling for efficient llm generation

    Zhuoming Chen, Ranajoy Sadhukhan, Zihao Ye, Yang Zhou, Jianyu Zhang, Niklas Nolte, Yuandong Tian, Matthijs Douze, Leon Bottou, Zhihao Jia, et al. Magicpig: Lsh sampling for efficient llm generation. arXiv preprint arXiv:2410.16179,

  4. [7]

    Training verifiers to solve math word problems.arXiv preprint arXiv:2110.14168,

    Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. Training verifiers to solve math word problems.arXiv preprint arXiv:2110.14168,

  5. [8]

    The llama 3 herd of models.arXiv preprint arXiv:2407.21783 ,

    Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783 ,

  6. [9]

    When attention sink emerges in language models: An empirical view.arXiv preprint arXiv:2410.10781 ,

    Xiangming Gu, Tianyu Pang, Chao Du, Qian Liu, Fengzhuo Zhang, Cunxiao Du, Ye Wang, and Min Lin. When attention sink emerges in language models: An empirical view.arXiv preprint arXiv:2410.10781 ,

  7. [10]

    Task-kv: Task-aware kv cache optimization via semantic differentiation of attention heads

    11 Xingyang He, Jie Liu, and Shaowei Chen. Task-kv: Task-aware kv cache optimization via semantic differentiation of attention heads. arXiv preprint arXiv:2501.15113 ,

  8. [12]

    Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,

    Cheng-Ping Hsieh, Simeng Sun, Samuel Kriman, Shantanu Acharya, Dima Rekesh, Fei Jia, Yang Zhang, and Boris Ginsburg. Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,

Show all 29 references
  1. [13]

    Mistral 7b.arXiv preprint arXiv:2310.06825,

    Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. Mistral 7b.arXiv preprint arXiv:2310.06825,

  2. [14]

    Snapkv: Llm knows what you are looking for before generation.arXiv preprint arXiv:2404.14469,

    Yuhong Li, Yingbing Huang, Bowen Yang, Bharat Venkitesh, Acyr Locatelli, Hanchen Ye, Tianle Cai, Patrick Lewis, and Deming Chen. Snapkv: Llm knows what you are looking for before generation.arXiv preprint arXiv:2404.14469,

  3. [15]

    Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437 ,

    Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, et al. Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437 ,

  4. [16]

    In-context learning and induction heads.arXiv preprint arXiv:2209.11895 ,

    Catherine Olsson, Nelson Elhage, Neel Nanda, Nicholas Joseph, Nova DasSarma, Tom Henighan, Ben Mann, Amanda Askell, Yuntao Bai, Anna Chen, et al. In-context learning and induction heads.arXiv preprint arXiv:2209.11895 ,

  5. [18]

    Squad: 100,000+ questions for machine comprehension of text.arXiv preprint arXiv:1606.05250 ,

    P Rajpurkar. Squad: 100,000+ questions for machine comprehension of text.arXiv preprint arXiv:1606.05250 ,

  6. [20]

    Shadowkv: Kv cache in shadows for high-throughput long-context llm inference.arXiv preprint arXiv:2410.21465 , 2024a

    Hanshi Sun, Li-Wen Chang, Wenlei Bao, Size Zheng, Ningxin Zheng, Xin Liu, Harry Dong, Yuejie Chi, and Beidi Chen. Shadowkv: Kv cache in shadows for high-throughput long-context llm inference.arXiv preprint arXiv:2410.21465 , 2024a. Mingjie Sun, Xinlei Chen, J Zico Kolter, and ...

  7. [22]

    Retrieval head mechanistically explains long-context factuality

    12 Wenhao Wu, Yizhong Wang, Guangxuan Xiao, Hao Peng, and Yao Fu. Retrieval head mechanistically explains long-context factuality. arXiv preprint arXiv:2404.15574 ,

  8. [23]

    Efficient streaming language models with attention sinks

    Guangxuan Xiao, Yuandong Tian, Beidi Chen, Song Han, and Mike Lewis. Efficient streaming language models with attention sinks. arXiv preprint arXiv:2309.17453 ,

  9. [24]

    Duoat- tention: Efficient long-context llm inference with retrieval and streaming heads.arXiv preprint arXiv:2410.10819 ,

    Guangxuan Xiao, Jiaming Tang, Jingwei Zuo, Junxian Guo, Shang Yang, Haotian Tang, Yao Fu, and Song Han. Duoat- tention: Efficient long-context llm inference with retrieval and streaming heads.arXiv preprint arXiv:2410.10819 ,

  10. [25]

    Attention heads of large language models: A survey.arXiv preprint arXiv:2409.03752 ,

    Zifan Zheng, Yezhaohui Wang, Yuxin Huang, Shichao Song, Mingchuan Yang, Bo Tang, Feiyu Xiong, and Zhiyu Li. Attention heads of large language models: A survey.arXiv preprint arXiv:2409.03752 ,

  11. [26]

    (2024); Tang et al

    Similar to Wu et al. (2024); Tang et al. (2024a), we measure head patterns in a synthetic retrieval task, and select heads via the following simplestatic criterion: • Step 1: Generate responses for selected prompts using full attention (for LongBench, GSM8k and MBPP tasks) or ...

  12. [27]

    qa-1” and “qa-2

    consists of a collection of synthetic tasks with varying prompt sizes. These tasks are designed to challenge the model’s capabilities in processing long-context information. We choose the two Q/A tasks, “qa-1” and “qa-2”, the two aggregation tasks: common words extraction “cwe...

  13. [28]

    and the code-generation task MBPP (Austin et al., 2021). We use the standard evaluation protocol, but instead of using only the “correct” few-shot examples, we select 55 few-shot examples in the same format generated from the SQUAD (Rajpurkar,

  14. [29]

    observation

    dataset, as well as 5 actual few-shot examples (highlighted in green). We provide fragments of the example prompts below. The resulting context lengths are≈ 10k for GSM8k and≈ 11k for MBPP. For these two tasks, we always use the pre-trained Llama3-8B parameter model (Dubey et ...

  15. [2016]

    Sparq attention: Bandwidth-efficient llm inference

    Luka Ribar, Ivan Chelombiev, Luke Hudlass-Galley, Charlie Blake, Carlo Luschi, and Douglas Orr. Sparq attention: Bandwidth-efficient llm inference. arXiv preprint arXiv:2312.04985 ,

  16. [2017]

    Efficient large language models: A survey.arXiv preprint arXiv:2312.03863 ,

    Zhongwei Wan, Xin Wang, Che Liu, Samiul Alam, Yu Zheng, Jiachen Liu, Zhongnan Qu, Shen Yan, Yi Zhu, Quanlu Zhang, et al. Efficient large language models: A survey.arXiv preprint arXiv:2312.03863 ,

  17. [2021]

    Qwen technical report.arXiv preprint arXiv:2309.16609 ,

    Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report.arXiv preprint arXiv:2309.16609 ,

  18. [2022]

    Transformers are multi-state rnns.arXiv preprint arXiv:2401.06104,

    Matanel Oren, Michael Hassid, Nir Yarden, Yossi Adi, and Roy Schwartz. Transformers are multi-state rnns.arXiv preprint arXiv:2401.06104,

  19. [2023]

    Shadowllm: Predictor-based contextual sparsity for large language models.arXiv preprint arXiv:2406.16635,

    Yash Akhauri, Ahmed F AbouElhamayed, Jordan Dotzel, Zhiru Zhang, Alexander M Rush, Safeen Huda, and Mohamed S Abdelfattah. Shadowllm: Predictor-based contextual sparsity for large language models.arXiv preprint arXiv:2406.16635,

  20. [2024]

    Program synthesis with large language models.arXiv preprint arXiv:2108.07732 ,

    Jacob Austin, Augustus Odena, Maxwell Nye, Maarten Bosma, Henryk Michalewski, David Dohan, Ellen Jiang, Carrie Cai, Michael Terry, Quoc Le, et al. Program synthesis with large language models.arXiv preprint arXiv:2108.07732 ,

  21. [2025]

    On the token distance modeling ability of higher rope attention dimension.arXiv preprint arXiv:2410.08703 ,

    Xiangyu Hong, Che Jiang, Biqing Qi, Fandong Meng, Mo Yu, Bowen Zhou, and Jie Zhou. On the token distance modeling ability of higher rope attention dimension.arXiv preprint arXiv:2410.08703 ,

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.