REVIEW 1 major objections 6 minor 56 references
By replacing the low-rank query-key product with high-rank structured matrices, attention can overcome its low-rank bottleneck and add a distance-dependent compute bias, beating standard attention at fixed compute on high-dimensional regres
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 21:25 UTC pith:4XXAZL77
load-bearing objection A clean framework for structured attention scoring, but the compute-efficiency headline rests on FLOPs counts rather than wall-clock, and the LM scaling-law evidence is thinner than the abstract suggests. the 1 major comments →
Customizing the Inductive Biases of Softmax Attention using Structured Matrices
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that the attention scoring function, not just the attention architecture, carries two tunable inductive biases: rank and position-dependence. Standard multi-head attention computes scores as x^T W_Q W_K^T x', a bilinear form of rank equal to the head dimension r; when r is much smaller than the embedding dimension D, tasks with intrinsically high-dimensional inputs are provably hard to express. The paper shows that replacing this low-rank product with structured matrices removes that bottleneck: BTT matrices use O(D^{3/2}) parameters yet are full rank, and MLR matrices sum block-diagonal low-rank terms across scales, so they are high-rank while costing about as many FLOP
What carries the argument
The central object is the structured matrix inside the attention scoring function. Standard attention uses the low-rank matrix W_Q W_K^T (rank r, the head dimension). The paper substitutes Block Tensor-Train (BTT) matrices—factorizations with O(D^{3/2}) parameters that can be full rank—and Multi-Level Low Rank (MLR) matrices—sums of block-diagonal low-rank terms at progressively finer block sizes. These matrices do two jobs: they raise the rank of the score matrix, and, in MLR attention, they allocate compute by distance, because a token pair's score uses only the levels whose blocks contain both tokens. The paper also introduces MLBTC (Multi-Level Block Tensor Contraction) as a unifying fam
Load-bearing premise
The load-bearing premise is that FLOPs are the right efficiency currency: the authors' own footnote reports their structured implementations are slower in wall-clock time than standard attention, and the only wall-clock check is one in-context regression run, so the scaling-law and time-series advantages could shrink or vanish on real hardware.
What would settle it
Train the same 6-layer transformer on OpenWebText with standard attention and 8-level MLR attention (rank split 32|8|6|4|4|4|4|2) at width 768, and compare validation loss against wall-clock time on the same GPU instead of FLOPs. If standard attention reaches equal or lower loss at equal or less wall-clock time, the central efficiency claim fails. A complementary check: run the in-context regression comparison at input dimension 128, width 256, and report throughput and energy alongside FLOPs.
If this is right
- On in-context linear regression with high-dimensional inputs, Bilinear BTT and Bilinear MLR reach lower error than multi-head attention at the same FLOP count, with full-rank structures working at smaller model widths.
- On character-level OpenWebText, 8-level MLR attention achieves lower validation loss than standard attention across widths 256-768 and also beats sliding-window and global-plus-sliding-window hybrids at fixed compute, implying a better scaling law.
- MLR attention reduces key-cache size during autoregressive generation; with 8 levels and equal rank split the cache drops by about 4x.
- Because BTT and MLR are special cases of the MLBTC family, the design space for scoring functions includes interpolations between full-rank global scoring and hierarchical local scoring.
- On the Chronos time-series model and ETT data, MLR attention reaches comparable or better forecasting accuracy with fewer FLOPs, with gains growing at longer horizons.
Where Pith is reading between the lines
- The paper's FLOP wins are measured in arithmetic, not runtime; a natural extension is to benchmark these scores on tensor-core hardware, where batch-parallel contractions could close the observed wall-clock gap.
- The hierarchical block structure of MLR attention could be aligned to semantic units rather than fixed power-of-two blocks—paragraphs, files, or code scopes—turning the compute-bias knob into a data-structure knob.
- The same structured replacement could be applied to the value-output projection inside each head, or with different structures per head, to distribute labor across heads; the paper only sketches this direction.
- MLBTC's parameterization suggests a search problem: choose the number of levels, block sizes, and rank splits to match a dataset's locality spectrum, which the paper does not explore.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes replacing the low-rank attention scoring matrix W_Q W_K^T with structured matrix families: Block Tensor Train (BTT) and Multi-Level Low Rank (MLR) matrices, and introduces MLBTC as a unifying framework. It applies high-rank bilinear forms to in-context linear regression to overcome the low-rank bottleneck, and applies MLR with hierarchical block structure to encode a distance-dependent compute bias in language modeling and time-series forecasting. The authors report that BTT/MLR attention outperform standard attention at fixed FLOPs on in-context regression, and that MLR attention achieves improved scaling laws on OpenWebText compared with standard and sliding-window attention.
Significance. The conceptual contribution is timely: it identifies the attention scoring matrix as a locus for customizing inductive biases and provides concrete structured parameterizations with clear FLOP analyses. The tensor-contraction tables in Appendix D are useful, and the derivations connecting MLR to a distance-dependent score matrix are transparent. The code release is also a strength. However, the current evidence is not yet fully load-bearing: the main compute-controlled comparisons are measured in idealized FLOPs rather than wall-clock time, the headline plots lack error bars, and the central LM result depends on a single hand-picked rank allocation. If these gaps are closed, the work could make a solid contribution; as it stands, the empirical claims outrun the validation.
major comments (1)
- [Section 5.1, Figure 4; Section 5.2, Figure 5; Appendix G] The abstract and Section 4 claim that the proposed methods "outperform standard attention for any fixed compute budget." The experiments cover a limited range of model widths, input dimensions, and compute budgets; the statement as written is broader than the evidence. Please qualify the claim to the tested settings (or provide additional sweeps) so that the conclusion matches the scope of the experiments.
minor comments (6)
- [Section 3.2] Typo: "creates a information bottleneck" should be "creates an information bottleneck."
- [Section 3.3] The statement that BTT "can approximate arbitrary dense matrices" and thus MLBTC "can also express any D x D matrices" mixes approximation and exact expressiveness. If the intended meaning is exact representation, please state it precisely and cite the corresponding parameter regime from Qiu et al.
- [Section 3.4] The distance function d(j,j') is introduced for the two-level case and then used in Equation (9) for the general L-level case. The general definition should be given explicitly for L levels, since the example only defines d=1 and d=2.
- [Section 5.2 / Appendix I] Figure 15(a) reports bars for horizons 96, 192, and 336, but the text says improvements are observed for "both horizons 96 and 336." Please describe all three horizons and include uncertainty information.
- [References] There are duplicate entries for Behrouz et al. (2024a and 2024b) with the same arXiv identifier arXiv:2501.00663. Please consolidate or correct.
- [Appendix F] Figure 6 is cited as evidence of stable learning-rate transfer, but it uses a reduced context length of 256. This detail should be mentioned when the figure is referenced in the main text.
Circularity Check
No significant circularity; central claims are definitional arithmetic plus external empirical comparisons.
full rationale
The paper's derivation chain does not contain a step in which a prediction reduces to a fitted input or to a definitional equivalent. The structured scoring functions in Eqs. (6) and (7) are direct instantiations of the MLR and BTT definitions in Eqs. (4) and (5); the FLOPs counts in Table 1 and Appendix D are arithmetic consequences of those definitions, not assumed conclusions. The empirical claims are tested against external baselines (standard attention, sliding-window attention, and Chronos-style time-series models) with matched head dimension and model width, and no parameter is fit to the target metric and then reported as a prediction. The paper does rely on prior work by overlapping authors for two supporting facts: the BTT universality result from Qiu et al. (2024) and the rank-bottleneck theorem from Amsel et al. (2024). These are self-citations, but they are not load-bearing in a circular sense: they are stated as external theorems with assumptions that do not include the present paper's results, and the rank-bottleneck phenomenon is independently reproduced in the paper's own Figure 2. The MLBTC construction in Section 3.3 is a definitional generalization of MLR and BTT, not a derived prediction, and the equivalence between the scoring-function form and the matrix form is proved in Lemma C.1 rather than assumed. Footnote 2 in Section 4 concedes that the structured implementations are 'somewhat slower in wall-clock time than standard attention'; this is a practical validity limitation of the FLOPs-based compute control, not a circularity, because the FLOPs axis is not equated to validation loss by construction. Overall, the paper is self-contained against external benchmarks and its reported advantages follow from the proposed definitions plus empirical evaluation.
Axiom & Free-Parameter Ledger
free parameters (4)
- MLR per-level rank allocation r_1|...|r_L =
32|8|6|4|4|4|4|2 (LM); 32|10|8|8|4|2, 48|16, 40|16|4|4 (time series)
- Number of MLR levels L =
8 (LM), 6 (Chronos), 2 and 4 (ETT)
- BTT internal rank s =
1 or 2
- QK LayerNorm constants C and C* =
tunable (not specified)
axioms (5)
- standard math A BTT matrix with a=b=c=d=s=sqrt(D) can express any D x D matrix (Qiu et al. 2024).
- standard math A rank-r matrix W_Q W_K^T with r << D cannot represent the inner-product scoring function x^T x'.
- domain assumption Text and time-series data exhibit block-local structure aligned with fixed powers-of-two partitions.
- domain assumption muP learning-rate and initialization rules transfer to the structured attention variants.
- domain assumption FLOPs excluding embedding projections is a fair compute metric for comparing attention variants.
read the original abstract
The core component of attention is the scoring function, which transforms the inputs into low-dimensional queries and keys and takes the dot product of each pair. While the low-dimensional projection improves efficiency, it causes information loss for certain tasks that have intrinsically high-dimensional inputs. Additionally, attention uses the same scoring function for all input pairs, without imposing a distance-dependent compute bias for neighboring tokens in the sequence. In this work, we address these shortcomings by proposing new scoring functions based on computationally efficient structured matrices with high ranks, including Block Tensor-Train (BTT) and contiguous Multi-Level Low Rank (MLR) matrices. On in-context regression tasks with high-dimensional inputs, our proposed scoring functions outperform standard attention for any fixed compute budget. On language modeling, a task that exhibits locality patterns, our MLR-based attention method achieves improved scaling laws compared to both standard attention and variants of sliding window attention. Additionally, we show that both BTT and MLR fall under a broader family of efficient structured matrices capable of encoding either full-rank or distance-dependent compute biases, thereby addressing significant shortcomings of standard attention. Finally, we show that MLR attention has promising results for long-range time-series forecasting.
Figures
Reference graph
Works this paper leans on
-
[1]
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 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
Gqa: Training generalized multi-query transformer models from multi-head checkpoints, 2023
Ainslie, J., Lee-Thorp, J., de Jong, M., Zemlyanskiy, Y., Lebrón, F., and Sanghai, S. Gqa: Training generalized multi-query transformer models from multi-head checkpoints, 2023. URL https://arxiv.org/abs/2305.13245
Pith/arXiv arXiv 2023
-
[3]
On the Benefits of Rank in Attention Layers
Amsel, N., Yehudai, G., and Bruna, J. On the benefits of rank in attention layers, 2024. URL https://arxiv.org/abs/2407.16153
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[4]
F., Stella, L., Turkmen, C., Zhang, X., Mercado, P., Shen, H., Shchur, O., Rangapuram, S
Ansari, A. F., Stella, L., Turkmen, C., Zhang, X., Mercado, P., Shen, H., Shchur, O., Rangapuram, S. S., Arango, S. P., Kapoor, S., Zschiegner, J., Maddix, D. C., Wang, H., Mahoney, M. W., Torkkola, K., Wilson, A. G., Bohlke-Schneider, M., and Wang, Y. Chronos: Learning the Language of Time Series . arXiv:2403.07815, 2024
Pith/arXiv arXiv 2024
-
[5]
Simple linear attention language models balance the recall-throughput tradeoff, 2024
Arora, S., Eyuboglu, S., Zhang, M., Timalsina, A., Alberti, S., Zinsley, D., Zou, J., Rudra, A., and Ré, C. Simple linear attention language models balance the recall-throughput tradeoff, 2024. URL https://arxiv.org/abs/2402.18668
Pith/arXiv arXiv 2024
-
[6]
Neural machine translation by jointly learning to align and translate, 2016
Bahdanau, D., Cho, K., and Bengio, Y. Neural machine translation by jointly learning to align and translate, 2016. URL https://arxiv.org/abs/1409.0473
Pith/arXiv arXiv 2016
-
[8]
Titans: Learning to memorize at test time, 2024 b
Behrouz, A., Zhong, P., and Mirrokni, V. Titans: Learning to memorize at test time, 2024 b . URL https://arxiv.org/abs/2501.00663
Pith/arXiv arXiv 2024
-
[9]
Beltagy, I., Peters, M. E., and Cohan, A. Longformer: The long-document transformer, 2020. URL https://arxiv.org/abs/2004.05150
Pith/arXiv arXiv 2020
-
[10]
Bhojanapalli, S., Yun, C., Rawat, A. S., Reddi, S., and Kumar, S. Low-rank bottleneck in multi-head attention models. In Proceedings of the 37th International Conference on Machine Learning, ICML'20. JMLR.org, 2020
work page 2020
-
[11]
A., Adeli, E., Altman, R., Arora, S., von Arx, S., Bernstein, M
Bommasani, R., Hudson, D. A., Adeli, E., Altman, R., Arora, S., von Arx, S., Bernstein, M. S., Bohg, J., Bosselut, A., Brunskill, E., Brynjolfsson, E., Buch, S., Card, D., Castellon, R., Chatterji, N., Chen, A., Creel, K., Davis, J. Q., Demszky, D., Donahue, C., Doumbouya, M., Durmus, E., Ermon, S., Etchemendy, J., Ethayarajh, K., Fei-Fei, L., Finn, C., G...
Pith/arXiv arXiv 2022
-
[12]
Scatterbrain: Unifying sparse and low-rank attention
Chen, B., Dao, T., Winsor, E., Song, Z., Rudra, A., and R\' e , C. Scatterbrain: Unifying sparse and low-rank attention. In Ranzato, M., Beygelzimer, A., Dauphin, Y., Liang, P., and Vaughan, J. W. (eds.), Advances in Neural Information Processing Systems, volume 34, pp.\ 17413--17426. Curran Associates, Inc., 2021. URL https://proceedings.neurips.cc/paper...
work page 2021
-
[13]
Generating long sequences with sparse transformers, 2019
Child, R., Gray, S., Radford, A., and Sutskever, I. Generating long sequences with sparse transformers, 2019. URL https://arxiv.org/abs/1904.10509
Pith/arXiv arXiv 2019
-
[14]
Rethinking attention with performers, 2022
Choromanski, K., Likhosherstov, V., Dohan, D., Song, X., Gane, A., Sarlos, T., Hawkins, P., Davis, J., Mohiuddin, A., Kaiser, L., Belanger, D., Colwell, L., and Weller, A. Rethinking attention with performers, 2022. URL https://arxiv.org/abs/2009.14794
Pith/arXiv arXiv 2022
-
[15]
Dao, T. and Gu, A. Transformers are ssms: Generalized models and efficient algorithms through structured state space duality, 2024. URL https://arxiv.org/abs/2405.21060
Pith/arXiv arXiv 2024
-
[16]
Learning Fast Algorithms for Linear Transforms Using Butterfly Factorizations
Dao, T., Gu, A., Eichhorn, M., Rudra, A., and Ré, C. Learning fast algorithms for linear transforms using butterfly factorizations, 2020. URL https://arxiv.org/abs/1903.05895
work page internal anchor Pith review Pith/arXiv arXiv 2020
-
[17]
Monarch: Expressive Structured Matrices for Efficient and Accurate Training
Dao, T., Chen, B., Sohoni, N., Desai, A., Poli, M., Grogan, J., Liu, A., Rao, A., Rudra, A., and Ré, C. Monarch: Expressive structured matrices for efficient and accurate training, 2022. URL https://arxiv.org/abs/2204.00595
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[18]
Fu, D. Y., Dao, T., Saab, K. K., Thomas, A. W., Rudra, A., and Ré, C. Hungry hungry hippos: Towards language modeling with state space models, 2023. URL https://arxiv.org/abs/2212.14052
Pith/arXiv arXiv 2023
-
[19]
Garg, S., Tsipras, D., Liang, P. S., and Valiant, G. What can transformers learn in-context? a case study of simple function classes. In Koyejo, S., Mohamed, S., Agarwal, A., Belgrave, D., Cho, K., and Oh, A. (eds.), Advances in Neural Information Processing Systems, volume 35, pp.\ 30583--30598. Curran Associates, Inc., 2022. URL https://arxiv.org/abs/2208.01066
Pith/arXiv arXiv 2022
-
[20]
Gu, A. and Dao, T. Mamba: Linear-time sequence modeling with selective state spaces, 2024. URL https://arxiv.org/abs/2312.00752
Pith/arXiv arXiv 2024
-
[21]
Efficiently modeling long sequences with structured state spaces, 2022
Gu, A., Goel, K., and Ré, C. Efficiently modeling long sequences with structured state spaces, 2022. URL https://arxiv.org/abs/2111.00396
Pith/arXiv arXiv 2022
-
[22]
SLT rain: a sparse plus low rank approach for parameter and memory efficient pretraining
Han, A., Li, J., Huang, W., Hong, M., Takeda, A., Jawanpuria, P., and Mishra, B. SLT rain: a sparse plus low rank approach for parameter and memory efficient pretraining. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. URL https://openreview.net/forum?id=MXze4H7opg
work page 2024
-
[23]
Global context vision transformers
Hatamizadeh, A., Yin, H., Heinrich, G., Kautz, J., and Molchanov, P. Global context vision transformers. In International Conference on Machine Learning, pp.\ 12633--12646. PMLR, 2023
work page 2023
-
[24]
J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W
Hu, E. J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685, 2021
Pith/arXiv arXiv 2021
-
[25]
Advancing transformer architecture in long-context large language models: A comprehensive survey
Huang, Y., Xu, J., Lai, J., Jiang, Z., Chen, T., Li, Z., Yao, Y., Ma, X., Yang, L., Chen, H., et al. Advancing transformer architecture in long-context large language models: A comprehensive survey. arXiv preprint arXiv:2311.12351, 2023
Pith/arXiv arXiv 2023
-
[26]
Hydra: Bidirectional state space models through generalized matrix mixers, 2024
Hwang, S., Lahoti, A., Dao, T., and Gu, A. Hydra: Bidirectional state space models through generalized matrix mixers, 2024. URL https://arxiv.org/abs/2407.09941
Pith/arXiv arXiv 2024
-
[27]
Jelassi, S., Brandfonbrener, D., Kakade, S. M., and Malach, E. Repeat after me: transformers are better than state space models at copying. In Proceedings of the 41st International Conference on Machine Learning, ICML'24. JMLR.org, 2024
work page 2024
-
[28]
Transformers are rnns: Fast autoregressive transformers with linear attention, 2020
Katharopoulos, A., Vyas, A., Pappas, N., and Fleuret, F. Transformers are rnns: Fast autoregressive transformers with linear attention, 2020. URL https://arxiv.org/abs/2006.16236
Pith/arXiv arXiv 2020
-
[29]
Towards Understanding Inductive Bias in Transformers: A View From Infinity
Lavie, I., Gur-Ari, G., and Ringel, Z. Towards understanding inductive bias in transformers: A view from infinity, 2024. URL https://arxiv.org/abs/2402.05173
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[30]
Liaw, R., Liang, E., Nishihara, R., Moritz, P., Gonzalez, J. E., and Stoica, I. Tune: A research platform for distributed model selection and training, 2018. URL https://arxiv.org/abs/1807.05118
Pith/arXiv arXiv 2018
-
[31]
Loshchilov, I. and Hutter, F. Decoupled weight decay regularization, 2019. URL https://arxiv.org/abs/1711.05101
Pith/arXiv arXiv 2019
-
[32]
Lotfi, S., Finzi, M., Kuang, Y., Rudner, T. G. J., Goldblum, M., and Wilson, A. G. Non-vacuous generalization bounds for large language models, 2024 a . URL https://arxiv.org/abs/2312.17173
Pith/arXiv arXiv 2024
-
[33]
Lotfi, S., Kuang, Y., Amos, B., Goldblum, M., Finzi, M., and Wilson, A. G. Unlocking tokens as data points for generalization bounds on larger language models, 2024 b . URL https://arxiv.org/abs/2407.18158
Pith/arXiv arXiv 2024
-
[34]
Luong, T., Pham, H., and Manning, C. D. Effective approaches to attention-based neural machine translation. In M \`a rquez, L., Callison-Burch, C., and Su, J. (eds.), Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pp.\ 1412--1421, Lisbon, Portugal, September 2015. Association for Computational Linguistics. doi:10.1...
-
[35]
G., Challú, C., Garza, A., Canseco, M
Olivares, K. G., Challú, C., Garza, A., Canseco, M. M., and Dubrawski, A. NeuralForecast : User friendly state-of-the-art neural forecasting models. PyCon Salt Lake City, Utah, US 2022, 2022. URL https://github.com/Nixtla/neuralforecast
work page 2022
-
[36]
Factor fitting, rank allocation, and partitioning in multilevel low rank matrices, 2023
Parshakova, T., Hastie, T., Darve, E., and Boyd, S. Factor fitting, rank allocation, and partitioning in multilevel low rank matrices, 2023. URL https://arxiv.org/abs/2310.19214
-
[37]
Fitting Multilevel Factor Models
Parshakova, T., Hastie, T., and Boyd, S. Fitting multilevel factor models, 2024. URL https://arxiv.org/abs/2409.12067
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[38]
Y., Dao, T., Baccus, S., Bengio, Y., Ermon, S., and Ré, C
Poli, M., Massaroli, S., Nguyen, E., Fu, D. Y., Dao, T., Baccus, S., Bengio, Y., Ermon, S., and Ré, C. Hyena hierarchy: Towards larger convolutional language models, 2023. URL https://arxiv.org/abs/2302.10866
Pith/arXiv arXiv 2023
-
[39]
Potapczynski, A., Qiu, S., Finzi, M., Ferri, C., Chen, Z., Goldblum, M., Bruss, B., Sa, C. D., and Wilson, A. G. Searching for efficient linear layers over a continuous space of structured matrices, 2024. URL https://arxiv.org/abs/2410.02117
Pith/arXiv arXiv 2024
-
[40]
Qiu, S., Potapczynski, A., Finzi, M., Goldblum, M., and Wilson, A. G. Compute better spent: Replacing dense layers with structured matrices, 2024. URL https://arxiv.org/abs/2406.06248
Pith/arXiv arXiv 2024
-
[41]
Combiner: full attention transformer with sparse computation cost
Ren, H., Dai, H., Dai, Z., Yang, M., Leskovec, J., Schuurmans, D., and Dai, B. Combiner: full attention transformer with sparse computation cost. In Proceedings of the 35th International Conference on Neural Information Processing Systems, NIPS '21, Red Hook, NY, USA, 2021. Curran Associates Inc. ISBN 9781713845393
work page 2021
-
[42]
G., Hardin, C., Bhupatiraju, S., Hussenot, L., Mesnard, T., Shahriari, B., Ram \'e , A., et al
Riviere, M., Pathak, S., Sessa, P. G., Hardin, C., Bhupatiraju, S., Hussenot, L., Mesnard, T., Shahriari, B., Ram \'e , A., et al. Gemma 2: Improving open language models at a practical size, 2024. URL https://arxiv. org/abs/2408.00118, 1 0 (3), 2024
Pith/arXiv arXiv 2024
-
[43]
Representational strengths and limitations of transformers
Sanford, C., Hsu, D., and Telgarsky, M. Representational strengths and limitations of transformers. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. URL https://openreview.net/forum?id=36DxONZ9bA
work page 2023
-
[44]
Sehanobish, A., Dubey, K. A., Choromanski, K. M., Chowdhury, S. B. R., Jain, D., Sindhwani, V., and Chaturvedi, S. Structured unrestricted-rank matrices for parameter efficient finetuning. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. URL https://openreview.net/forum?id=MXOzgjlWDF
work page 2024
-
[45]
Roformer: Enhanced transformer with rotary position embedding, 2023
Su, J., Lu, Y., Pan, S., Murtadha, A., Wen, B., and Liu, Y. Roformer: Enhanced transformer with rotary position embedding, 2023. URL https://arxiv.org/abs/2104.09864
Pith/arXiv arXiv 2023
-
[46]
T., Gu, A., Dao, T., Rudra, A., and R\' e , C
Thomas, A. T., Gu, A., Dao, T., Rudra, A., and R\' e , C. Learning compressed transforms with low displacement rank. In Proceedings of the 32nd International Conference on Neural Information Processing Systems, NIPS'18, pp.\ 9066–9078, Red Hook, NY, USA, 2018. Curran Associates Inc
work page 2018
-
[47]
N., Kaiser, L
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, L. u., and Polosukhin, I. Attention is all you need. In Guyon, I., Luxburg, U. V., Bengio, S., Wallach, H., Fergus, R., Vishwanathan, S., and Garnett, R. (eds.), Advances in Neural Information Processing Systems, volume 30. Curran Associates, Inc., 2017. URL https://proc...
2017
-
[48]
Warner, B., Chaffin, A., Clavi \'e , B., Weller, O., Hallstr \"o m, O., Taghadouini, S., Gallagher, A., Biswas, R., Ladhak, F., Aarsen, T., et al. Smarter, better, faster, longer: A modern bidirectional encoder for fast, memory efficient, and long context finetuning and inference. arXiv preprint arXiv:2412.13663, 2024
Pith/arXiv arXiv 2024
-
[49]
Building on efficient foundations: Effective training of LLM s with structured feedforward layers
Wei, X., Moalla, S., Pascanu, R., and Gulcehre, C. Building on efficient foundations: Effective training of LLM s with structured feedforward layers. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. URL https://openreview.net/forum?id=WxLVYZbIew
work page 2024
-
[50]
Mswa: Refining local attention with multi-scalewindow attention
Xu, Y., Nag, S., Li, D., Tian, L., and Barsoum, E. Mswa: Refining local attention with multi-scalewindow attention. arXiv preprint arXiv:2501.01039, 2025
Pith/arXiv arXiv 2025
-
[51]
J., Babuschkin, I., Sidor, S., Liu, X., Farhi, D., Ryder, N., Pachocki, J., Chen, W., and Gao, J
Yang, G., Hu, E. J., Babuschkin, I., Sidor, S., Liu, X., Farhi, D., Ryder, N., Pachocki, J., Chen, W., and Gao, J. Tensor programs v: Tuning large neural networks via zero-shot hyperparameter transfer, 2022. URL https://arxiv.org/abs/2203.03466
Pith/arXiv arXiv 2022
-
[52]
Yang, G., Simon, J. B., and Bernstein, J. A spectral condition for feature learning, 2024. URL https://arxiv.org/abs/2310.17813
Pith/arXiv arXiv 2024
-
[53]
Bp-transformer: Modelling long-range context via binary partitioning
Ye, Z., Guo, Q., Gan, Q., Qiu, X., and Zhang, Z. Bp-transformer: Modelling long-range context via binary partitioning. arXiv preprint arXiv:1911.04070, 2019
Pith/arXiv arXiv 1911
-
[54]
X., Wang, L., Xiao, Z., Wang, Y., Ruan, C., Zhang, M., Liang, W., and Zeng, W
Yuan, J., Gao, H., Dai, D., Luo, J., Zhao, L., Zhang, Z., Xie, Z., Wei, Y. X., Wang, L., Xiao, Z., Wang, Y., Ruan, C., Zhang, M., Liang, W., and Zeng, W. Native sparse attention: Hardware-aligned and natively trainable sparse attention, 2025. URL https://arxiv.org/abs/2502.11089
Pith/arXiv arXiv 2025
-
[55]
The hedgehog & the porcupine: Expressive linear attentions with softmax mimicry
Zhang, M., Bhatia, K., Kumbong, H., and Re, C. The hedgehog & the porcupine: Expressive linear attentions with softmax mimicry. In The Twelfth International Conference on Learning Representations, 2024. URL https://openreview.net/forum?id=4g02l2N2Nx
work page 2024
-
[56]
Informer: Beyond efficient transformer for long sequence time-series forecasting, 2021
Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., and Zhang, W. Informer: Beyond efficient transformer for long sequence time-series forecasting, 2021. URL https://arxiv.org/abs/2012.07436
Pith/arXiv arXiv 2021
-
[57]
Zhu, Z. and Soricut, R. H -transformer-1 D : Fast one-dimensional hierarchical attention for sequences. In Zong, C., Xia, F., Li, W., and Navigli, R. (eds.), Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp.\ 3801--...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.