Complexity-Guided Component-wise Initialization for Language Model Pretraining


Abstract

Pretrained language models often exhibit structured weight spectra, suggesting that training may repeatedly produce similar layerwise and component-wise organization. We ask whether these recurring spectral patterns can be reused as an initialization signal for GPT-2-style language-model pretraining. First, we analyze eleven pretrained GPT-2-style checkpoints that vary in size, language, tokenizer, and training corpus, measuring Frobenius norm and effective-rank entropy across layers and Transformer subcomponents. The checkpoints show shared depth trends, especially increasing scale and stronger spectral concentration in residual-writing matrices. We then construct initialization schemes that imitate the component-wise magnitudes and spectral profiles of pretrained models, and compare them with several weight initialization methods. These initializers visibly change the model’s structural spectral patterns, but the evaluation results do not show a corresponding performance advantage. Pretrained-weight reuse remains competitive, while coarse spectral matching alone is not a reliable optimization strategy. Our results suggest that pretrained spectra are useful diagnostics of trained model structure, but that effective reuse likely requires preserving richer information than component-wise scale and singular-value shape.

1 Introduction↩︎

Large language models are typically trained from randomly initialized weights, often drawn from Gaussian or related distributions. This choice is robust and architecture-agnostic: it does not assume prior knowledge about the data, the model size, or the internal structure that training will eventually produce. However, it also ignores a growing body of evidence suggesting that trained language models are not arbitrary points in parameter space. Across models, layers, and components, pre-trained transformers often exhibit recurring structural regularities, including characteristic spectral properties of their weight matrices [1][3].

These regularities raise a natural question: if trained models repeatedly develop similar patterns, can some of these patterns be used before training begins? In principle, an initialization that already reflects common structure found in pre-trained models could reduce the burden on optimization. Instead of learning all structural properties from scratch, the model would start from weights whose scale, rank structure, or spectral shape better resembles those of trained transformers. At the same time, it is unclear whether such coarse spectral information is actually useful for pre-training. Spectral similarity may capture meaningful structure, but it may also discard the specific directions, correlations, and feature-level organization that make pre-trained weights effective.

In this paper, we study this question for GPT-2-style language models. We analyze the weight matrices of several pre-trained models using spectral tools, including the Frobenius norm and effective rank entropy [3]. Our goal is first to determine whether consistent spectral patterns appear across models that differ in size, language, tokenizer, and training corpus. We then test whether these patterns can be transferred into the initialization of a new model and whether such initialization improves pre-training dynamics.

1.0.0.1 Research questions and answers.

Specifically, we ask the following questions.

Research question Answer
RQ1 What spectral patterns appear in pre-trained GPT-2-style language models? Pre-trained GPT-2-style models show recurring layerwise and component-wise spectral trends despite differences in size, language, tokenizer, and corpus.
RQ2 How does initialization based on these spectral patterns affect training dynamics? Reusing pre-trained weights remains competitive, but copying coarse spectral shape or scale alone is not a reliable optimization strategy.

The remainder of this paper is organized as follows. We first analyze existing pre-trained LLMs in 2 to identify recurring spectral patterns in their weights. We then propose and evaluate a spectral-pattern-based initialization method in 3. Finally, we discuss related work in 5 and conclude in 6.

2 Spectral Patterns in Pre-trained LLMs↩︎

Spectral analysis is the analysis of the eigenvalues or singular values of a matrix. In the context of neural networks, spectral analysis can provide insight into the geometric and functional properties of a weight matrix. Large singular values indicate that the matrix strongly amplifies certain input directions, which is often associated with greater complexity or sensitivity [3][5]. We define spectral patterns in 2.2 and analyze pretrained GPT-2-style models in 2.3 to identify shared spectral patterns in pre-trained LLMs.

2.1 GPT-2 Block Notation↩︎

GPT-2 is a decoder-only Transformer: tokens are embedded into a residual stream, then passed through a stack of identical causal self-attention and MLP blocks before the final language-model head. Each block first applies layer normalization and multi-head causal self-attention, writes the attention output back to the residual stream, then applies a second layer normalization and a position-wise MLP with another residual write. For block \(\ell\), let \(x_\ell\) denote the residual stream entering the block. Using the pre-layer-norm GPT-2 convention, the two residual writes are \[a_\ell = \operatorname{Attn}(\operatorname{LN}_1(x_\ell); W_{QKV}, W_O), \qquad \tilde{x}_\ell = x_\ell + a_\ell,\] \[m_\ell = W_{\mathrm{down}}\phi(W_{\mathrm{up}}\operatorname{LN}_2(\tilde{x}_\ell)), \qquad x_{\ell+1} = \tilde{x}_\ell + m_\ell,\] where \(\phi\) is the MLP nonlinearity. We focus on the four dense matrices that dominate the block computation. The fused attention input matrix \(W_{QKV}\) maps the residual stream into query, key, and value features; in GPT-2 implementations this is often stored as one combined projection and then split into \(Q\), \(K\), and \(V\) [6], [7]. The attention output matrix \(W_O\) maps the concatenated head outputs back into the residual stream. The MLP up-projection \(W_{\mathrm{up}}\) expands the residual dimension into the hidden MLP dimension, while the MLP down-projection \(W_{\mathrm{down}}\) maps the activated hidden representation back into the residual stream. We summarize the component-weight and singular-value associations used in the component-wise interpretation in 1. When we refer to a block-level aggregate, we combine these component matrices within a Transformer block; when we refer to a component plot, we track one of these matrices across depth.

Table 1: Interpretive associations for component weights and singular values in Transformer block components.
Component Association used in interpretation
\(W_Q, W_K\) Larger singular values are associated with stronger feature directions for attention addressing [8], [9].
\(W_V, W_O\) Larger singular values are associated with stronger feature directions for transported content and stronger write strength to the residual stream [5], [9], [10].
\(W_{\mathrm{up}}\) Component weights are usually associated with MLP key weights or feature-detector weights [11], [12].
\(W_{\mathrm{down}}\) Component weights are usually associated with MLP value weights or stored-feature readout weights [11], [12].
Figure 1: Pre-layer-norm GPT-2 block notation. Attention and MLP outputs are added back into the residual stream.

2.2 Spectral Analysis Metrics↩︎

We use static spectral metrics because they are inexpensive to compute directly from saved weight matrices and do not require additional data passes, interventions, or fine-tuning runs. They are also established diagnostics for trained neural networks and Transformer weights: prior work uses spectral summaries to study implicit regularization, layer and component structure, initialization scale, and complexity control [1][3], [5], [13], [14]. Our chosen metrics separate complementary properties of each matrix: Frobenius norm captures total scale, while effective-rank entropy describes how concentrated or distributed that scale is across singular directions.

2.2.0.1 Frobenius Norm

The Frobenius norm is \[\lVert W\rVert_F = \sqrt{\sum_{i,j} W_{ij}^2} = \sqrt{\sum_k \sigma_k(W)^2}.\] It measures total weight energy and is useful for separating changes in scale from changes in spectral shape.

2.2.0.2 Effective Rank Entropy

Frobenius norm alone does not capture the distribution of singular values. Let \(\sigma_i\) be the singular values of \(W\), and let \(p_i=\sigma_i/\sum_j \sigma_j\). We use the entropy effective rank \[\operatorname{erank}(W) = \exp\left(-\sum_i p_i \log p_i\right).\] This measures how many singular directions carry substantial mass [3].

2.3 Pre-trained LLMs Share Similar Spectral Patterns↩︎

We analyze eleven Hugging Face checkpoints: English GPT-2 small and medium models [6], Russian GPT-2 small and large models [15], and GPT-2-style Vietnamese, Chinese, Portuguese, Japanese, Turkish, poem-generation, and story-generation models [16][23]. The selection keeps the architecture family fixed while varying size, language, tokenizer, and training corpus. We analyze block-level aggregates and four subcomponents: the fused \(W_{QKV}\) attention input projection, the \(W_O\) attention output projection, the \(W_{\mathrm{up}}\) MLP up projection, and the \(W_{\mathrm{down}}\) MLP down projection. We treat \(W_{QKV}\) jointly because it determines the query, key, and value feature spaces used to compute and transport attention information. We analyze \(W_O\) separately because it maps attention outputs back into the residual stream, so its spectrum is more directly tied to write-back strength and directionality than to attention-score formation.

2.3.0.1 General Observations

Across pretrained checkpoints, layer-level Frobenius norm and effective-rank entropy follow similar trends after per-model normalization. The shared shape is clearer in z-score plots than metric-value plots, indicating that the common signal is mostly structural rather than a consequence of identical absolute scale. At the component level, effective-rank entropy drops across multiple components in the final few layers. The decrease is most pronounced for the residual-writing or value-side matrices \(W_O\) and \(W_{\mathrm{down}}\), but a similar late-depth decrease also appears for \(W_{QKV}\) and \(W_{\mathrm{up}}\). This means that the represented spectrum becomes more concentrated near the top of the network: fewer singular directions carry a large share of the spectral mass. At the same time, the Frobenius norms of \(W_O\) and \(W_{\mathrm{down}}\) rise almost linearly with depth, implying that the total weight mass of these matrices increases while their effective spectra become narrower. The \(W_{QKV}\) and \(W_{\mathrm{up}}\) matrices follow related but weaker depth shapes; common and individual trends are less pronounced there than for \(W_O\) and \(W_{\mathrm{down}}\).

a
b

Figure 2: Pretrained layerwise Frobenius-norm and effective-entropy trends.. a — Layer Frobenius norm., b — Layer effective entropy.

2.3.0.2 Interpretation

We interpret the component-level trends through the idea of neural memories [24]. In this view, a two-matrix computation can be read as a key-value memory: one matrix or matrix product determines which features are addressed, while the other determines what information is returned. This interpretation has been applied to Transformer feed-forward layers because their up- and down-projections form such a two-matrix computation [11]. We can apply the same key-value interpretation to the attention weight matrices.

Under this view, the \(W_{QK}\) weights function similarly to keys because they determine the attention logits and therefore the attention weights that select or mix token positions [10]. The \(W_{VO}\) weights function as the value pathway because they transport the selected content back into the residual stream. This gives a natural interpretation of the weaker Frobenius-norm trend for \(W_{QKV}\): changes in attention-logit magnitude are normalized when logits are converted into attention weights explaining the almost constant Frobenius norm, while the late-layer Frobenius-norm growth and effective-entropy drop in \(W_O\) suggest increasingly strong but more spectrally concentrated residual write-back directions.

The MLP pattern can then be read through the original up-and-down key-value interpretation: \(W_{\mathrm{up}}\) detects or keys features in the hidden MLP space, while \(W_{\mathrm{down}}\) writes value-like information back to the residual stream [11], [12]. Because MLP layers are often associated with factual and feature storage [11], [12], [25], the stronger common trends in \(W_{\mathrm{down}}\) may reflect later-layer specialization in the readout or residual-writing side of the MLP. Taken together, the strongest shared spectral trends appear in the matrices most directly responsible for writing information into the residual stream, although this should be understood as a qualitative interpretation of the plots rather than a conclusion from a separate quantitative analysis.

3 Spectral-pattern-based Weight Initialization↩︎

We now test whether the spectral patterns identified in pretrained GPT-2-style models can be turned into useful initialization rules for training a new model.

3.1 Proposed Solution↩︎

We turn the pretrained depth trends from 2 into component-wise initialization rules. The proposed initializers are deliberately coarse: they approximate broad scale and spectral concentration profiles rather than fitting every checkpoint-specific curve. This design tests whether pretrained-like scale and singular-value shape are useful initialization signals when the model architecture is fixed. The proposed initializers and comparison baselines are summarized in 2.

Table 2: Initialization methods compared in the training experiments.
Type Method Construction
Baseline Standard Samples linear and embedding weights from a zero-mean Gaussian with standard deviation \(0.02\) and applies GPT-2 residual-branch scaling [6].
High std Keeps the standard GPT-2 recipe but increases the initialization standard deviation to \(0.08\).
No residual scaling Uses the standard Gaussian scale but removes GPT-2 residual-branch scaling.
Pretrained reuse Copies non-token-embedding weights from a Chinese GPT-2-medium checkpoint and reinitializes token embeddings for the GPT-2 tokenizer [17].
Proposed Magnitude Replaces the single global scale with per-layer, per-component target standard deviations: \(W_{QKV}\) decreases with depth, \(W_{\mathrm{up}}\) decreases mildly, and residual-writing projections increase with depth.
Mag.+spectrum Uses the same target magnitudes, then tries to match the stronger spectral concentration seen in pretrained models by smoothly decaying the singular values. Concretely, it multiplies singular values by \(\exp(-\lambda(z)i/n)\), where \(\lambda(z)=5(1-z)\) and \(z\) is relative depth, before rescaling each matrix to \(\lVert W\rVert_F=\sqrt{d_{\mathrm{in}}d_{\mathrm{out}}}\sigma(z)\).
Realistic scale Applies the magnitude-spectrum construction and then rescales each subcomponent with cohort-derived multipliers so the predicted Frobenius RMS matches the trained cohort scale per subcomponent.

The spectrum-shaping rule separates singular-value shape from total magnitude through the final Frobenius rescaling. Because it uses the normalized singular-value index \(i/n\), the same rule can be applied across component matrices with different shapes. The resulting initialized profiles reproduce some coarse pretrained tendencies in Frobenius norm and effective-rank entropy. 4 shows these initialization profiles against the pretrained cohort summary.

Figure 4: Initialization diagnostic grid. Rows correspond to W_O, W_{QKV}, W_{\mathrm{up}}, and W_{\mathrm{down}}. Columns group panels by metric family, effective entropy or Frobenius norm, and by value type, z-score or metric value. In each panel, relative depth is shown on the horizontal axis and the corresponding diagnostic value is shown on the vertical axis. Line styles distinguish the initialization strategies, while the blue dotted curve and shaded band show the pre-trained cohort mean and \pm1 standard deviation.

3.2 Results↩︎

3.2.0.1 Experiment Setup

All full runs use the same 24-layer GPT-2-medium-sized architecture (\(d_{\mathrm{model}}=1024\), 16 heads, context length 1024) with the GPT-2 tokenizer and SlimPajama-6B [6], [26]. We train for 90k steps, approximately one epoch over 6B tokens, on 8 H20 GPUs with seed 1, per-GPU batch size 2, gradient accumulation 4, learning rate \(3\cdot10^{-4}\), weight decay 0.1, 10M validation tokens, evaluation every 1000 steps, and checkpoints every 10k steps. We evaluate validation perplexity and held-out perplexity on FineWeb-Edu, OpenWebText, and WikiText-103 [27][30]. We also evaluate BLiMP syntactic minimal-pair accuracy [31] and multiple-choice accuracy on ARC-Challenge, ARC-Easy, and WinoGrande [32], [33]. We compare the proposed initializers with Standard, High std, No residual scaling, and Pretrained reuse baselines.

3.2.0.2 Empirical Evaluation

The proposed initializers do not show a uniform benefit over the baselines. Magnitude hurts BLiMP accuracy, while Mag.+spectrum has the weakest validation and held-out perplexities. Realistic scale narrows this gap, suggesting that absolute scale is important, but it still does not dominate the Standard baseline. Pretrained reuse is competitive on perplexity, BLiMP, WikiText-103, and ARC-Easy despite the tokenizer/language mismatch, but it is weak on ARC-Challenge. Overall, pretrained spectra are descriptive of trained models, but not sufficient by themselves as an optimization strategy. 3 summarizes the evaluation results.

Table 3: Evaluation summary grouped by criterion. Arrows indicate whether lower or higher values are better. PPL denotes perplexity, Acc.% denotes BLiMP syntactic minimal-pair accuracy, and MC % denotes multiple-choice accuracy. Bold marks the best result in a column, and red marks clear negative outliers among the full 90k-step runs. Proposed initializers are separated from baselines by a horizontal rule.
PPL \(\downarrow\) Acc.% \(\uparrow\) MC % \(\uparrow\)
2-5(lr)6-6(lr)7-9 Init Val FineWeb OWT WikiText BLiMP ARC-C ARC-E WinoG
Standard 21.68 29.9 30.3 51.9 80.0 24.2 37.4 50.4
High std 22.20 30.7 31.3 51.9 80.9 23.1 38.0 50.3
No residual scaling 21.95 30.3 31.0 53.2 80.8 23.5 38.0 51.1
Pretrained reuse 21.68 29.9 30.7 49.4 80.9 21.8 38.6 50.3
Magnitude 22.06 30.5 31.2 51.3 76.2 23.3 38.1 50.6
Mag.+spectrum 22.24 30.8 31.5 53.8 80.6 22.6 38.4 50.4
Realistic scale 21.93 30.3 31.2 52.1 80.0 22.6 37.6 50.9

3.2.0.3 Spectral Analysis

The proposed initializers visibly change the structural spectral patterns of the model. The magnitude-based initializers impose clear Frobenius-norm depth profiles at initialization, with decreasing scale for \(W_{QKV}\) and \(W_{\mathrm{up}}\) and increasing scale for the residual-writing matrices \(W_O\) and \(W_{\mathrm{down}}\). Mag.+spectrum additionally changes effective-entropy structure by making the initialized spectra more concentrated. After training, these imposed profiles are partly overwritten but not fully erased: the final checkpoints move toward trained-model-like curves while retaining strategy-dependent differences, especially in component-wise scale and spectral concentration. 5 compares each strategy’s initialization profile with the corresponding trained checkpoint.

Figure 5: Strategy-matched initialization and final-checkpoint diagnostics. Rows correspond to the initialization strategy used for training. Columns follow the same structure as the main initialization grid: effective entropy and Frobenius norm, each shown as z-score and metric value. Dashed colored curves show the closed-form initialization prediction, while solid black curves show the corresponding trained checkpoint.

4 Discussion↩︎

We discuss the main limitations of our spectral analysis and initialization experiments, and outline directions for testing richer forms of pretrained structure reuse.

4.1 Threats to Validity↩︎

4.1.0.1 External Validity

Our analysis is limited to GPT-2-style decoder-only Transformers. This constraint keeps the architecture family fixed and makes component-wise comparisons cleaner, but it also limits how far the conclusions can be transferred to other model families, attention variants, normalization schemes, or larger contemporary LLMs. Within this family, we partially mitigate the limitation by sampling checkpoints with different sizes, languages, tokenizers, and training corpora.

4.1.0.2 Internal Validity

The training experiments use one main random seed and one primary pretraining dataset. As a result, small differences between initialization strategies may reflect seed-specific optimization noise or dataset-specific effects rather than stable differences in the methods. The strongest negative results are therefore more reliable than fine-grained rankings among runs with similar perplexity or accuracy.

4.1.0.3 Construct Validity

The proposed initializers approximate broad component-wise spectral trends rather than reproducing every detail of the pretrained spectra. This means they can miss local features such as sharp dips, end-of-depth spikes, or short-range changes that may be functionally important. Our results therefore test whether coarse spectral shape and scale are useful initialization signals, not whether an exact spectral replica of a pretrained model would improve training.

4.2 Future Work↩︎

Future work should separate the descriptive role of spectral complexity from its causal effect on downstream performance. In this paper, complexity is partly enforced through initialization, so it remains unclear whether naturally arising changes in effective rank or Frobenius norm predict better generalization when they are not explicitly imposed. A broader study could measure how these diagnostics correlate with performance across model sizes, datasets, checkpoints, and training stages.

Another direction is to study which pretrained patterns are shared across language models and which are specific to a model, language, or corpus. Mechanistic-interpretability work often builds on the linear representation hypothesis, under which high-level features are encoded as directions in model representation spaces; recent work further asks whether such directions can be aligned or transferred across models [34][36]. Our results suggest an analogous question at the weight level: whether repeated component-wise spectral patterns are merely consequences of architecture and optimization, or whether they encode reusable structure for new training runs.

The competitive performance of pretrained-weight reuse, despite a tokenizer and language mismatch, suggests that some form of pattern reuse is possible. However, our spectral initializers show that coarse spectrum matching is not enough to capture the benefit. Future initialization methods should test richer reuse signals, such as preserving subspace geometry, component-specific singular vectors, or recurring layer-specific weight patterns, and should evaluate whether any early training advantage persists at longer training horizons.

5 Related Work↩︎

This work connects to four lines of prior work.

5.0.0.1 Weight Initialization

Classical initialization methods control activation and gradient scale at the start of training [4], [37]. In Transformer language models, initialization also interacts with residual-depth scaling: GPT-2 scales residual-layer weights at initialization to compensate for accumulation across many residual branches [6]. More recent work studies how initialization scale and spectral control affect training stability and whether learned solutions favor reasoning-like or memorization-like behavior [8], [13], [14]. Our experiments keep the architecture fixed and ask whether pretrained component-wise spectral profiles can provide a useful initialization signal beyond global variance choices in NLP tasks.

5.0.0.2 Spectral Structure in Trained Models

Spectral analysis has been used to characterize implicit regularization and complexity in trained weights [3]. Related analyses of Transformer components show that layers and subcomponents can differ systematically in importance or retained information [1], [2], [5]. Our first-stage analysis follows this diagnostic view, but focuses on whether GPT-2-style checkpoints share recurring component-wise depth profiles across model size, language, tokenizer, and corpus.

5.0.0.3 Mechanistic Interpretability

Mechanistic-interpretability work motivates interpreting Transformer components as structured computations: attention can be decomposed into query-key and output-value circuits [10], MLP blocks can behave like key-value memories or vocabulary-space updates [11], [12], [25], and feature directions may be recoverable from singular-vector structure [5], [9]. This motivates our component-wise treatment of \(W_{QKV}\), \(W_O\), \(W_{\mathrm{up}}\), and \(W_{\mathrm{down}}\), although our measurements remain spectral rather than causal or circuit-level.

5.0.0.4 Complexity Control and Generalization

Spectral and low-rank structure is also widely used for model compression and resource allocation in Transformer language models [38], [39]. This line of work treats singular values as a practical handle on model size and retained information, whereas our experiments ask whether pretrained spectral structure can be reused as an initialization signal. Work on cross-model representation alignment suggests that internal feature spaces can sometimes be compared or transferred across models [34][36]; our setting asks a narrower weight-level version of this question, where only coarse spectral summaries are transferred.

6 Conclusion↩︎

We studied whether spectral patterns found in pretrained GPT-2-style models can be transferred into the initialization of a new language model. Across eleven pretrained checkpoints, we found recurring layerwise and component-wise trends despite differences in model size, language, tokenizer, and corpus. The most consistent patterns appear in residual-writing components: \(W_O\) and \(W_{\mathrm{down}}\) tend to grow in Frobenius norm with depth while their effective spectra become more concentrated.

Our initialization experiments show that these patterns can be imposed structurally. Initializers that replace the single global weight scale with layer- and component-specific magnitudes, and that additionally reshape singular values to mimic the stronger spectral concentration of pretrained models, visibly alter the model’s Frobenius-norm and effective-entropy profiles; some of these differences remain after training. However, these structural changes do not translate into a consistent evaluation gain. The magnitude-only weight initialization intervention hurts BLiMP accuracy, adding singular-value reshaping performs worst on several perplexity measures, and matching pretrained absolute scale more closely narrows but does not remove the gap to standard initialization. By contrast, direct pretrained-weight reuse remains competitive despite a tokenizer and language mismatch, indicating that useful transferable structure may exist but is not captured by coarse spectral summaries alone.

The main implication is therefore negative but informative: pretrained spectra describe real regularities in trained Transformer weights, yet copying component-wise scale and singular-value shape is insufficient as a standalone pretraining initialization method. Future work should test richer ways of reusing pretrained structure, such as singular-vector information and component-specific patterns, and should study whether spectral metrics only describe trained models or can directly improve optimization and generalization.

References↩︎

[1]
W. Wang and Z. Tu, “Rethinking the value of transformer components,” in Proceedings of the 28th international conference on computational linguistics, Dec. 2020, pp. 6019–6029, doi: 10.18653/v1/2020.coling-main.529.
[2]
L. Yin et al., “Outlier weighed layerwise sparsity (OWL): A missing secret sauce for pruning LLMs to high sparsity.” 2025, [Online]. Available: https://arxiv.org/abs/2310.05175.
[3]
C. H. Martin and M. W. Mahoney, “Implicit self-regularization in deep neural networks: Evidence from random matrix theory and implications for learning,” Journal of Machine Learning Research, vol. 22, no. 165, pp. 1–73, 2021.
[4]
X. Glorot and Y. Bengio, “Understanding the difficulty of training deep feedforward neural networks,” in Proceedings of the thirteenth international conference on artificial intelligence and statistics, 2010, vol. 9, pp. 249–256, [Online]. Available: https://proceedings.mlr.press/v9/glorot10a.html.
[5]
M. Staats, M. Thamm, and B. Rosenow, “Small singular values matter: A random matrix analysis of transformer models,” Advances in Neural Information Processing Systems, vol. 38, pp. 153545–153573, 2026.
[6]
A. Radford et al., “Language models are unsupervised multitask learners,” OpenAI blog, vol. 1, no. 8, p. 9, 2019.
[7]
T. Wolf et al., “Transformers: State-of-the-art natural language processing,” in Proceedings of the 2020 conference on empirical methods in natural language processing: System demonstrations, Oct. 2020, pp. 38–45, doi: 10.18653/v1/2020.emnlp-demos.6.
[8]
S. Zhai et al., “Stabilizing transformer training by preventing attention entropy collapse,” in Proceedings of the 40th international conference on machine learning, 2023.
[9]
G. Franco, C. Loughridge, and M. Crovella, To be published in ICML 2026“Singular Vectors of Attention Heads Align with Features.” arXiv, May 2026, doi: 10.48550/arXiv.2602.13524.
[10]
N. Elhage et al., “A mathematical framework for transformer circuits.” Transformer Circuits Thread, 2021, Accessed: Jul. 05, 2026. [Online]. Available: https://transformer-circuits.pub/2021/framework/index.html.
[11]
M. Geva, R. Schuster, J. Berant, and O. Levy, “Transformer Feed-Forward Layers Are Key-Value Memories,” in Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, Nov. 2021, pp. 5484–5495, doi: 10.18653/v1/2021.emnlp-main.446.
[12]
M. Geva, A. Caciularu, K. Wang, and Y. Goldberg, “Transformer Feed-Forward Layers Build Predictions by Promoting Concepts in the Vocabulary Space,” in Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, Dec. 2022, pp. 30–45, doi: 10.18653/v1/2022.emnlp-main.3.
[13]
Z. Zhang, P. Lin, Z. Wang, Y. Zhang, and Z.-Q. J. Xu, “Initialization is critical to whether transformers fit composite functions by reasoning or memorizing,” in Proceedings of the 38th international conference on neural information processing systems, 2024.
[14]
Z. Zhang, P. Lin, Z. Wang, Y. Zhang, and Z.-Q. John Xu, “Complexity control facilitates reasoning-based compositional generalization in transformers,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 48, no. 4, pp. 4336–4349, 2026, doi: 10.1109/TPAMI.2025.3646483.
[15]
D. Zmitrovich et al., “A family of pretrained transformer language models for Russian,” in Proceedings of the 2024 joint international conference on computational linguistics, language resources and evaluation (LREC-COLING 2024), May 2024, pp. 507–524, [Online]. Available: https://aclanthology.org/2024.lrec-main.45/.
[16]
N. N. Van, NlpHUST/Gpt2-vietnamese \(\cdot\) Hugging Face.” https://huggingface.co/NlpHUST/gpt2-vietnamese, Sep. 2025, Accessed: Jul. 05, 2026. [Online].
[17]
C. Guo, “Mymusise/Gpt2-medium-chinese \(\cdot\) Hugging Face.” https://huggingface.co/mymusise/gpt2-medium-chinese, 2023, Accessed: Jul. 05, 2026. [Online].
[18]
P. Guillou, “GPorTuguese-2 (portuguese GPT-2 small): A language model for portuguese text generation (and more NLP tasks...).” https://huggingface.co/pierreguillou/gpt2-small-portuguese, 2020, Accessed: Jul. 05, 2026. [Online].
[19]
T. Zhao and K. Sawada, “Rinna/japanese-gpt2-medium.” 2021, [Online]. Available: https://huggingface.co/rinna/japanese-gpt2-medium.
[20]
K. Sawada et al., “Release of pre-trained models for the Japanese language,” in Proceedings of the 2024 joint international conference on computational linguistics, language resources and evaluation (LREC-COLING 2024), May 2024, pp. 13898–13905, [Online]. Available: https://aclanthology.org/2024.lrec-main.1213/.
[21]
H. T. Kesgin et al., “Introducing cosmosGPT: Monolingual training for turkish language models,” in 2024 international conference on INnovations in intelligent SysTems and applications (INISTA), 2024, pp. 1–6.
[22]
Z. Zhao et al., “Tencentpretrain: A scalable and flexible toolkit for pre-training models of different modalities,” in Proceedings of the 61st annual meeting of the association for computational linguistics (volume 3: System demonstrations), 2023, pp. 217–225.
[23]
P. Vadrevu, “Pranavpsv/Gpt2-genre-story-generator \(\cdot\) Hugging Face.” https://huggingface.co/pranavpsv/gpt2-genre-story-generator, 2021, Accessed: Jul. 05, 2026. [Online].
[24]
S. Sukhbaatar, A. Szlam, J. Weston, and R. Fergus, “End-to-end memory networks,” in Proceedings of the 29th international conference on neural information processing systems - volume 2, 2015, pp. 2440–2448.
[25]
K. Meng, D. Bau, A. Andonian, and Y. Belinkov, “Locating and Editing Factual Associations in GPT,” Advances in Neural Information Processing Systems, vol. 35, pp. 17359–17372, Dec. 2022, Accessed: May 25, 2026. [Online].
[26]
D. Soboleva, F. Al-Khateeb, R. Myers, J. R. Steeves, J. Hestness, and N. Dey, SlimPajama: A 627B token cleaned and deduplicated version of RedPajama.” https://www.cerebras.net/blog/slimpajama-a-627b-token-cleaned-and-deduplicated-version-of-redpajama, Jun. 2023, [Online]. Available: https://huggingface.co/datasets/cerebras/SlimPajama-627B.
[27]
G. Penedo et al., “The FineWeb datasets: Decanting the web for the finest text data at scale,” in Advances in neural information processing systems, 2024, vol. 37, pp. 30811–30849, doi: 10.52202/079017-0970.
[28]
A. Lozhkov, L. Ben Allal, L. von Werra, and T. Wolf, “FineWeb-edu: The finest collection of educational content.” Hugging Face, 2024, doi:10.57967/hf/2497 .
[29]
A. Gokaslan and V. Cohen, “OpenWebText corpus.” http://Skylion007.github.io/OpenWebTextCorpus, 2019.
[30]
S. Merity, C. Xiong, J. Bradbury, and R. Socher, “Pointer sentinel mixture models.” 2016, [Online]. Available: https://arxiv.org/abs/1609.07843.
[31]
A. Warstadt et al., “BLiMP: The benchmark of linguistic minimal pairs for english,” Transactions of the Association for Computational Linguistics, vol. 8, pp. 377–392, 2020, doi: 10.1162/tacl\_a\_00321.
[32]
P. Clark et al., “Think you have solved question answering? Try ARC, the AI2 reasoning challenge.” 2018, [Online]. Available: https://arxiv.org/abs/1803.05457.
[33]
K. Sakaguchi, R. L. Bras, C. Bhagavatula, and Y. Choi, “WinoGrande: An adversarial winograd schema challenge at scale.” 2019, [Online]. Available: https://arxiv.org/abs/1907.10641.
[34]
M. Huh, B. Cheung, T. Wang, and P. Isola, “Position: The platonic representation hypothesis,” in Proceedings of the 41st international conference on machine learning, 2024, vol. 235, pp. 20617–20642, [Online]. Available: https://proceedings.mlr.press/v235/huh24a.html.
[35]
N. F. Oozeer, D. Nathawani, N. Prakash, M. Lan, A. Harrasse, and A. Abdullah, “Activation space interventions can be transferred between large language models,” in Proceedings of the 42nd international conference on machine learning, 2025.
[36]
Y. Huang, C. Huang, D. Feng, W. Lei, and J. Lv, “Cross-model transferability among large language models on the platonic representations of concepts,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), Jul. 2025, pp. 3686–3704, doi: 10.18653/v1/2025.acl-long.185.
[37]
K. He, X. Zhang, S. Ren, and J. Sun, “Delving deep into rectifiers: Surpassing human-level performance on imagenet classification,” in Proceedings of the IEEE international conference on computer vision, 2015, pp. 1026–1034, doi: 10.1109/ICCV.2015.123.
[38]
T. Hua, X. Li, S. Gao, Y.-C. Hsu, Y. Shen, and H. Jin, “Dynamic low-rank estimation for transformer-based language models,” in Findings of the association for computational linguistics: EMNLP 2023, Dec. 2023, pp. 9275–9287, doi: 10.18653/v1/2023.findings-emnlp.621.
[39]
X. Wang, S. Alam, Z. Wan, H. Shen, and M. Zhang, SVD-LLM V2: Optimizing singular value truncation for large language model compression,” in Proceedings of the 2025 conference of the nations of the americas chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), Apr. 2025, pp. 4287–4296, doi: 10.18653/v1/2025.naacl-long.217.