REVIEW 4 major objections 6 minor 2 cited by
Systematic Outliers in Large Language Models
T0 review · 4 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read All three LLM outlier types—activation, weight, and attention—stem from one cause, the softmax in self-attention, and act as implicit context-aware scaling factors that an explicit learnable factor can replace.
desk verdict A useful empirical map of where outliers live and a clever architectural fix, but the 'softmax is the root cause' story is a plausible narrative rather than an established mechanism. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the softmax operation inside multi-head self-attention, $\mathrm{softmax}(QK^\top/\sqrt{d})V$, whose outputs are strictly positive and sum to one for every query. The derivation turns on a 'zero-update requirement' (Appendix C.1): for tokens that should barely change—the initial token, punctuation, spaces—the desired attention output is close to zero, yet because softmax probabilities sum to one, near-zero output can only be achieved by concentrating probability on a few keys whose values cancel, which in turn forces extreme disparities among the pre-softmax dot products. This dynamic-range demand steepens gradients on the shared $W_K$ and $W_V$ projections and, through residual connections and LayerNorm's compression of the input distribution, drives the MLP's up-, gate-, and down-projections to grow extreme weights at a few fixed channels (weight outliers), yielding activation outliers at those channels and tokens, which then align the corresponding query and key dimensions to produce attention outliers at the same positions. The companion mechanism that validates the account is the explicit context-aware scaling variant, $Sc(x)\cdot\mathrm{softmax}(QK^\top/\sqrt{d})V$, with a learned input-dependent scalar $Sc(x)$: it supplies the same scaling effect directly, and the training experiments show it prevents outlier formation entirely rather than merely suppressing its effects.
What would settle it
During training of a transformer, record the L2 norm of the attention output added to the residual stream at start tokens and punctuation tokens and compare it with content tokens: the paper's premise requires these updates to be near zero, so updates comparable in size to those of content tokens would remove the zero-update requirement that drives the derivation. A second check: train the same architecture on text with punctuation removed and no special start token—under the paper's account, the count and magnitude of attention and activation outliers should drop sharply because the tokens identified as needing the largest dynamic range no longer exist.
Extended reading notes
Core claim
The paper's central claim is that activation outliers, weight outliers, and attention outliers in LLMs are not independent defects but one interconnected phenomenon with a single root cause: the softmax normalization in self-attention. Because softmax forces attention scores to be nonnegative and sum to one, tokens that need almost no contextual update—start tokens and semantically weak tokens like '.' and '_'—force the model to concentrate attention onto very few keys, which requires the pre-softmax query-key dot products to span a huge dynamic range. That demand propagates outward: steep gradients on the shared key and value projections, amplified through the residual stream and the MLP up-, gate-, and down-projections, produce weight outliers at a few fixed channels, activation outliers at the same channels and tokens, and attention outliers at the same sequence positions. The outliers therefore act as implicit, context-aware scaling factors, dynamically shrinking or amplifying updates instead of adding a fixed bias. The paper's validation is direct: an explicit context-aware scaling factor, $Sc(x)\cdot\mathrm{softmax}(QK^\top/\sqrt{d})V$ with learned, input-dependent $Sc(x)$, prevents all three outlier types in GPT-2 and TinyLLaMA-120M, while explicit fixed-bias and context-aware-bias variants do not, and sigmoid attention—which drops the sum-to-one requirement—also produces no systematic outliers. Structurally eliminating the outliers this way accelerates early convergence and makes models much more tolerant of 8-bit weight quantization and 50% magnitude pruning.
Load-bearing premise
The entire causal chain rests on the premise, asserted in Appendix C.1 and never measured, that start tokens and weak-semantic tokens genuinely require near-zero updates from attention; if that requirement is not real, or is itself an artifact of training under softmax, the derivation from softmax to systematic outliers loses its foundation.
Editorial extensions
If this is right
- All three outlier types share one removable cause: replacing implicit softmax-driven scaling with an explicit context-aware scaling factor eliminates activation, weight, and attention outliers in both GPT-2 and TinyLLaMA-120M.
- Compression becomes practical without post-hoc outlier repair: on WikiText2, the scaled GPT-2 drops 8-bit absmax weight-quantization perplexity from 93.44 to 29.22 and 50% unstructured-magnitude-pruning perplexity from 7235.68 to 39.47, at a parameter overhead below 0.1%.
- Training speeds up: explicit context-aware scaling reaches lower validation loss in the earliest steps than default attention, although final loss ends up comparable.
- Scaling, not bias, is the operative role: the fixed-bias and context-aware-bias attention variants still produce outliers, which rules out the massive-activations-as-fixed-bias reading of the phenomenon.
- Softmax is the root cause, not the data or the tuning: sigmoid attention, which can emit near-zero attention weights without normalization, produces no systematic outliers, while outliers persist across model families and survive instruction fine-tuning.
Reading between the lines
- If the zero-update premise is correct, outlier sites should track the training data's low-information tokens: a model trained on text without punctuation or explicit start tokens should produce markedly fewer and weaker attention and activation outliers—a prediction the paper does not run.
- Reading outlier channels as implicit scaling suggests post-hoc compression fixes (clipping, smoothing, rotation) may work against the model's actual computation; a cheaper alternative to full retraining would be to emulate the per-token scaling with a small learned correction applied only at the affected channels.
- The account extends naturally to streaming LLMs: the attention-sink tokens that current methods inject to stabilize long-context inference are, on this view, an explicit stand-in for the implicit scaling the model already performs, so a properly scaled attention mechanism could reduce or remove the need for sink tokens.
- A directly checkable corollary of the derivation is that a token's pre-softmax logit spread should be inversely related to the size of the update it actually needs; probing checkpoints mid-training, rather than only at the end, would test the causal direction the paper asserts.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies three types of outliers in LLMs—activation, weight, and attention outliers—and argues that they are systematically interconnected and originate from the softmax operation in self-attention. After documenting the distribution and localization of these outliers across LLaMA-2 and several other models, the authors hypothesize that outliers act as implicit, context-aware scaling factors. They test this hypothesis by training GPT-2 variants with alternative attention formulations (fixed bias, context-aware bias, attention bias, and explicit context-aware scaling factor), finding that only formulations with a scaling factor prevent outlier formation. They further report that an explicit context-aware scaling factor improves robustness to quantization and pruning and accelerates early convergence. Appendix C provides a mathematical narrative connecting softmax-induced dynamic range expansion, zero-update requirements for certain tokens, and gradient amplification to the emergence and localization of outliers.
Significance. If the central claim is correct, the paper would provide a unified mechanistic explanation for three previously separate outlier phenomena and a principled architectural mitigation. The empirical survey across LLaMA-2/3, Mistral, OPT, MPT, Falcon, Phi-2 and fine-tuned variants is a useful systematic documentation, and the GPT-2 variant experiments are an interventionist test that cleanly separates bias effects from scaling effects at a qualitative level. The authors also ship code and give detailed experimental settings, supporting reproducibility. However, the causal derivation in Appendix C rests on an untested assumption about near-zero MHA updates for certain tokens, and the intervention experiments demonstrate that explicit scaling factors prevent outliers without directly establishing that the original outliers function as scaling factors. These gaps are load-bearing for the paper's main claim, but they are addressable with additional measurements and a more carefully scoped interpretation.
major comments (4)
- [Appendix C.1] The zero-update premise is asserted, not tested. The derivation begins with 'the desired behavior is a near-zero update' for initial and weak-semantic tokens and defines ∆x = MHA(Qx, K, V) ≈ 0, but no measurement of MHA output norms for those tokens in LLaMA-2-7B or any other model is reported. Since every subsequent step (dynamic range expansion, gradient amplification, weight outlier formation) is conditional on this premise, the paper should either measure actual MHA output magnitudes for the claimed outlier tokens or explicitly weaken the claim to a conditional hypothesis.
- [Appendix C.4] There is an internal tension between the zero-update requirement in C.1 and the token-level localization story in C.4. C.4 states that initial tokens 'aggregate global information, receiving disproportionately high attention scores, which amplifies their values in the MHA output,' and that weak-semantic tokens receive 'exaggerated updates during training.' Both statements describe non-zero MHA updates, which contradicts the near-zero-update premise required by the derivation. The authors need to reconcile these statements, for example by distinguishing between the attention weights assigned to these tokens and the L2 norm of the resulting contextual update.
- [Section 5.2, Table 2] The variant experiments show that explicit context-aware scaling factors prevent outlier formation in GPT-2, but they do not establish that the outliers observed in the default model actually function as scaling factors. An intervention that removes a phenomenon is not by itself evidence for the proposed functional role of that phenomenon. Additionally, the comparison between variants (c) and (d) changes two components at once (adding both a bias and a scaling-like term), so the attribution of the effect specifically to the scaling factor is not as clean as claimed. The functional claim would be strengthened by a direct probe, such as comparing the learned Sc(x) against the magnitude of the outliers in the default model, or by showing that removing the attention outlier in a trained model produces effects similar to inserting an explicit scaling factor.
- [Appendix C, overall] The paper describes Appendix C as 'theoretical derivations' (Abstract and Section 5.3), but the derivation is qualitative. The step from large dynamic ranges in softmax inputs to steep gradients and thence to concentrated weight outliers is asserted rather than derived; no formal bound or gradient expression is provided. This is acceptable as an intuition, but the wording overclaims. The authors should either present a concrete formal statement (e.g., a bound on gradient norms in terms of softmax logit gaps) or revise the language to describe the appendix as a qualitative mechanism analysis.
minor comments (6)
- [Abstract] There is a typo: 'avilable' should be 'available'.
- [Appendix D title] The heading reads 'MORE ANALYSIS FO SYSTEMATIC OUTLIERS'; 'FO' should be 'OF'.
- [Figure 23] The figure label says 'GPT-2 with Sigmoid Attenion'; 'Attenion' should be 'Attention'.
- [Section 3, Definition] The outlier threshold τ is set to 1000 with no sensitivity analysis. Since all subsequent consistency statistics in Table 1 depend on τ, a brief analysis of how the reported overlaps vary with τ would improve robustness.
- [Section 5.3, Table 3] The compression experiments are only reported for GPT-2. Given the paper's emphasis on LLMs, reporting at least one additional model (e.g., TinyLLaMA) for the quantization and pruning results would strengthen the practical claim.
- [Appendix B.3] The GPT-2 variant experiments train for 50,000 iterations, but no training curves or final validation losses for the variants are shown except Figure 12. Reporting the full training curves for all five variants would help rule out that the absence of outliers in variants (d) and (e) is an artifact of underfitting.
Circularity Check
No circularity found: the paper's central claims rest on independent observations and interventionist experiments, not on self-citation or definitional equivalence.
full rationale
The paper's derivation chain is not circular. Activation, weight, and attention outliers are defined by magnitude thresholds (τ=1000), not by the softmax mechanism, so the existence and localization claims are empirical. The hypothesis that outliers act as context-aware scaling factors is tested by training GPT-2 variants with explicit scaling factors and by comparing sigmoid attention; these are interventionist tests whose outcomes are not forced by the definitions. The Appendix C derivation is conditional on an asserted premise—that certain tokens 'require minimal updates' and 'the desired behavior is a near-zero update'—but this premise is not defined in terms of the conclusion, and the paper does not fit a parameter and then rename it as a prediction. There are no load-bearing self-citations (the reference list contains no works by the present authors). The unsupported jump in C.2 from 'zero-update' to 'highly concentrated attention weight distribution' is a logical gap, and the weak-semantic/initial-token premise is empirically untested, but these are correctness and evidence concerns, not circular reductions. Under the standard requiring an exhibitable Eq.-to-Eq. or definition-to-definition reduction, no circular step is present.
Assumptions & free parameters
free parameters (1)
- Outlier threshold tau =
1000
assumptions (4)
- ad hoc to paper Certain tokens require near-zero updates (zero-update necessity).
- standard math Softmax attention must output probability distributions that sum to one.
- ad hoc to paper Large dynamic ranges in attention scores translate into large gradients and hence outliers.
- ad hoc to paper LayerNorm compresses dynamic range, forcing earlier MLPs to compensate with larger activations.
invented entities (1)
-
Explicit context-aware scaling factor Sc(x)
independent evidence
Cite this review
Pith. "Pith review of Systematic Outliers in Large Language Models." pith.science (2026). https://pith.science/paper/BWVWFDX4
@misc{pith2026250206415,
author = {Pith},
title = {Pith review of: Systematic Outliers in Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/BWVWFDX4}},
note = {Machine review of arXiv:2502.06415}
}
read the original abstract
Outliers have been widely observed in Large Language Models (LLMs), significantly impacting model performance and posing challenges for model compression. Understanding the functionality and formation mechanisms of these outliers is critically important. Existing works, however, largely focus on reducing the impact of outliers from an algorithmic perspective, lacking an in-depth investigation into their causes and roles. In this work, we provide a detailed analysis of the formation process, underlying causes, and functions of outliers in LLMs. We define and categorize three types of outliers-activation outliers, weight outliers, and attention outliers-and analyze their distributions across different dimensions, uncovering inherent connections between their occurrences and their ultimate influence on the attention mechanism. Based on these observations, we hypothesize and explore the mechanisms by which these outliers arise and function, demonstrating through theoretical derivations and experiments that they emerge due to the self-attention mechanism's softmax operation. These outliers act as implicit context-aware scaling factors within the attention mechanism. As these outliers stem from systematic influences, we term them systematic outliers. Our study not only enhances the understanding of Transformer-based LLMs but also shows that structurally eliminating outliers can accelerate convergence and improve model compression. The code is avilable at https://github.com/an-yongqi/systematic-outliers.
Figures
Figures from the paper (21 more)
Forward citations
Cited by 2 Pith papers
-
Super Weights in LLMs and the Failure of Selective Training
Training Super Weights in isolation collapses LLM performance to random guessing, while full-layer low-rank updates succeed, showing parameter importance does not imply trainability.
-
Scaling Law for Quantization-Aware Training
A unified QAT scaling law predicts 4-bit quantization error from model size, training tokens, and group size, showing activation outliers in the FC2 layer are the main W4A4 bottleneck.
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023
arXiv 2023
-
[2]
The falcon series of open language models
Ebtesam Almazrouei, Hamza Alobeidli, Abdulaziz Alshamsi, Alessandro Cappelli, Ruxandra Cojocaru, M \'e rouane Debbah, \'E tienne Goffinet, Daniel Hesslow, Julien Launay, Quentin Malartic, et al. The falcon series of open language models. arXiv preprint arXiv:2311.16867, 2023
arXiv 2023
-
[3]
Language models are few-shot learners
Tom B Brown. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020
arXiv 2005
-
[4]
Redpajama: an open dataset for training large language models, 2023
Together Computer. Redpajama: an open dataset for training large language models, 2023. URL https://github.com/togethercomputer/RedPajama-Data
2023
-
[5]
Tim Dettmers, Mike Lewis, Younes Belkada, and Luke Zettlemoyer. Gpt3. int8 (): 8-bit matrix multiplication for transformers at scale. Advances in Neural Information Processing Systems, 35: 0 30318--30332, 2022
2022
-
[6]
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, 2024
arXiv 2024
-
[7]
Sigmoid-weighted linear units for neural network function approximation in reinforcement learning
Stefan Elfwing, Eiji Uchibe, and Kenji Doya. Sigmoid-weighted linear units for neural network function approximation in reinforcement learning. Neural networks, 107: 0 3--11, 2018
2018
-
[8]
Kvquant: Towards 10 million context length llm inference with kv cache quantization
Coleman Hooper, Sehoon Kim, Hiva Mohammadzadeh, Michael W Mahoney, Yakun Sophia Shao, Kurt Keutzer, and Amir Gholami. Kvquant: Towards 10 million context length llm inference with kv cache quantization. arXiv preprint arXiv:2401.18079, 2024
arXiv 2024
Show all 38 references
-
[9]
Phi-2: The surprising power of small language models, 2023
Mojan Javaheripi and Sébastien Bubeck. Phi-2: The surprising power of small language models, 2023. URL https://www.microsoft.com/en-us/research/blog/phi-2-the-surprising-power-of-small-language-models/. Accessed: 2024-10-01
2023
-
[10]
Mistral 7b
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, 2023
-
[11]
Andrej Karpathy. Nanogpt. https://github.com/karpathy/nanoGPT, 2023. Accessed: 2024-11-24
2023
-
[12]
A github link forked from jzhang38/tinyllama
Kenneth Keene. A github link forked from jzhang38/tinyllama. https://github.com/keeeeenw/TinyLlama, 2024. Accessed: 2024-11-24
2024
-
[13]
Bert busters: Outlier dimensions that disrupt transformers
Olga Kovaleva, Saurabh Kulshreshtha, Anna Rogers, and Anna Rumshisky. Bert busters: Outlier dimensions that disrupt transformers. arXiv preprint arXiv:2105.06990, 2021
2021 arXiv
-
[14]
Is it a free lunch for removing outliers during pretraining? arXiv preprint arXiv:2402.12102, 2024
Baohao Liao and Christof Monz. Is it a free lunch for removing outliers during pretraining? arXiv preprint arXiv:2402.12102, 2024
2024 arXiv
-
[15]
Rotation and permutation for advanced outlier management and efficient quantization of llms
Haokun Lin, Haobo Xu, Yichen Wu, Jingzhi Cui, Yingtao Zhang, Linzhan Mou, Linqi Song, Zhenan Sun, and Ying Wei. Rotation and permutation for advanced outlier management and efficient quantization of llms. arXiv preprint arXiv:2406.01721, 2024
2024 arXiv
-
[16]
Introducing mpt-7b: A new standard for open-source, commercially usable llms, 2023
MosaicML. Introducing mpt-7b: A new standard for open-source, commercially usable llms, 2023. URL https://www.databricks.com/blog/mpt-7b. Accessed: 2024-10-01
2023
-
[17]
Mitigating the impact of outlier channels for language model quantization with activation regularization
Aniruddha Nrusimha, Mayank Mishra, Naigang Wang, Dan Alistarh, Rameswar Panda, and Yoon Kim. Mitigating the impact of outlier channels for language model quantization with activation regularization. arXiv preprint arXiv:2404.03605, 2024
2024 arXiv
-
[18]
Training language models to follow instructions with human feedback
Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback. Advances in neural information processing systems, 35: 0 2...
2022
-
[19]
Outliers and calibration sets have diminishing effect on quantization of modern llms
Davide Paglieri, Saurabh Dash, Tim Rockt \"a schel, and Jack Parker-Holder. Outliers and calibration sets have diminishing effect on quantization of modern llms. arXiv preprint arXiv:2405.20835, 2024
2024 arXiv
-
[20]
Giovanni Puccetti, Alessio Miaschi, and Felice Dell’Orletta. How do bert embeddings organize linguistic knowledge? In Proceedings of deep learning inside out (DeeLIO): the 2nd workshop on knowledge extraction and integration for deep learning architectures, pp.\ 48--57, 2021
2021
-
[21]
Language models are unsupervised multitask learners
Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, Ilya Sutskever, et al. Language models are unsupervised multitask learners. OpenAI blog, 1 0 (8): 0 9, 2019
2019
-
[22]
Theory, analysis, and best practices for sigmoid self-attention
Jason Ramapuram, Federico Danieli, Eeshan Dhekane, Floris Weers, Dan Busbridge, Pierre Ablin, Tatiana Likhomanenko, Jagrit Digani, Zijin Gu, Amitis Shidani, et al. Theory, analysis, and best practices for sigmoid self-attention. arXiv preprint arXiv:2409.04431, 2024
2024 arXiv
-
[23]
Glu variants improve transformer
Noam Shazeer. Glu variants improve transformer. arXiv preprint arXiv:2002.05202, 2020
2002 arXiv
-
[24]
A simple and effective pruning approach for large language models
Mingjie Sun, Zhuang Liu, Anna Bair, and J Zico Kolter. A simple and effective pruning approach for large language models. arXiv preprint arXiv:2306.11695, 2023
2023 arXiv
-
[25]
Massive activations in large language models
Mingjie Sun, Xinlei Chen, J Zico Kolter, and Zhuang Liu. Massive activations in large language models. arXiv preprint arXiv:2402.17762, 2024
2024 arXiv
-
[26]
Llama: Open and efficient foundation language models
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth \'e e Lacroix, Baptiste Rozi \`e re, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023 a
2023 arXiv
-
[27]
Llama 2: Open foundation and fine-tuned chat models
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023 b
2023 arXiv
-
[28]
Attention is all you need
A Vaswani. Attention is all you need. Advances in Neural Information Processing Systems, 2017
2017
-
[29]
Outlier suppression: Pushing the limit of low-bit transformer language models
Xiuying Wei, Yunchen Zhang, Xiangguo Zhang, Ruihao Gong, Shanghang Zhang, Qi Zhang, Fengwei Yu, and Xianglong Liu. Outlier suppression: Pushing the limit of low-bit transformer language models. Advances in Neural Information Processing Systems, 35: 0 17402--17414, 2022
2022
-
[30]
Smoothquant: Accurate and efficient post-training quantization for large language models
Guangxuan Xiao, Ji Lin, Mickael Seznec, Hao Wu, Julien Demouth, and Song Han. Smoothquant: Accurate and efficient post-training quantization for large language models. In International Conference on Machine Learning, pp.\ 38087--38099. PMLR, 2023 a
2023
-
[31]
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, 2023 b
2023 arXiv
-
[32]
Outlier weighed layerwise sparsity (owl): A missing secret sauce for pruning llms to high sparsity
Lu Yin, You Wu, Zhenyu Zhang, Cheng-Yu Hsieh, Yaqing Wang, Yiling Jia, Mykola Pechenizkiy, Yi Liang, Zhangyang Wang, and Shiwei Liu. Outlier weighed layerwise sparsity (owl): A missing secret sauce for pruning llms to high sparsity. arXiv preprint arXiv:2310.05175, 2023
-
[33]
Opt: Open pre-trained transformer language models
Susan Zhang, Stephen Roller, Naman Goyal, Mikel Artetxe, Moya Chen, Shuohui Chen, Christopher Dewan, Mona Diab, Xian Li, Xi Victoria Lin, et al. Opt: Open pre-trained transformer language models. arXiv preprint arXiv:2205.01068, 2022
2022 arXiv
-
[34]
Unveiling linguistic regions in large language models
Zhihao Zhang, Jun Zhao, Qi Zhang, Tao Gui, and Xuanjing Huang. Unveiling linguistic regions in large language models. arXiv preprint arXiv:2402.14700, 2024
2024 arXiv
-
[35]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
-
[36]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[37]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[38]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.