REVIEW 2 major objections 6 minor 4 cited by
On Identifiability in Transformers
T0 review · 2 major / 6 minor · reviewed 2026-08-14 · deepseek-v4-flash
Pith's one-line read Attention weights cannot be uniquely determined from a transformer head's output.
desk verdict A genuinely useful set of empirical diagnostics for Transformer interpretability, but the headline non-identifiability theorem is not proven for actual softmax attention weights. 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 left null space $LN(T)$ of the matrix $T = E W_V H$, which maps attention rows to the head output; its dimension, bounded below by $d_s - d_v$ through rank-nullity, is exactly the family of perturbations $\tilde A$ that change attention weights without changing outputs. For probability constraints the argument passes to the augmented matrix $[T, \mathbf{1}]$, whose left null space contains the row-stochastic perturbations, and uses the strict positivity of softmax rows to allow small null-space steps. Effective attention is the orthogonal projection of raw attention onto the orthogonal complement of $LN(T)$. The empirical machinery for the remaining claims is a learned linear map with cosine nearest-neighbour lookup for token identity, and the L2 norm of the gradient of a hidden embedding with respect to each input token for measuring context mixing.
What would settle it
Take a trained transformer head with $d_s > d_v+1$, construct a nonzero $\tilde A$ in the left null space of $[T,\mathbf{1}]$ as the paper does, and test whether $A+\tilde A$ equals $\mathrm{softmax}(Q'K'^T/\sqrt{d_q})$ for some $Q',K'$ whose product has rank at most $d_q$; if no such realisation exists, the non-identifiability claim does not hold for actual softmax attention weights.
Extended reading notes
Core claim
The paper's central claim is that for a self-attention head with sequence length $d_s$ and value dimension $d_v$, whenever $d_s > d_v$ the attention matrix $A$ is not identifiable from the head's output. By rank-nullity, the left null space of $T = E W_V H$ has dimension at least $d_s - d_v$, so there exist infinitely many row-stochastic matrices $A + \tilde A$ with $\tilde A T = 0$ and $\tilde A \mathbf{1} = 0$ that yield exactly the same output. The construction works because softmax rows are strictly positive, so small perturbations in the null space of the augmented matrix $[T, \mathbf{1}]$ stay inside the probability simplex. Consequently, raw attention weights are not directly interpretable, and the paper defines effective attention $A_\perp = A - \mathrm{Proj}_{LN(T)} A$ as the part of attention that actually influences the output.
Load-bearing premise
The proof assumes that any row-stochastic perturbation in the null space of $[T,\mathbf{1}]$ is a valid attention matrix a real head can produce; in particular it never checks that $A+\tilde A$ can be written as $\mathrm{softmax}(Q'K'^T/\sqrt{d_q})$ with $Q'K'^T$ of rank at most $d_q$, which is required for actual transformer attention weights.
Editorial extensions
If this is right
- When the sequence length exceeds the attention head dimension, a growing part of the raw attention matrix has no effect on the output, so attention-based explanations become less reliable as inputs get longer.
- Effective attention can change interpretive conclusions, for example removing attention peaks on structural tokens like [SEP] and exposing meaningful long-range links such as coreference between distant pronouns.
- Tokens remain largely identifiable from their contextual embeddings through all layers, with a linear projection and cosine similarity recovering about 93% of tokens in the last layer, so treating hidden embeddings as standing for their input words is a reasonable first approximation.
- Context mixing is strong but orderly: the original token's contribution decreases monotonically with depth, the original token usually remains the largest contributor, and context is mostly local, with long-range contributions appearing predominantly in late layers.
- The proposed gradient-based attribution method can quantify token mixing in any transformer architecture, making the analysis independent of a particular model or task.
Reading between the lines
- A direct test of the theorem's reach: the paper only proves the alternative attention matrices stay in the probability simplex, so checking whether they are actually realizable as softmax of a low-rank query-key product would show how far the non-identifiability claim extends to real transformers.
- The finding that context is mostly local suggests that explicit locality biases, such as distance masks, may be redundant for language transformers because the model learns local mixing on its own; comparing attribution profiles with and without such masks would test this.
- Effective attention could serve as a head-pruning criterion, since heads whose effective attention is near zero contribute little to the output; this would connect the paper's diagnostic to model compression.
- The angle-versus-magnitude result implies that interventions that preserve embedding direction, such as certain fine-tuning or adversarial perturbations, may preserve token identity better than those that change magnitude; this is a testable design principle.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper analyzes identifiability in Transformer self-attention. The main theoretical result (Sections 3.2–3.3) claims that when the input sequence length ds exceeds the attention head dimension dv, the attention weights A of a head are not identifiable from the head output: infinitely many row-stochastic matrices A+à yield the same output because the rows of à lie in the left null space of T=E W_V H. The paper proposes "effective attention" as the projection of A onto the orthogonal complement of this null space and argues that it is a better basis for attention-based explanations. The remaining sections report empirical studies on BERT: token identity can be recovered from contextual embeddings via learned nearest-neighbor maps, identity information is largely encoded in embedding angle, and a gradient-based "Hidden Token Attribution" method shows that context mixing is strong but predominantly local. The paper concludes that raw attention distributions are not directly interpretable and that the proposed tools improve interpretability.
Significance. If the non-identifiability theorem held for actual softmax attention weights, it would provide a clean theoretical counterpart to the empirical "attention is not explanation" literature and would justify the effective-attention tool. The rank-nullity calculation is correct, and the effective-attention idea is a useful diagnostic that does not depend on the theorem. The token-identifiability and attribution experiments are carefully designed, use multiple datasets, and give concrete, interpretable results; they are valuable even if the theorem is weakened. The paper also connects its findings to prior work in a balanced way. The main weakness is that the central theorem, as stated and proved, does not establish non-identifiability for the softmax-constrained attention weights actually used in Transformers, and the threshold in the abstract is too strong.
major comments (2)
- [§3.3, Eq. (7)] The proof of non-identifiability in §3.3 verifies only the simplex conditions (7a)–(7c) for A+Ã. Attention matrices in a Transformer are not arbitrary row-stochastic matrices: by Eq. (1), A = softmax(QK^T/√dq) for some Q,K ∈ R^{ds×dq}, so the logit matrix has rank at most dq. The constructed perturbation à is an element of LN([T,1]) scaled to satisfy à ≥ −A, but the paper never shows that A+à is realizable as softmax of a rank-≤dq logit matrix. This is a load-bearing gap: the softmax-realizable attention matrices form a lower-dimensional curved submanifold of the simplex (of dimension at most 2 ds dq − dq², up to row-constant invariances), while the constructed alternative attention matrices form an affine space of dimension ds(ds−dv−1); for small ds−dv the intersection with the softmax image can be empty. The central claim "attention weights are not identifiable" is therefore unproven for the actual attention weights defined in the paper. The authors should either construct Q',K' explicitly for their perturbations, or supply a transversality/dimension argument under explicit conditions, or restrict the claim to arbitrary row-stochastic matrices.
- [Abstract and §3.2 vs. §3.3] The abstract and §3.2 state that ds>dv is enough for non-identifiability, but the proof in §3.3 requires dim LN([T,1]) > 0, i.e., ds−dv>1. When ds=dv+1, the left null space of T is one-dimensional and its generator x generically satisfies x^T 1 ≠ 0; since any row perturbation must be a scalar multiple of x and must also have zero row sum, all scalars are forced to zero. Thus for generic T there is no non-identifiability in the simplex-constrained problem. A concrete instance is ds=3, dv=2, rank(T)=2: the only row-stochastic A' with A'T=AT is A'=A. The theorem's stated threshold is therefore false; the correct statement (still subject to the softmax realizability issue in the previous comment) requires ds−dv>1, not merely ds>dv. This correction affects the abstract, the introduction, and the conclusion.
minor comments (6)
- [§4] The formal definition of token identifiability as the existence of a classifier c with c(e_i^l)=x_i is vacuous without a restriction on c: for any finite set of labeled embeddings one can define a function (e.g., a partition of R^d) that achieves perfect recovery. The operational definition used in the experiments (nearest neighbor after a learned linear/MLP map) is meaningful; the formal definition should be stated in terms of that restricted class.
- [Appendix C.1] The text contains a dangling cross-reference: "The attribution method proposed in Section??" should refer to Section 5.
- [§6] In the Related Work section, "a theoretical proof of the identifiability of attention weights" should read "non-identifiability".
- [§5, Eq. (11)] The sum in Eq. (11) runs from k=0, while tokens are indexed from 1 in Section 2; clarify whether the index 0 corresponds to the [CLS] token.
- [§1 and §4.2] Typographical errors: "indentifiability" in the introduction and "identifiablity" in Section 4.2.
- [Appendix D] Typo: "datsets" in the opening paragraph of Appendix D.
Circularity Check
No circularity: the identifiability theorem is a self-contained linear-algebra proof; effective attention is an explicit projection, not a fitted prediction.
full rationale
The paper's central claim (Sections 3.2-3.3) is a self-contained mathematical derivation. Given T = E W_V H, the output of a head is A T; the paper studies the left null space of [T, 1] and shows that any row-stochastic perturbation in that null space yields the same output. No parameter is fitted and no external conclusion is assumed: the cited works (Bellman & Åström, Vaswani et al., Jain & Wallace) provide only background and related work, not load-bearing premises. The 'effective attention' construction in Section 3.4 is explicitly defined as A minus its projection onto LN(T), with Eq. 8 showing AT = A_perp T by construction; it is an openly stated diagnostic projection rather than a hidden prediction derived from itself. The empirical observation that, e.g., the [SEP] peak lies in the null-space component is a property of BERT's learned T and attention weights, not an input to the definition. The possible objection that the constructed perturbations are not shown to be softmax-realizable as low-rank logits is a correctness gap in the theorem's scope, not a circularity. The paper's derivation chain is therefore self-contained and exhibits no circular step.
Assumptions & free parameters
assumptions (4)
- standard math Rank-nullity theorem and rank inequalities rank(ABC) <= min(rank(A), rank(B), rank(C))
- standard math Softmax outputs are strictly positive elementwise
- domain assumption Alternative attention matrices need only satisfy non-negativity and row-sum constraints; low-rank realizability as softmax(Q'K'^T) is not required
- domain assumption Gradient norm reflects causal contribution of input tokens to hidden embeddings
Cite this review
Pith. "Pith review of On Identifiability in Transformers." pith.science (2026). https://pith.science/paper/MXKNR2CR
@misc{pith2026190804211,
author = {Pith},
title = {Pith review of: On Identifiability in Transformers},
year = {2026},
howpublished = {\url{https://pith.science/paper/MXKNR2CR}},
note = {Machine review of arXiv:1908.04211}
}
read the original abstract
In this paper we delve deep in the Transformer architecture by investigating two of its core components: self-attention and contextual embeddings. In particular, we study the identifiability of attention weights and token embeddings, and the aggregation of context into hidden tokens. We show that, for sequences longer than the attention head dimension, attention weights are not identifiable. We propose effective attention as a complementary tool for improving explanatory interpretations based on attention. Furthermore, we show that input tokens retain to a large degree their identity across the model. We also find evidence suggesting that identity information is mainly encoded in the angle of the embeddings and gradually decreases with depth. Finally, we demonstrate strong mixing of input information in the generation of contextual embeddings by means of a novel quantification method based on gradient attribution. Overall, we show that self-attention distributions are not directly interpretable and present tools to better understand and further investigate Transformer models.
Figures
Figures from the paper (39 more)
Forward citations
Cited by 4 Pith papers
-
Provably Learning Multi-Head Attention with Queries
Multi-head softmax attention can be provably recovered from black-box scalar value queries in O(H d^2) queries without orthogonal-subspace assumptions, using rational interpolation followed by head matching.
-
PLEX: Perturbation-free Local Explanations for LLM-Based Text Classification
PLEX learns a mapping from BERT or RoBERTa token embeddings to word importance scores, reproducing LIME and SHAP style explanations without per-sentence perturbations.
-
Towards Transparent AI: A Survey on Explainable Large Language Models
A review that groups LLM explainability methods by transformer architecture and discusses their evaluation and applications.
-
Probing the Embedding Space of Transformers via Minimal Token Perturbations
Minimal single-token substitutions in BERT show that common tokens induce small embedding shifts, rare tokens induce larger shifts, and perturbation effects grow with layer depth, which the authors interpret as suppor...
Reference graph
Works this paper leans on
-
[1]
A BERT B aseline for the N atural Q uestions
Chris Alberti, Kenton Lee, and Michael Collins. A BERT B aseline for the N atural Q uestions. https://arxiv.org/abs/1901.08634, 2019
arXiv 1901
-
[2]
Do Transformer Attention Heads Provide Transparency in Abstractive Summarization?
Joris Baan, Maartje ter Hoeve, Marlies van der Wees, Anne Schuth, and Maarten de Rijke. Do transformer attention heads provide transparency in abstractive summarization? CoRR, abs/1907.00570, 2019
work page Pith review arXiv 1907
-
[3]
Neural machine translation by jointly learning to align and translate
Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. In 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings , 2015. URL http://arxiv.org/abs/1409.0473
arXiv 2015
-
[4]
Bellman and Karl Johan str \"o m
R. Bellman and Karl Johan str \"o m. On structural identifiability. Mathematical Biosciences, 7: 0 329--339, 1970
work page 1970
-
[5]
Peter F. Brown, Stephen A. Della Pietra, Vincent J. Della Pietra, and Robert L. Mercer. The mathematics of statistical machine translation: Parameter estimation. Computational Linguistics, 19 0 (2): 0 263--311, 1993. URL https://www.aclweb.org/anthology/J93-2003
work page 1993
-
[6]
Kevin Clark, Urvashi Khandelwal, Omer Levy, and Christopher D. Manning. What does BERT look at? an analysis of bert's attention. CoRR, abs/1906.04341, 2019
arXiv 1906
-
[7]
Vi \' e gas, and Martin Wattenberg
Andy Coenen, Emily Reif, Ann Yuan, Been Kim, Adam Pearce, Fernanda B. Vi \' e gas, and Martin Wattenberg. Visualizing and measuring the geometry of BERT . CoRR, abs/1906.02715, 2019
arXiv 1906
-
[8]
Mostafa Dehghani, Stephan Gouws, Oriol Vinyals, Jakob Uszkoreit, and Lukasz Kaiser. Universal transformers. In 7th International Conference on Learning Representations, ICLR 2019, New Orleans, LA, USA, May 6-9, 2019 , 2019
work page 2019
Show all 49 references
-
[9]
BERT: pre-training of deep bidirectional transformers for language understanding
Jacob Devlin, Ming - Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Lan...
2019
-
[10]
Dolan and Chris Brockett
William B. Dolan and Chris Brockett. Automatically constructing a corpus of sentential paraphrases. In Proceedings of the Third International Workshop on Paraphrasing, IWP@IJCNLP 2005, Jeju Island, Korea, October 2005, 2005, 2005
2005
-
[11]
Understanding the difficulty of training deep feedforward neural networks
Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics, AISTATS 2010, Chia Laguna Resort, Sardinia, Italy, May 13-15, 2010 ,...
2010
-
[12]
Bridging nonlinearities and stochastic regularizers with gaussian error linear units
Dan Hendrycks and Kevin Gimpel. Bridging nonlinearities and stochastic regularizers with gaussian error linear units. CoRR, abs/1606.08415, 2016. URL http://arxiv.org/abs/1606.08415
2016 arXiv
-
[13]
Sarthak Jain and Byron C. Wallace. Attention is not explanation. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2019, Minneapolis, MN, USA, June 2-7, 2019, Volume 1 (L...
2019
-
[14]
Ganesh Jawahar, Beno \^ t Sagot, and Djam \' e Seddah. What does BERT learn about the structure of language? In Proceedings of the 57th Conference of the Association for Computational Linguistics, ACL 2019, Florence, Italy, July 28- August 2, 2019, Volume 1: Long Papers , pp.\...
2019
-
[15]
Microsoft translator at wmt 2019: Towards large-scale document-level neural machine translation
Marcin Junczys-Dowmunt. Microsoft translator at wmt 2019: Towards large-scale document-level neural machine translation. In Proceedings of the Fourth Conference on Machine Translation (Volume 2: Shared Task Papers, Day 1), pp.\ 225--233, 2019
2019
-
[16]
Kingma and Jimmy Ba
Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings , 2015. URL http://arxiv.org/abs/1412.6980
2015 arXiv
-
[17]
Attention is (not) all you need for commonsense reasoning
Tassilo Klein and Moin Nabi. Attention is (not) all you need for commonsense reasoning. In Proceedings of the 57th Conference of the Association for Computational Linguistics, ACL 2019, Florence, Italy, July 28- August 2, 2019, Volume 1: Long Papers , pp.\ 4831--4836, 2019
2019
-
[18]
Albert: A lite bert for self-supervised learning of language representations
Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut. Albert: A lite bert for self-supervised learning of language representations. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=H1eA7AEtvS
2020
-
[19]
Open sesame: Getting inside bert's linguistic knowledge
Yongjie Lin, Yi Chern Tan, and Robert Frank. Open sesame: Getting inside bert's linguistic knowledge. arXiv preprint arXiv:1906.01698, 2019
1906 arXiv
-
[20]
Roberta: A robustly optimized bert pretraining approach
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 2019
1907 arXiv
-
[21]
Extracting syntactic trees from transformer encoder self-attentions
David Marecek and Rudolf Rosa. Extracting syntactic trees from transformer encoder self-attentions. In Proceedings of the Workshop: Analyzing and Interpreting Neural Networks for NLP, BlackboxNLP@EMNLP 2018, Brussels, Belgium, November 1, 2018, pp.\ 347--349, 2018
2018
-
[22]
Are sixteen heads really better than one? CoRR, abs/1905.10650, 2019
Paul Michel, Omer Levy, and Graham Neubig. Are sixteen heads really better than one? CoRR, abs/1905.10650, 2019. URL http://arxiv.org/abs/1905.10650
1905 arXiv
-
[23]
Bruce Croft
Harshith Padigela, Hamed Zamani, and W. Bruce Croft. Investigating the successes and failures of BERT for passage re-ranking. CoRR, abs/1905.01758, 2019
1905 arXiv
-
[24]
Peters, Mark Neumann, Luke Zettlemoyer, and Wen - tau Yih
Matthew E. Peters, Mark Neumann, Luke Zettlemoyer, and Wen - tau Yih. Dissecting contextual word embeddings: Architecture and representation. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, Brussels, Belgium, October 31 - November 4, ...
2018
-
[25]
o rner, Hinrich Sch \
Nina P \" o rner, Hinrich Sch \" u tze, and Benjamin Roth. Evaluating neural network explanation methods using hybrid documents and morphosyntactic agreement. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics, ACL 2018, Melbourne, Austr...
2018
-
[26]
Learning to deceive with attention-based explanations
Danish Pruthi, Mansi Gupta, Bhuwan Dhingra, Graham Neubig, and Zachary C Lipton. Learning to deceive with attention-based explanations. arXiv preprint arXiv:1909.07913, 2019
1909 arXiv
-
[27]
Improving language understanding by generative pre-training
Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training. URL https://s3-us-west-2. amazonaws. com/openai-assets/researchcovers/languageunsupervised/language understanding paper. pdf, 2018
2018
-
[28]
Language models are unsupervised multitask learners
Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Blog, 1 0 (8), 2019
2019
-
[29]
An analysis of encoder representations in transformer-based machine translation
Alessandro Raganato and J \" o rg Tiedemann. An analysis of encoder representations in transformer-based machine translation. In Proceedings of the Workshop: Analyzing and Interpreting Neural Networks for NLP, BlackboxNLP@EMNLP 2018, Brussels, Belgium, November 1, 2018, pp.\ 2...
2018
-
[30]
Sofia Serrano and Noah A. Smith. Is attention interpretable? In Proceedings of the 57th Conference of the Association for Computational Linguistics, ACL 2019, Florence, Italy, July 28- August 2, 2019, Volume 1: Long Papers , pp.\ 2931--2951, 2019. URL https://www.aclweb.org/an...
2019
-
[31]
Deep inside convolutional networks: Visualising image classification models and saliency maps
Karen Simonyan, Andrea Vedaldi, and Andrew Zisserman. Deep inside convolutional networks: Visualising image classification models and saliency maps. In 2nd International Conference on Learning Representations, ICLR 2014, Banff, AB, Canada, April 14-16, 2014, Workshop Track Pro...
2014
-
[32]
An analysis of attention mechanisms: The case of word sense disambiguation in neural machine translation
Gongbo Tang, Rico Sennrich, and Joakim Nivre. An analysis of attention mechanisms: The case of word sense disambiguation in neural machine translation. In Proceedings of the Third Conference on Machine Translation: Research Papers, WMT 2018, Belgium, Brussels, October 31 - Nov...
2018
-
[33]
BERT rediscovers the classical NLP pipeline
Ian Tenney, Dipanjan Das, and Ellie Pavlick. BERT rediscovers the classical NLP pipeline. In Proceedings of the 57th Conference of the Association for Computational Linguistics, ACL 2019, Florence, Italy, July 28- August 2, 2019, Volume 1: Long Papers , pp.\ 4593--4601, 2019
2019
-
[34]
Manning, and Yoram Singer
Kristina Toutanova, Dan Klein, Christopher D. Manning, and Yoram Singer. Feature-rich part-of-speech tagging with a cyclic dependency network. In Human Language Technology Conference of the North American Chapter of the Association for Computational Linguistics, HLT-NAACL 2003...
2003
-
[35]
Gomez, Lukasz Kaiser, and Illia Polosukhin
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017, 4-...
2017
-
[36]
Visualizing attention in transformer-based language representation models
Jesse Vig. Visualizing attention in transformer-based language representation models. CoRR, abs/1904.02679, 2019
1904 arXiv
-
[37]
Analyzing multi-head self-attention: Specialized heads do the heavy lifting, the rest can be pruned
Elena Voita, David Talbot, Fedor Moiseev, Rico Sennrich, and Ivan Titov. Analyzing multi-head self-attention: Specialized heads do the heavy lifting, the rest can be pruned. In Proceedings of the 57th Conference of the Association for Computational Linguistics, ACL 2019, Flore...
2019
-
[38]
Attending to mathematical language with transformers
Artit Wangperawong. Attending to mathematical language with transformers. CoRR, abs/1812.02825, 2018
2018 arXiv
-
[39]
Neural network acceptability judgments
Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments. arXiv preprint arXiv:1805.12471, 2018
2018 arXiv
-
[40]
Attention is not not explanation
Sarah Wiegreffe and Yuval Pinter. Attention is not not explanation. CoRR, abs/1908.04626, 2019. URL http://arxiv.org/abs/1908.04626
1908 arXiv
-
[41]
A broad-coverage challenge corpus for sentence understanding through inference
Adina Williams, Nikita Nangia, and Samuel Bowman. A broad-coverage challenge corpus for sentence understanding through inference. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, ...
2018
-
[42]
Wong, Fandong Meng, Lidia S
Baosong Yang, Zhaopeng Tu, Derek F. Wong, Fandong Meng, Lidia S. Chao, and Tong Zhang. Modeling localness for self-attention networks. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, Brussels, Belgium, October 31 - November 4, 2018, p...
2018
-
[43]
Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Ruslan Salakhutdinov, and Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. https://arxiv.org/abs/1906.08237, 2019 a
1906 arXiv
-
[44]
Xlnet: Generalized autoregressive pretraining for language understanding
Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le. Xlnet: Generalized autoregressive pretraining for language understanding. In Advances in neural information processing systems, pp.\ 5754--5764, 2019 b
2019
-
[45]
Adding interpretable attention to neural translation models improves word alignment
Thomas Zenkel, Joern Wuebker, and John DeNero. Adding interpretable attention to neural translation models improves word alignment. CoRR, abs/1901.11359, 2019
1901 arXiv
-
[46]
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...
-
[47]
@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 ...
-
[48]
\@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...
-
[49]
妤 ' x P·uy n gʅ8Oj D q ^hژ
@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 14, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.