Attention Is All You Need/paper/en
| Research Paper | |
|---|---|
| Authors | Ashish Vaswani; Noam Shazeer; Niki Parmar; Jakob Uszkoreit; Llion Jones; Aidan N. Gomez; Lukasz Kaiser; Illia Polosukhin |
| Year | 2017 |
| Topic area | NLP |
| Difficulty | Research |
| arXiv | 1706.03762 |
| Download PDF | |
Provided proper attribution is provided, Google hereby grants permission to reproduce the tables and figures in this paper solely for use in journalistic or scholarly works.
<span id="Lua error: Internal error: The interpreter exited with status 1.-is-all-you-need">
Lua error: Internal error: The interpreter exited with status 1. Is All You Need
\ANDAshish Vaswani
Google Brain
avaswani@google.com &Noam Shazeer11footnotemark: 1
Google Brain
noam@google.com &Niki Parmar11footnotemark: 1
Google Research
nikip@google.com &Jakob Uszkoreit11footnotemark: 1
Google Research
usz@google.com &Llion Jones11footnotemark: 1
Google Research
llion@google.com &Aidan N. Gomez11footnotemark: 1
University of Toronto
aidan@cs.toronto.edu &Łukasz Kaiser11footnotemark: 1
Google Brain
lukaszkaiser@google.com &Illia Polosukhin11footnotemark: 1
illia.polosukhin@gmail.com Equal contribution. Listing order is random. Jakob proposed replacing RNNs with self-Lua error: Internal error: The interpreter exited with status 1. and started the effort to evaluate this idea. Ashish, with Illia, designed and implemented the first Lua error: Internal error: The interpreter exited with status 1. models and has been crucially involved in every aspect of this work. Noam proposed scaled dot-product Lua error: Internal error: The interpreter exited with status 1., multi-head Lua error: Internal error: The interpreter exited with status 1. and the parameter-free position representation and became the other person involved in nearly every detail. Niki designed, implemented, tuned and evaluated countless model variants in our original codebase and tensor2tensor. Llion also experimented with novel model variants, was responsible for our initial codebase, and efficient inference and visualizations. Lukasz and Aidan spent countless long days designing various parts of and implementing tensor2tensor, replacing our earlier codebase, greatly improving results and massively accelerating our research. Work performed while at Google Brain.Work performed while at Google Research.
Abstract
The dominant sequence transduction models are based on complex recurrent or convolutional neural networks that include an encoder and a decoder. The best performing models also connect the encoder and decoder through an Lua error: Internal error: The interpreter exited with status 1. mechanism. We propose a new simple network architecture, the Lua error: Internal error: The interpreter exited with status 1., based solely on Lua error: Internal error: The interpreter exited with status 1. mechanisms, dispensing with recurrence and Lua error: Internal error: The interpreter exited with status 1. entirely. Experiments on two machine translation tasks show these models to be superior in quality while being more parallelizable and requiring significantly less time to train. Our model achieves 28.4 BLEU on the WMT 2014 English-to-German translation task, improving over the existing best results, including ensembles, by over 2 BLEU. On the WMT 2014 English-to-French translation task, our model establishes a new single-model state-of-the-art BLEU score of 41.8 after training for 3.5 days on eight GPUs, a small fraction of the training costs of the best models from the literature. We show that the Lua error: Internal error: The interpreter exited with status 1. generalizes well to other tasks by applying it successfully to English constituency parsing both with large and limited training data.
1 Introduction
Recurrent neural networks, Lua error: Internal error: The interpreter exited with status 1. [13] and gated recurrent [7] neural networks in particular, have been firmly established as state of the art approaches in sequence modeling and transduction problems such as language modeling and machine translation [35, 2, 5]. Numerous efforts have since continued to push the boundaries of recurrent language models and encoder-decoder architectures [38, 24, 15].
Recurrent models typically factor computation along the symbol positions of the input and output sequences. Aligning the positions to steps in computation time, they generate a sequence of hidden states $ {\textstyle h_{t}} $, as a function of the previous hidden state $ {\textstyle h_{t - 1}} $ and the input for position $ {\textstyle t} $. This inherently sequential nature precludes parallelization within training examples, which becomes critical at longer sequence lengths, as memory constraints limit batching across examples. Recent work has achieved significant improvements in computational efficiency through factorization tricks [21] and conditional computation [32], while also improving model performance in case of the latter. The fundamental constraint of sequential computation, however, remains.
Lua error: Internal error: The interpreter exited with status 1. mechanisms have become an integral part of compelling sequence modeling and transduction models in various tasks, allowing modeling of dependencies without regard to their distance in the input or output sequences [2, 19]. In all but a few cases [27], however, such Lua error: Internal error: The interpreter exited with status 1. mechanisms are used in conjunction with a recurrent network.
In this work we propose the Lua error: Internal error: The interpreter exited with status 1., a model architecture eschewing recurrence and instead relying entirely on an Lua error: Internal error: The interpreter exited with status 1. mechanism to draw global dependencies between input and output. The Lua error: Internal error: The interpreter exited with status 1. allows for significantly more parallelization and can reach a new state of the art in translation quality after being trained for as little as twelve hours on eight P100 GPUs.
2 Background
The goal of reducing sequential computation also forms the foundation of the Extended Neural GPU [16], ByteNet [18] and ConvS2S [9], all of which use convolutional neural networks as basic building block, computing hidden representations in parallel for all input and output positions. In these models, the number of operations required to relate signals from two arbitrary input or output positions grows in the distance between positions, linearly for ConvS2S and logarithmically for ByteNet. This makes it more difficult to learn dependencies between distant positions [12]. In the Lua error: Internal error: The interpreter exited with status 1. this is reduced to a constant number of operations, albeit at the cost of reduced effective resolution due to averaging Lua error: Internal error: The interpreter exited with status 1.-weighted positions, an effect we counteract with Multi-Head Lua error: Internal error: The interpreter exited with status 1. as described in section 3.2.
Self-Lua error: Internal error: The interpreter exited with status 1., sometimes called intra-Lua error: Internal error: The interpreter exited with status 1. is an Lua error: Internal error: The interpreter exited with status 1. mechanism relating different positions of a single sequence in order to compute a representation of the sequence. Self-Lua error: Internal error: The interpreter exited with status 1. has been used successfully in a variety of tasks including reading comprehension, abstractive summarization, textual entailment and learning task-independent sentence representations [4, 27, 28, 22].
End-to-end memory networks are based on a recurrent Lua error: Internal error: The interpreter exited with status 1. mechanism instead of sequence-aligned recurrence and have been shown to perform well on simple-language question answering and language modeling tasks [34].
To the best of our knowledge, however, the Lua error: Internal error: The interpreter exited with status 1. is the first transduction model relying entirely on self-Lua error: Internal error: The interpreter exited with status 1. to compute representations of its input and output without using sequence-aligned RNNs or Lua error: Internal error: The interpreter exited with status 1.. In the following sections, we will describe the Lua error: Internal error: The interpreter exited with status 1., motivate self-Lua error: Internal error: The interpreter exited with status 1. and discuss its advantages over models such as [17, 18] and [9].
3 Model Architecture
Most competitive neural sequence transduction models have an encoder-decoder structure [5, 2, 35]. Here, the encoder maps an input sequence of symbol representations $ {\textstyle (x_{1},\ldots,x_{n})} $ to a sequence of continuous representations $ {\textstyle \mathbf{z} = {(z_{1},\ldots,z_{n})}} $. Given $ {\textstyle \mathbf{z}} $, the decoder then generates an output sequence $ {\textstyle (y_{1},\ldots,y_{m})} $ of symbols one element at a time. At each step the model is auto-regressive [10], consuming the previously generated symbols as additional input when generating the next.
The Lua error: Internal error: The interpreter exited with status 1. follows this overall architecture using stacked self-Lua error: Internal error: The interpreter exited with status 1. and point-wise, fully connected layers for both the encoder and decoder, shown in the left and right halves of Figure 1, respectively.
3.1 Encoder and Decoder Stacks
Encoder:
The encoder is composed of a stack of $ {\textstyle N = 6} $ identical layers. Each layer has two sub-layers. The first is a multi-head self-Lua error: Internal error: The interpreter exited with status 1. mechanism, and the second is a simple, position-wise fully connected feed-forward network. We employ a residual connection [11] around each of the two sub-layers, followed by Lua error: Internal error: The interpreter exited with status 1. [1]. That is, the output of each sub-layer is $ {\textstyle {LayerNorm}\hspace{0pt}{({x + {{Sublayer}\hspace{0pt}{(x)}}})}} $, where $ {\textstyle {Sublayer}\hspace{0pt}{(x)}} $ is the function implemented by the sub-layer itself. To facilitate these residual connections, all sub-layers in the model, as well as the Lua error: Internal error: The interpreter exited with status 1. layers, produce outputs of dimension $ {\textstyle d_{\text{model}} = 512} $.
Decoder:
The decoder is also composed of a stack of $ {\textstyle N = 6} $ identical layers. In addition to the two sub-layers in each encoder layer, the decoder inserts a third sub-layer, which performs multi-head Lua error: Internal error: The interpreter exited with status 1. over the output of the encoder stack. Similar to the encoder, we employ residual connections around each of the sub-layers, followed by Lua error: Internal error: The interpreter exited with status 1.. We also modify the self-Lua error: Internal error: The interpreter exited with status 1. sub-layer in the decoder stack to prevent positions from attending to subsequent positions. This masking, combined with fact that the output Lua error: Internal error: The interpreter exited with status 1. are offset by one position, ensures that the predictions for position $ {\textstyle i} $ can depend only on the known outputs at positions less than $ {\textstyle i} $.
<span id="Lua error: Internal error: The interpreter exited with status 1.">
3.2 Lua error: Internal error: The interpreter exited with status 1.
An Lua error: Internal error: The interpreter exited with status 1. function can be described as mapping a query and a set of key-value pairs to an output, where the query, keys, values, and output are all vectors. The output is computed as a weighted sum of the values, where the weight assigned to each value is computed by a compatibility function of the query with the corresponding key.
<span id="scaled-dot-product-Lua error: Internal error: The interpreter exited with status 1.">
3.2.1 Scaled Dot-Product Lua error: Internal error: The interpreter exited with status 1.
We call our particular Lua error: Internal error: The interpreter exited with status 1. "Scaled Dot-Product Lua error: Internal error: The interpreter exited with status 1." (Figure 2). The input consists of queries and keys of dimension $ {\textstyle d_{k}} $, and values of dimension $ {\textstyle d_{v}} $. We compute the dot products of the query with all keys, divide each by $ {\textstyle \sqrt{d_{k}}} $, and apply a Lua error: Internal error: The interpreter exited with status 1. function to obtain the weights on the values.
In practice, we compute the Lua error: Internal error: The interpreter exited with status 1. function on a set of queries simultaneously, packed together into a matrix $ {\textstyle Q} $. The keys and values are also packed together into matrices $ {\textstyle K} $ and $ {\textstyle V} $. We compute the matrix of outputs as:
| $ {\displaystyle {{Attention}\hspace{0pt}{(Q,K,V)}} = {{softmax}\hspace{0pt}{(\frac{Q\hspace{0pt}K^{T}}{\sqrt{d_{k}}})}\hspace{0pt}V}} $ | (1) |
The two most commonly used Lua error: Internal error: The interpreter exited with status 1. functions are additive Lua error: Internal error: The interpreter exited with status 1. [2], and dot-product (multiplicative) Lua error: Internal error: The interpreter exited with status 1.. Dot-product Lua error: Internal error: The interpreter exited with status 1. is identical to our algorithm, except for the scaling factor of $ {\textstyle \frac{1}{\sqrt{d_{k}}}} $. Additive Lua error: Internal error: The interpreter exited with status 1. computes the compatibility function using a feed-forward network with a single hidden layer. While the two are similar in theoretical complexity, dot-product Lua error: Internal error: The interpreter exited with status 1. is much faster and more space-efficient in practice, since it can be implemented using highly optimized matrix multiplication code.
While for small values of $ {\textstyle d_{k}} $ the two mechanisms perform similarly, additive Lua error: Internal error: The interpreter exited with status 1. outperforms dot product Lua error: Internal error: The interpreter exited with status 1. without scaling for larger values of $ {\textstyle d_{k}} $ [3]. We suspect that for large values of $ {\textstyle d_{k}} $, the dot products grow large in magnitude, pushing the Lua error: Internal error: The interpreter exited with status 1. function into regions where it has extremely small gradients 111To illustrate why the dot products get large, assume that the components of $ {\textstyle q} $ and $ {\textstyle k} $ are independent random variables with mean $ {\textstyle 0} $ and variance $ {\textstyle 1} $. Then their dot product, $ {\textstyle {q \cdot k} = {\sum_{i = 1}^{d_{k}}{q_{i}\hspace{0pt}k_{i}}}} $, has mean $ {\textstyle 0} $ and variance $ {\textstyle d_{k}} $.. To counteract this effect, we scale the dot products by $ {\textstyle \frac{1}{\sqrt{d_{k}}}} $.
<span id="multi-head-Lua error: Internal error: The interpreter exited with status 1.">
3.2.2 Multi-Head Lua error: Internal error: The interpreter exited with status 1.
Scaled Dot-Product Lua error: Internal error: The interpreter exited with status 1.
Multi-Head Lua error: Internal error: The interpreter exited with status 1.
Instead of performing a single Lua error: Internal error: The interpreter exited with status 1. function with $ {\textstyle d_{\text{model}}} $-dimensional keys, values and queries, we found it beneficial to linearly project the queries, keys and values $ {\textstyle h} $ times with different, learned linear projections to $ {\textstyle d_{k}} $, $ {\textstyle d_{k}} $ and $ {\textstyle d_{v}} $ dimensions, respectively. On each of these projected versions of queries, keys and values we then perform the Lua error: Internal error: The interpreter exited with status 1. function in parallel, yielding $ {\textstyle d_{v}} $-dimensional output values. These are concatenated and once again projected, resulting in the final values, as depicted in Figure 2.
Multi-head Lua error: Internal error: The interpreter exited with status 1. allows the model to jointly attend to information from different representation subspaces at different positions. With a single Lua error: Internal error: The interpreter exited with status 1. head, averaging inhibits this.
| $ {\textstyle {MultiHead}\hspace{0pt}{(Q,K,V)}} $ | $ {\textstyle = {{Concat}\hspace{0pt}{({head}_{1},\ldots,{head}_{h})}\hspace{0pt}W^{O}}} $ | ||
| $ {\textstyle \text{where}\hspace{0pt}{head}_{i}} $ | $ {\textstyle = {{Attention}\hspace{0pt}{({Q\hspace{0pt}W_{i}^{Q}},{K\hspace{0pt}W_{i}^{K}},{V\hspace{0pt}W_{i}^{V}})}}} $ |
Where the projections are parameter matrices $ {\textstyle W_{i}^{Q} \in {\mathbb{R}}^{d_{\text{model}} \times d_{k}}} $, $ {\textstyle W_{i}^{K} \in {\mathbb{R}}^{d_{\text{model}} \times d_{k}}} $, $ {\textstyle W_{i}^{V} \in {\mathbb{R}}^{d_{\text{model}} \times d_{v}}} $ and $ {\textstyle W^{O} \in {\mathbb{R}}^{{h\hspace{0pt}d_{v}} \times d_{\text{model}}}} $.
In this work we employ $ {\textstyle h = 8} $ parallel Lua error: Internal error: The interpreter exited with status 1. layers, or heads. For each of these we use $ {\textstyle d_{k} = d_{v} = {d_{\text{model}}/h} = 64} $. Due to the reduced dimension of each head, the total computational cost is similar to that of single-head Lua error: Internal error: The interpreter exited with status 1. with full dimensionality.
<span id="applications-of-Lua error: Internal error: The interpreter exited with status 1.-in-our-model">
3.2.3 Applications of Lua error: Internal error: The interpreter exited with status 1. in our Model
The Lua error: Internal error: The interpreter exited with status 1. uses multi-head Lua error: Internal error: The interpreter exited with status 1. in three different ways:
•
In "encoder-decoder Lua error: Internal error: The interpreter exited with status 1." layers, the queries come from the previous decoder layer, and the memory keys and values come from the output of the encoder. This allows every position in the decoder to attend over all positions in the input sequence. This mimics the typical encoder-decoder Lua error: Internal error: The interpreter exited with status 1. mechanisms in Lua error: Internal error: The interpreter exited with status 1. models such as [38, 2, 9].
•
The encoder contains self-Lua error: Internal error: The interpreter exited with status 1. layers. In a self-Lua error: Internal error: The interpreter exited with status 1. layer all of the keys, values and queries come from the same place, in this case, the output of the previous layer in the encoder. Each position in the encoder can attend to all positions in the previous layer of the encoder.
•
Similarly, self-Lua error: Internal error: The interpreter exited with status 1. layers in the decoder allow each position in the decoder to attend to all positions in the decoder up to and including that position. We need to prevent leftward information flow in the decoder to preserve the auto-regressive property. We implement this inside of scaled dot-product Lua error: Internal error: The interpreter exited with status 1. by masking out (setting to $ {\textstyle - \infty} $) all values in the input of the Lua error: Internal error: The interpreter exited with status 1. which correspond to illegal connections. See Figure 2.
3.3 Position-wise Feed-Forward Networks
In addition to Lua error: Internal error: The interpreter exited with status 1. sub-layers, each of the layers in our encoder and decoder contains a fully connected feed-forward network, which is applied to each position separately and identically. This consists of two linear transformations with a ReLU Lua error: Internal error: The interpreter exited with status 1. in between.
| $ {\displaystyle {{FFN}\hspace{0pt}{(x)}} = {{{\max{(0,{{x\hspace{0pt}W_{1}} + b_{1}})}}\hspace{0pt}W_{2}} + b_{2}}} $ | (2) |
While the linear transformations are the same across different positions, they use different parameters from layer to layer. Another way of describing this is as two Lua error: Internal error: The interpreter exited with status 1. with kernel size 1. The dimensionality of input and output is $ {\textstyle d_{\text{model}} = 512} $, and the inner-layer has dimensionality $ {\textstyle d_{f\hspace{0pt}f} = 2048} $.
<span id="Lua error: Internal error: The interpreter exited with status 1.-and-Lua error: Internal error: The interpreter exited with status 1.">
3.4 Lua error: Internal error: The interpreter exited with status 1. and Lua error: Internal error: The interpreter exited with status 1.
Similarly to other sequence transduction models, we use learned Lua error: Internal error: The interpreter exited with status 1. to convert the input tokens and output tokens to vectors of dimension $ {\textstyle d_{\text{model}}} $. We also use the usual learned linear transformation and Lua error: Internal error: The interpreter exited with status 1. function to convert the decoder output to predicted next-token probabilities. In our model, we share the same weight matrix between the two Lua error: Internal error: The interpreter exited with status 1. layers and the pre-Lua error: Internal error: The interpreter exited with status 1. linear transformation, similar to [30]. In the Lua error: Internal error: The interpreter exited with status 1. layers, we multiply those weights by $ {\textstyle \sqrt{d_{\text{model}}}} $.
3.5 Positional Encoding
Since our model contains no recurrence and no Lua error: Internal error: The interpreter exited with status 1., in order for the model to make use of the order of the sequence, we must inject some information about the relative or absolute position of the tokens in the sequence. To this end, we add "positional encodings" to the input Lua error: Internal error: The interpreter exited with status 1. at the bottoms of the encoder and decoder stacks. The positional encodings have the same dimension $ {\textstyle d_{\text{model}}} $ as the Lua error: Internal error: The interpreter exited with status 1., so that the two can be summed. There are many choices of positional encodings, learned and fixed [9].
In this work, we use sine and cosine functions of different frequencies:
| $ {\textstyle {P\hspace{0pt}E_{({p\hspace{0pt}o\hspace{0pt}s},{2\hspace{0pt}i})}} = {s\hspace{0pt}i\hspace{0pt}n\hspace{0pt}{({{p\hspace{0pt}o\hspace{0pt}s}/10000^{{2\hspace{0pt}i}/d_{\text{model}}}})}}} $ | ||
| $ {\textstyle {P\hspace{0pt}E_{({p\hspace{0pt}o\hspace{0pt}s},{{2\hspace{0pt}i} + 1})}} = {c\hspace{0pt}o\hspace{0pt}s\hspace{0pt}{({{p\hspace{0pt}o\hspace{0pt}s}/10000^{{2\hspace{0pt}i}/d_{\text{model}}}})}}} $ |
where $ {\textstyle p\hspace{0pt}o\hspace{0pt}s} $ is the position and $ {\textstyle i} $ is the dimension. That is, each dimension of the positional encoding corresponds to a sinusoid. The wavelengths form a geometric progression from $ {\textstyle 2\hspace{0pt}\pi} $ to $ {\textstyle {10000 \cdot 2}\hspace{0pt}\pi} $. We chose this function because we hypothesized it would allow the model to easily learn to attend by relative positions, since for any fixed offset $ {\textstyle k} $, $ {\textstyle P\hspace{0pt}E_{{p\hspace{0pt}o\hspace{0pt}s} + k}} $ can be represented as a linear function of $ {\textstyle P\hspace{0pt}E_{p\hspace{0pt}o\hspace{0pt}s}} $.
We also experimented with using learned positional Lua error: Internal error: The interpreter exited with status 1. [9] instead, and found that the two versions produced nearly identical results (see Table 3 row (E)). We chose the sinusoidal version because it may allow the model to extrapolate to sequence lengths longer than the ones encountered during training.
<span id="why-self-Lua error: Internal error: The interpreter exited with status 1.">
4 Why Self-Lua error: Internal error: The interpreter exited with status 1.
In this section we compare various aspects of self-Lua error: Internal error: The interpreter exited with status 1. layers to the recurrent and Lua error: Internal error: The interpreter exited with status 1. commonly used for mapping one variable-length sequence of symbol representations $ {\textstyle (x_{1},\ldots,x_{n})} $ to another sequence of equal length $ {\textstyle (z_{1},\ldots,z_{n})} $, with $ {\textstyle {x_{i},z_{i}} \in {\mathbb{R}}^{d}} $, such as a hidden layer in a typical sequence transduction encoder or decoder. Motivating our use of self-Lua error: Internal error: The interpreter exited with status 1. we consider three desiderata.
One is the total computational complexity per layer. Another is the amount of computation that can be parallelized, as measured by the minimum number of sequential operations required.
The third is the path length between long-range dependencies in the network. Learning long-range dependencies is a key challenge in many sequence transduction tasks. One key factor affecting the ability to learn such dependencies is the length of the paths forward and backward signals have to traverse in the network. The shorter these paths between any combination of positions in the input and output sequences, the easier it is to learn long-range dependencies [12]. Hence we also compare the maximum path length between any two input and output positions in networks composed of the different layer types.
| Layer Type | Complexity per Layer | Sequential | Maximum Path Length |
|---|---|---|---|
| Operations | |||
| Self-Lua error: Internal error: The interpreter exited with status 1. | $ {\textstyle O\hspace{0pt}{({n^{2} \cdot d})}} $ | $ {\textstyle O\hspace{0pt}{(1)}} $ | $ {\textstyle O\hspace{0pt}{(1)}} $ |
| Recurrent | $ {\textstyle O\hspace{0pt}{({n \cdot d^{2}})}} $ | $ {\textstyle O\hspace{0pt}{(n)}} $ | $ {\textstyle O\hspace{0pt}{(n)}} $ |
| Convolutional | $ {\textstyle O\hspace{0pt}{({k \cdot n \cdot d^{2}})}} $ | $ {\textstyle O\hspace{0pt}{(1)}} $ | $ {\textstyle O\hspace{0pt}{({l\hspace{0pt}o\hspace{0pt}g_{k}\hspace{0pt}{(n)}})}} $ |
| Self-Lua error: Internal error: The interpreter exited with status 1. (restricted) | $ {\textstyle O\hspace{0pt}{({r \cdot n \cdot d})}} $ | $ {\textstyle O\hspace{0pt}{(1)}} $ | $ {\textstyle O\hspace{0pt}{({n/r})}} $ |
As noted in Table 1, a self-Lua error: Internal error: The interpreter exited with status 1. layer connects all positions with a constant number of sequentially executed operations, whereas a recurrent layer requires $ {\textstyle O\hspace{0pt}{(n)}} $ sequential operations. In terms of computational complexity, self-Lua error: Internal error: The interpreter exited with status 1. layers are faster than recurrent layers when the sequence length $ {\textstyle n} $ is smaller than the representation dimensionality $ {\textstyle d} $, which is most often the case with sentence representations used by state-of-the-art models in machine translations, such as word-piece [38] and byte-pair [31] representations. To improve computational performance for tasks involving very long sequences, self-Lua error: Internal error: The interpreter exited with status 1. could be restricted to considering only a neighborhood of size $ {\textstyle r} $ in the input sequence centered around the respective output position. This would increase the maximum path length to $ {\textstyle O\hspace{0pt}{({n/r})}} $. We plan to investigate this approach further in future work.
A single Lua error: Internal error: The interpreter exited with status 1. with kernel width $ {\textstyle k < n} $ does not connect all pairs of input and output positions. Doing so requires a stack of $ {\textstyle O\hspace{0pt}{({n/k})}} $ Lua error: Internal error: The interpreter exited with status 1. in the case of contiguous kernels, or $ {\textstyle O\hspace{0pt}{({l\hspace{0pt}o\hspace{0pt}g_{k}\hspace{0pt}{(n)}})}} $ in the case of dilated Lua error: Internal error: The interpreter exited with status 1. [18], increasing the length of the longest paths between any two positions in the network. Lua error: Internal error: The interpreter exited with status 1. are generally more expensive than recurrent layers, by a factor of $ {\textstyle k} $. Separable Lua error: Internal error: The interpreter exited with status 1. [6], however, decrease the complexity considerably, to $ {\textstyle O\hspace{0pt}{({{k \cdot n \cdot d} + {n \cdot d^{2}}})}} $. Even with $ {\textstyle k = n} $, however, the complexity of a separable Lua error: Internal error: The interpreter exited with status 1. is equal to the combination of a self-Lua error: Internal error: The interpreter exited with status 1. layer and a point-wise feed-forward layer, the approach we take in our model.
As side benefit, self-Lua error: Internal error: The interpreter exited with status 1. could yield more interpretable models. We inspect Lua error: Internal error: The interpreter exited with status 1. distributions from our models and present and discuss examples in the appendix. Not only do individual Lua error: Internal error: The interpreter exited with status 1. heads clearly learn to perform different tasks, many appear to exhibit behavior related to the syntactic and semantic structure of the sentences.
5 Training
This section describes the training regime for our models.
5.1 Training Data and Batching
We trained on the standard WMT 2014 English-German dataset consisting of about 4.5 million sentence pairs. Sentences were encoded using byte-pair encoding [3], which has a shared source-target vocabulary of about 37000 tokens. For English-French, we used the significantly larger WMT 2014 English-French dataset consisting of 36M sentences and split tokens into a 32000 word-piece vocabulary [38]. Sentence pairs were batched together by approximate sequence length. Each training batch contained a set of sentence pairs containing approximately 25000 source tokens and 25000 target tokens.
5.2 Hardware and Schedule
We trained our models on one machine with 8 NVIDIA P100 GPUs. For our base models using the Lua error: Internal error: The interpreter exited with status 1. described throughout the paper, each training step took about 0.4 seconds. We trained the base models for a total of 100,000 steps or 12 hours. For our big models,(described on the bottom line of table 3), step time was 1.0 seconds. The big models were trained for 300,000 steps (3.5 days).
5.3 Optimizer
We used the Lua error: Internal error: The interpreter exited with status 1. optimizer [20] with $ {\textstyle \beta_{1} = 0.9} $, $ {\textstyle \beta_{2} = 0.98} $ and $ {\textstyle \epsilon = 10^{- 9}} $. We varied the Lua error: Internal error: The interpreter exited with status 1. over the course of training, according to the formula:
| $ {\displaystyle {l\hspace{0pt}r\hspace{0pt}a\hspace{0pt}t\hspace{0pt}e} = {d_{\text{model}}^{- 0.5} \cdot {\min{({s\hspace{0pt}t\hspace{0pt}e\hspace{0pt}p\hspace{0pt}\_\hspace{0pt}n\hspace{0pt}u\hspace{0pt}m^{- 0.5}},{{{s\hspace{0pt}t\hspace{0pt}e\hspace{0pt}p\hspace{0pt}\_\hspace{0pt}n\hspace{0pt}u\hspace{0pt}m} \cdot w}\hspace{0pt}a\hspace{0pt}r\hspace{0pt}m\hspace{0pt}u\hspace{0pt}p\hspace{0pt}\_\hspace{0pt}s\hspace{0pt}t\hspace{0pt}e\hspace{0pt}p\hspace{0pt}s^{- 1.5}})}}}} $ | (3) |
This corresponds to increasing the Lua error: Internal error: The interpreter exited with status 1. linearly for the first $ {\textstyle w\hspace{0pt}a\hspace{0pt}r\hspace{0pt}m\hspace{0pt}u\hspace{0pt}p\hspace{0pt}\_\hspace{0pt}s\hspace{0pt}t\hspace{0pt}e\hspace{0pt}p\hspace{0pt}s} $ training steps, and decreasing it thereafter proportionally to the inverse square root of the step number. We used $ {\textstyle {w\hspace{0pt}a\hspace{0pt}r\hspace{0pt}m\hspace{0pt}u\hspace{0pt}p\hspace{0pt}\_\hspace{0pt}s\hspace{0pt}t\hspace{0pt}e\hspace{0pt}p\hspace{0pt}s} = 4000} $.
<span id="Lua error: Internal error: The interpreter exited with status 1.">
5.4 Lua error: Internal error: The interpreter exited with status 1.
We employ three types of Lua error: Internal error: The interpreter exited with status 1. during training:
<span id="residual-Lua error: Internal error: The interpreter exited with status 1.">
Residual Lua error: Internal error: The interpreter exited with status 1.
We apply Lua error: Internal error: The interpreter exited with status 1. [33] to the output of each sub-layer, before it is added to the sub-layer input and normalized. In addition, we apply Lua error: Internal error: The interpreter exited with status 1. to the sums of the Lua error: Internal error: The interpreter exited with status 1. and the positional encodings in both the encoder and decoder stacks. For the base model, we use a rate of $ {\textstyle P_{d\hspace{0pt}r\hspace{0pt}o\hspace{0pt}p} = 0.1} $.
Label Smoothing
During training, we employed label smoothing of value $ {\textstyle \epsilon_{l\hspace{0pt}s} = 0.1} $ [36]. This hurts perplexity, as the model learns to be more unsure, but improves accuracy and BLEU score.
6 Results
6.1 Machine Translation
| Model | BLEU | Training Cost (FLOPs) | |||
|---|---|---|---|---|---|
| EN-DE | EN-FR | EN-DE | EN-FR | ||
| ByteNet [18] | 23.75 | ||||
| Deep-Att + PosUnk [39] | 39.2 | $ {\textstyle 1.0 \cdot 10^{20}} $ | |||
| GNMT + RL [38] | 24.6 | 39.92 | $ {\textstyle 2.3 \cdot 10^{19}} $ | $ {\textstyle 1.4 \cdot 10^{20}} $ | |
| ConvS2S [9] | 25.16 | 40.46 | $ {\textstyle 9.6 \cdot 10^{18}} $ | $ {\textstyle 1.5 \cdot 10^{20}} $ | |
| Lua error: Internal error: The interpreter exited with status 1. [32] | 26.03 | 40.56 | $ {\textstyle 2.0 \cdot 10^{19}} $ | $ {\textstyle 1.2 \cdot 10^{20}} $ | |
| Deep-Att + PosUnk Ensemble [39] | 40.4 | $ {\textstyle 8.0 \cdot 10^{20}} $ | |||
| GNMT + RL Ensemble [38] | 26.30 | 41.16 | $ {\textstyle 1.8 \cdot 10^{20}} $ | $ {\textstyle 1.1 \cdot 10^{21}} $ | |
| ConvS2S Ensemble [9] | 26.36 | 41.29 | $ {\textstyle 7.7 \cdot 10^{19}} $ | $ {\textstyle 1.2 \cdot 10^{21}} $ | |
| Lua error: Internal error: The interpreter exited with status 1. (base model) | 27.3 | 38.1 | $ {\textstyle 3.3 \cdot \mathbf{1}\mathbf{0}^{\mathbf{1}\mathbf{8}}} $ | ||
| Lua error: Internal error: The interpreter exited with status 1. (big) | 28.4 | 41.8 | $ {\textstyle 2.3 \cdot 10^{19}} $ | ||
On the WMT 2014 English-to-German translation task, the big Lua error: Internal error: The interpreter exited with status 1. model (Lua error: Internal error: The interpreter exited with status 1. (big) in Table 2) outperforms the best previously reported models (including ensembles) by more than $ {\textstyle 2.0} $ BLEU, establishing a new state-of-the-art BLEU score of $ {\textstyle 28.4} $. The configuration of this model is listed in the bottom line of Table 3. Training took $ {\textstyle 3.5} $ days on $ {\textstyle 8} $ P100 GPUs. Even our base model surpasses all previously published models and ensembles, at a fraction of the training cost of any of the competitive models.
On the WMT 2014 English-to-French translation task, our big model achieves a BLEU score of $ {\textstyle 41.0} $, outperforming all of the previously published single models, at less than $ {\textstyle 1/4} $ the training cost of the previous state-of-the-art model. The Lua error: Internal error: The interpreter exited with status 1. (big) model trained for English-to-French used Lua error: Internal error: The interpreter exited with status 1. rate $ {\textstyle P_{d\hspace{0pt}r\hspace{0pt}o\hspace{0pt}p} = 0.1} $, instead of $ {\textstyle 0.3} $.
For the base models, we used a single model obtained by averaging the last 5 checkpoints, which were written at 10-minute intervals. For the big models, we averaged the last 20 checkpoints. We used beam search with a beam size of $ {\textstyle 4} $ and length penalty $ {\textstyle \alpha = 0.6} $ [38]. These Lua error: Internal error: The interpreter exited with status 1. were chosen after experimentation on the development set. We set the maximum output length during inference to input length + $ {\textstyle 50} $, but terminate early when possible [38].
Table 2 summarizes our results and compares our translation quality and training costs to other model architectures from the literature. We estimate the number of floating point operations used to train a model by multiplying the training time, the number of GPUs used, and an estimate of the sustained single-precision floating-point capacity of each GPU 222We used values of 2.8, 3.7, 6.0 and 9.5 TFLOPS for K80, K40, M40 and P100, respectively..
6.2 Model Variations
| $ {\textstyle N} $ | $ {\textstyle d_{\text{model}}} $ | $ {\textstyle d_{\text{ff}}} $ | $ {\textstyle h} $ | $ {\textstyle d_{k}} $ | $ {\textstyle d_{v}} $ | $ {\textstyle P_{d\hspace{0pt}r\hspace{0pt}o\hspace{0pt}p}} $ | $ {\textstyle \epsilon_{l\hspace{0pt}s}} $ | train | PPL | BLEU | params | |
| steps | (dev) | (dev) | $ {\textstyle \times 10^{6}} $ | |||||||||
| base | 6 | 512 | 2048 | 8 | 64 | 64 | 0.1 | 0.1 | 100K | 4.92 | 25.8 | 65 |
| (A) | 1 | 512 | 512 | 5.29 | 24.9 | |||||||
| 4 | 128 | 128 | 5.00 | 25.5 | ||||||||
| 16 | 32 | 32 | 4.91 | 25.8 | ||||||||
| 32 | 16 | 16 | 5.01 | 25.4 | ||||||||
| (B) | 16 | 5.16 | 25.1 | 58 | ||||||||
| 32 | 5.01 | 25.4 | 60 | |||||||||
| (C) | 2 | 6.11 | 23.7 | 36 | ||||||||
| 4 | 5.19 | 25.3 | 50 | |||||||||
| 8 | 4.88 | 25.5 | 80 | |||||||||
| 256 | 32 | 32 | 5.75 | 24.5 | 28 | |||||||
| 1024 | 128 | 128 | 4.66 | 26.0 | 168 | |||||||
| 1024 | 5.12 | 25.4 | 53 | |||||||||
| 4096 | 4.75 | 26.2 | 90 | |||||||||
| (D) | 0.0 | 5.77 | 24.6 | |||||||||
| 0.2 | 4.95 | 25.5 | ||||||||||
| 0.0 | 4.67 | 25.3 | ||||||||||
| 0.2 | 5.47 | 25.7 | ||||||||||
| (E) | positional Lua error: Internal error: The interpreter exited with status 1. instead of sinusoids | 4.92 | 25.7 | |||||||||
| big | 6 | 1024 | 4096 | 16 | 0.3 | 300K | 4.33 | 26.4 | 213 | |||
To evaluate the importance of different components of the Lua error: Internal error: The interpreter exited with status 1., we varied our base model in different ways, measuring the change in performance on English-to-German translation on the development set, newstest2013. We used beam search as described in the previous section, but no checkpoint averaging. We present these results in Table 3.
In Table 3 rows (A), we vary the number of Lua error: Internal error: The interpreter exited with status 1. heads and the Lua error: Internal error: The interpreter exited with status 1. key and value dimensions, keeping the amount of computation constant, as described in Section 3.2.2. While single-head Lua error: Internal error: The interpreter exited with status 1. is 0.9 BLEU worse than the best setting, quality also drops off with too many heads.
In Table 3 rows (B), we observe that reducing the Lua error: Internal error: The interpreter exited with status 1. key size $ {\textstyle d_{k}} $ hurts model quality. This suggests that determining compatibility is not easy and that a more sophisticated compatibility function than dot product may be beneficial. We further observe in rows (C) and (D) that, as expected, bigger models are better, and Lua error: Internal error: The interpreter exited with status 1. is very helpful in avoiding over-fitting. In row (E) we replace our sinusoidal positional encoding with learned positional Lua error: Internal error: The interpreter exited with status 1. [9], and observe nearly identical results to the base model.
6.3 English Constituency Parsing
| Parser | Training | WSJ 23 F1 |
| Vinyals & Kaiser el al. (2014) [37] | WSJ only, discriminative | 88.3 |
| Petrov et al. (2006) [29] | WSJ only, discriminative | 90.4 |
| Zhu et al. (2013) [40] | WSJ only, discriminative | 90.4 |
| Dyer et al. (2016) [8] | WSJ only, discriminative | 91.7 |
| Lua error: Internal error: The interpreter exited with status 1. (4 layers) | WSJ only, discriminative | 91.3 |
| Zhu et al. (2013) [40] | semi-supervised | 91.3 |
| Huang & Harper (2009) [14] | semi-supervised | 91.3 |
| McClosky et al. (2006) [26] | semi-supervised | 92.1 |
| Vinyals & Kaiser el al. (2014) [37] | semi-supervised | 92.1 |
| Lua error: Internal error: The interpreter exited with status 1. (4 layers) | semi-supervised | 92.7 |
| Luong et al. (2015) [23] | multi-task | 93.0 |
| Dyer et al. (2016) [8] | generative | 93.3 |
To evaluate if the Lua error: Internal error: The interpreter exited with status 1. can generalize to other tasks we performed experiments on English constituency parsing. This task presents specific challenges: the output is subject to strong structural constraints and is significantly longer than the input. Furthermore, RNN Lua error: Internal error: The interpreter exited with status 1. models have not been able to attain state-of-the-art results in small-data regimes [37].
We trained a 4-layer Lua error: Internal error: The interpreter exited with status 1. with $ {\textstyle d_{m\hspace{0pt}o\hspace{0pt}d\hspace{0pt}e\hspace{0pt}l} = 1024} $ on the Wall Street Journal (WSJ) portion of the Penn Treebank [25], about 40K training sentences. We also trained it in a semi-supervised setting, using the larger high-confidence and BerkleyParser corpora from with approximately 17M sentences [37]. We used a vocabulary of 16K tokens for the WSJ only setting and a vocabulary of 32K tokens for the semi-supervised setting.
We performed only a small number of experiments to select the Lua error: Internal error: The interpreter exited with status 1., both Lua error: Internal error: The interpreter exited with status 1. and residual (section 5.4), Lua error: Internal error: The interpreter exited with status 1. and beam size on the Section 22 development set, all other parameters remained unchanged from the English-to-German base translation model. During inference, we increased the maximum output length to input length + $ {\textstyle 300} $. We used a beam size of $ {\textstyle 21} $ and $ {\textstyle \alpha = 0.3} $ for both WSJ only and the semi-supervised setting.
Our results in Table 4 show that despite the lack of task-specific tuning our model performs surprisingly well, yielding better results than all previously reported models with the exception of the Recurrent Neural Network Grammar [8].
In contrast to RNN Lua error: Internal error: The interpreter exited with status 1. models [37], the Lua error: Internal error: The interpreter exited with status 1. outperforms the BerkeleyParser [29] even when training only on the WSJ training set of 40K sentences.
7 Conclusion
In this work, we presented the Lua error: Internal error: The interpreter exited with status 1., the first sequence transduction model based entirely on Lua error: Internal error: The interpreter exited with status 1., replacing the recurrent layers most commonly used in encoder-decoder architectures with multi-headed self-Lua error: Internal error: The interpreter exited with status 1..
For translation tasks, the Lua error: Internal error: The interpreter exited with status 1. can be trained significantly faster than architectures based on recurrent or Lua error: Internal error: The interpreter exited with status 1.. On both WMT 2014 English-to-German and WMT 2014 English-to-French translation tasks, we achieve a new state of the art. In the former task our best model outperforms even all previously reported ensembles.
We are excited about the future of Lua error: Internal error: The interpreter exited with status 1.-based models and plan to apply them to other tasks. We plan to extend the Lua error: Internal error: The interpreter exited with status 1. to problems involving input and output modalities other than text and to investigate local, restricted Lua error: Internal error: The interpreter exited with status 1. mechanisms to efficiently handle large inputs and outputs such as images, audio and video. Making generation less sequential is another research goals of ours.
The code we used to train and evaluate our models is available at https://github.com/tensorflow/tensor2tensor.
Acknowledgements
We are grateful to Nal Kalchbrenner and Stephan Gouws for their fruitful comments, corrections and inspiration.
References
- [1] Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Lua error: Internal error: The interpreter exited with status 1.. arXiv preprint arXiv:1607.06450, 2016.
- [2] Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. CoRR, abs/1409.0473, 2014.
- [3] Denny Britz, Anna Goldie, Minh-Thang Luong, and Quoc V. Le. Massive exploration of neural machine translation architectures. CoRR, abs/1703.03906, 2017.
- [4] Jianpeng Cheng, Li Dong, and Mirella Lapata. Lua error: Internal error: The interpreter exited with status 1.-networks for machine reading. arXiv preprint arXiv:1601.06733, 2016.
- [5] Kyunghyun Cho, Bart van Merrienboer, Caglar Gulcehre, Fethi Bougares, Holger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. CoRR, abs/1406.1078, 2014.
- [6] Francois Chollet. Xception: Lua error: Internal error: The interpreter exited with status 1. with depthwise separable Lua error: Internal error: The interpreter exited with status 1.. arXiv preprint arXiv:1610.02357, 2016.
- [7] Junyoung Chung, Çaglar Gülçehre, Kyunghyun Cho, and Yoshua Bengio. Empirical evaluation of gated recurrent neural networks on sequence modeling. CoRR, abs/1412.3555, 2014.
- [8] Chris Dyer, Adhiguna Kuncoro, Miguel Ballesteros, and Noah A. Smith. Recurrent neural network grammars. In Proc. of NAACL, 2016.
- [9] Jonas Gehring, Michael Auli, David Grangier, Denis Yarats, and Yann N. Dauphin. Convolutional Lua error: Internal error: The interpreter exited with status 1. learning. arXiv preprint arXiv:1705.03122v2, 2017.
- [10] Alex Graves. Generating sequences with recurrent neural networks. arXiv preprint arXiv:1308.0850, 2013.
- [11] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 770–778, 2016.
- [12] Sepp Hochreiter, Yoshua Bengio, Paolo Frasconi, and Jürgen Schmidhuber. Gradient flow in recurrent nets: the difficulty of learning long-term dependencies, 2001.
- [13] Sepp Hochreiter and Jürgen Schmidhuber. Lua error: Internal error: The interpreter exited with status 1.. Neural computation, 9(8):1735–1780, 1997.
- [14] Zhongqiang Huang and Mary Harper. Self-training PCFG grammars with latent annotations across languages. In Proceedings of the 2009 Conference on Empirical Methods in Natural Language Processing, pages 832–841. ACL, August 2009.
- [15] Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the limits of language modeling. arXiv preprint arXiv:1602.02410, 2016.
- [16] Łukasz Kaiser and Samy Bengio. Can active memory replace Lua error: Internal error: The interpreter exited with status 1.? In Advances in Neural Information Processing Systems, (NIPS), 2016.
- [17] Łukasz Kaiser and Ilya Sutskever. Neural GPUs learn algorithms. In International Conference on Learning Representations (ICLR), 2016.
- [18] Nal Kalchbrenner, Lasse Espeholt, Karen Simonyan, Aaron van den Oord, Alex Graves, and Koray Kavukcuoglu. Neural machine translation in linear time. arXiv preprint arXiv:1610.10099v2, 2017.
- [19] Yoon Kim, Carl Denton, Luong Hoang, and Alexander M. Rush. Structured Lua error: Internal error: The interpreter exited with status 1. networks. In International Conference on Learning Representations, 2017.
- [20] Diederik Kingma and Jimmy Ba. Lua error: Internal error: The interpreter exited with status 1.: A method for stochastic optimization. In ICLR, 2015.
- [21] Oleksii Kuchaiev and Boris Ginsburg. Factorization tricks for Lua error: Internal error: The interpreter exited with status 1. networks. arXiv preprint arXiv:1703.10722, 2017.
- [22] Zhouhan Lin, Minwei Feng, Cicero Nogueira dos Santos, Mo Yu, Bing Xiang, Bowen Zhou, and Yoshua Bengio. A structured self-attentive sentence Lua error: Internal error: The interpreter exited with status 1.. arXiv preprint arXiv:1703.03130, 2017.
- [23] Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task Lua error: Internal error: The interpreter exited with status 1. learning. arXiv preprint arXiv:1511.06114, 2015.
- [24] Minh-Thang Luong, Hieu Pham, and Christopher D Manning. Effective approaches to Lua error: Internal error: The interpreter exited with status 1.-based neural machine translation. arXiv preprint arXiv:1508.04025, 2015.
- [25] Mitchell P Marcus, Mary Ann Marcinkiewicz, and Beatrice Santorini. Building a large annotated corpus of english: The penn treebank. Computational linguistics, 19(2):313–330, 1993.
- [26] David McClosky, Eugene Charniak, and Mark Johnson. Effective self-training for parsing. In Proceedings of the Human Language Technology Conference of the NAACL, Main Conference, pages 152–159. ACL, June 2006.
- [27] Ankur Parikh, Oscar Täckström, Dipanjan Das, and Jakob Uszkoreit. A decomposable Lua error: Internal error: The interpreter exited with status 1. model. In Empirical Methods in Natural Language Processing, 2016.
- [28] Romain Paulus, Caiming Xiong, and Richard Socher. A deep reinforced model for abstractive summarization. arXiv preprint arXiv:1705.04304, 2017.
- [29] Slav Petrov, Leon Barrett, Romain Thibaux, and Dan Klein. Learning accurate, compact, and interpretable tree annotation. In Proceedings of the 21st International Conference on Computational Linguistics and 44th Annual Meeting of the ACL, pages 433–440. ACL, July 2006.
- [30] Ofir Press and Lior Wolf. Using the output Lua error: Internal error: The interpreter exited with status 1. to improve language models. arXiv preprint arXiv:1608.05859, 2016.
- [31] Rico Sennrich, Barry Haddow, and Alexandra Birch. Neural machine translation of rare words with subword units. arXiv preprint arXiv:1508.07909, 2015.
- [32] Noam Shazeer, Azalia Mirhoseini, Krzysztof Maziarz, Andy Davis, Quoc Le, Geoffrey Hinton, and Jeff Dean. Outrageously large neural networks: The sparsely-gated Lua error: Internal error: The interpreter exited with status 1. layer. arXiv preprint arXiv:1701.06538, 2017.
- [33] Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Lua error: Internal error: The interpreter exited with status 1.: a simple way to prevent neural networks from Lua error: Internal error: The interpreter exited with status 1.. Journal of Machine Learning Research, 15(1):1929–1958, 2014.
- [34] Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-to-end memory networks. In C. Cortes, N. D. Lawrence, D. D. Lee, M. Sugiyama, and R. Garnett, editors, Advances in Neural Information Processing Systems 28, pages 2440–2448. Curran Associates, Inc., 2015.
- [35] Ilya Sutskever, Oriol Vinyals, and Quoc VV Le. Lua error: Internal error: The interpreter exited with status 1. learning with neural networks. In Advances in Neural Information Processing Systems, pages 3104–3112, 2014.
- [36] Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. CoRR, abs/1512.00567, 2015.
- [37] Vinyals & Kaiser, Koo, Petrov, Sutskever, and Hinton. Grammar as a foreign language. In Advances in Neural Information Processing Systems, 2015.
- [38] Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, et al. Google’s neural machine translation system: Bridging the gap between human and machine translation. arXiv preprint arXiv:1609.08144, 2016.
- [39] Jie Zhou, Ying Cao, Xuguang Wang, Peng Li, and Wei Xu. Deep recurrent models with fast-forward connections for neural machine translation. CoRR, abs/1606.04199, 2016.
- [40] Muhua Zhu, Yue Zhang, Wenliang Chen, Min Zhang, and Jingbo Zhu. Fast and accurate shift-reduce constituent parsing. In Proceedings of the 51st Annual Meeting of the ACL (Volume 1: Long Papers), pages 434–443. ACL, August 2013.