Pointer Networks

Oriol Vinyals, Meire Fortunato, Navdeep Jaitly

Introduction

Recurrent Neural Networks (RNNs) have been used for learning functions over sequences from examples for more than three decades . However, their architecture limited them to settings where the inputs and outputs were available at a fixed frame rate (e.g. ). The recently introduced sequence-to-sequence paradigm removed these constraints by using one RNN to map an input sequence to an embedding and another (possibly the same) RNN to map the embedding to an output sequence. Bahdanau et. al. augmented the decoder by propagating extra contextual information from the input using a content-based attentional mechanism . These developments have made it possible to apply RNNs to new domains, achieving state-of-the-art results in core problems in natural language processing such as translation and parsing , image and video captioning , and even learning to execute small programs .

Nonetheless, these methods still require the size of the output dictionary to be fixed a priori. Because of this constraint we cannot directly apply this framework to combinatorial problems where the size of the output dictionary depends on the length of the input sequence. In this paper, we address this limitation by repurposing the attention mechanism of to create pointers to input elements. We show that the resulting architecture, which we name Pointer Networks (Ptr-Nets), can be trained to output satisfactory solutions to three combinatorial optimization problems – computing planar convex hulls, Delaunay triangulations and the symmetric planar Travelling Salesman Problem (TSP). The resulting models produce approximate solutions to these problems in a purely data driven fashion (i.e., when we only have examples of inputs and desired outputs). The proposed approach is depicted in Figure 1.

The main contributions of our work are as follows:

We propose a new architecture, that we call Pointer Net, which is simple and effective. It deals with the fundamental problem of representing variable length dictionaries by using a softmax probability distribution as a “pointer”.

We apply the Pointer Net model to three distinct non-trivial algorithmic problems involving geometry. We show that the learned model generalizes to test problems with more points than the training problems.

Our Pointer Net model learns a competitive small scale (n50n\leq 50) TSP approximate solver. Our results demonstrate that a purely data driven approach can learn approximate solutions to problems that are computationally intractable.

Models

We review the sequence-to-sequence and input-attention models that are the baselines for this work in Sections 2.1 and 2.2. We then describe our model - Ptr-Net in Section 2.3.

Given a training pair, (P,CP)(\mathcal{P},\mathcal{C}^{\mathcal{P}}), the sequence-to-sequence model computes the conditional probability p(CPP;θ)p(\mathcal{C}^{\mathcal{P}}|\mathcal{P};\theta) using a parametric model (an RNN with parameters θ\theta) to estimate the terms of the probability chain rule (also see Figure 1), i.e.

Here P={P1,,Pn}\mathcal{P}=\{P_{1},\dots,P_{n}\} is a sequence of nn vectors and CP={C1,,Cm(P)}\mathcal{C}^{\mathcal{P}}=\{C_{1},\dots,C_{m(\mathcal{P})}\} is a sequence of m(P)m(\mathcal{P}) indices, each between 1 and nn.

The parameters of the model are learnt by maximizing the conditional probabilities for the training set, i.e.

As in , we use an Long Short Term Memory (LSTM) to model pθ(CiC1,,Ci1,P;θ)p_{\theta}(C_{i}|C_{1},\ldots,C_{i-1},\mathcal{P};\theta). The RNN is fed PiP_{i} at each time step, ii, until the end of the input sequence is reached, at which time a special symbol, \Rightarrow is input to the model. The model then switches to the generation mode until the network encounters the special symbol \Leftarrow, which represents termination of the output sequence.

Note that this model makes no statistical independence assumptions. We use two separate RNNs (one to encode the sequence of vectors PjP_{j}, and another one to produce or decode the output symbols CiC_{i}). We call the former RNN the encoder and the latter the decoder or the generative RNN.

During inference, given a sequence P{\mathcal{P}}, the learnt parameters θ\theta^{*} are used to select the sequence C^P\mathcal{\hat{C}}^{\mathcal{P}} with the highest probability, i.e., C^P=arg maxCPp(CPP;θ).\displaystyle{\mathcal{\hat{C}}}^{\mathcal{P}}=\operatorname*{arg\,max}_{\mathcal{C}^{\mathcal{P}}}p(\mathcal{C}^{\mathcal{P}}|\mathcal{P};\theta^{*}). Finding the optimal sequence C^\mathcal{\hat{C}} is computationally impractical because of the combinatorial number of possible output sequences. Instead we use a beam search procedure to find the best possible sequence given a beam size.

In this sequence-to-sequence model, the output dictionary size for all symbols CiC_{i} is fixed and equal to nn, since the outputs are chosen from the input. Thus, we need to train a separate model for each nn. This prevents us from learning solutions to problems that have an output dictionary with a size that depends on the input sequence length.

Under the assumption that the number of outputs is O(n)O(n) this model has computational complexity of O(n)O(n). However, exact algorithms for the problems we are dealing with are more costly. For example, the convex hull problem has complexity O(nlogn)O(n\log n). The attention mechanism (see Section 2.2) adds more “computational capacity” to this model.

2 Content Based Input Attention

The vanilla sequence-to-sequence model produces the entire output sequence CP\mathcal{C}^{\mathcal{P}} using the fixed dimensional state of the recognition RNN at the end of the input sequence P\mathcal{P}. This constrains the amount of information and computation that can flow through to the generative model. The attention model of ameliorates this problem by augmenting the encoder and decoder RNNs with an additional neural network that uses an attention mechanism over the entire sequence of encoder RNN states.

For notation purposes, let us define the encoder and decoder hidden states as (e1,,en)(e_{1},\ldots,e_{n}) and (d1,,dm(P))(d_{1},\ldots,d_{m(\mathcal{P})}), respectively. For the LSTM RNNs, we use the state after the output gate has been component-wise multiplied by the cell activations. We compute the attention vector at each output time ii as follows:

where softmax normalizes the vector uiu^{i} (of length nn) to be the “attention” mask over the inputs, and vv, W1W_{1}, and W2W_{2} are learnable parameters of the model. In all our experiments, we use the same hidden dimensionality at the encoder and decoder (typically 512), so vv is a vector and W1W_{1} and W2W_{2} are square matrices. Lastly, did^{\prime}_{i} and did_{i} are concatenated and used as the hidden states from which we make predictions and which we feed to the next time step in the recurrent model.

Note that for each output we have to perform nn operations, so the computational complexity at inference time becomes O(n2)O(n^{2}).

This model performs significantly better than the sequence-to-sequence model on the convex hull problem, but it is not applicable to problems where the output dictionary size depends on the input.

Nevertheless, a very simple extension (or rather reduction) of the model allows us to do this easily.

3 Ptr-Net

We now describe a very simple modification of the attention model that allows us to apply the method to solve combinatorial optimization problems where the output dictionary size depends on the number of elements in the input sequence.

The sequence-to-sequence model of Section 2.1 uses a softmax distribution over a fixed sized output dictionary to compute p(CiC1,,Ci1,P)p(C_{i}|C_{1},\ldots,C_{i-1},\mathcal{P}) in Equation 1. Thus it cannot be used for our problems where the size of the output dictionary is equal to the length of the input sequence. To solve this problem we model p(CiC1,,Ci1,P)p(C_{i}|C_{1},\ldots,C_{i-1},\mathcal{P}) using the attention mechanism of Equation 3 as follows:

where softmax normalizes the vector uiu^{i} (of length nn) to be an output distribution over the dictionary of inputs, and vv, W1W_{1}, and W2W_{2} are learnable parameters of the output model. Here, we do not blend the encoder state eje_{j} to propagate extra information to the decoder, but instead, use ujiu^{i}_{j} as pointers to the input elements. In a similar way, to condition on Ci1C_{i-1} as in Equation 1, we simply copy the corresponding PCi1P_{C_{i-1}} as the input. Both our method and the attention model can be seen as an application of content-based attention mechanisms proposed in .

We also note that our approach specifically targets problems whose outputs are discrete and correspond to positions in the input. Such problems may be addressed artificially – for example we could learn to output the coordinates of the target point directly using an RNN. However, at inference, this solution does not respect the constraint that the outputs map back to the inputs exactly. Without the constraints, the predictions are bound to become blurry over longer sequences as shown in sequence-to-sequence models for videos .

Motivation and Datasets Structure

In the following sections, we review each of the three problems we considered, as well as our data generation protocol.We release all the datasets at http://goo.gl/NDcOIG.

In the training data, the inputs are planar point sets P={P1,,Pn}\mathcal{P}=\{P_{1},\dots,P_{n}\} with nn elements each, where Pj=(xj,yj)P_{j}=(x_{j},y_{j}) are the cartesian coordinates of the points over which we find the convex hull, the Delaunay triangulation or the solution to the corresponding Travelling Salesman Problem. In all cases, we sample from a uniform distribution in ×\times. The outputs CP={C1,,Cm(P)}\mathcal{C}^{\mathcal{P}}=\{C_{1},\dots,C_{m(\mathcal{P})}\} are sequences representing the solution associated to the point set P\mathcal{P}. In Figure 2, we find an illustration of an input/output pair (P,CP)(\mathcal{P},\mathcal{C}^{\mathcal{P}}) for the convex hull and the Delaunay problems.

We used this example as a baseline to develop our models and to understand the difficulty of solving combinatorial problems with data driven approaches. Finding the convex hull of a finite number of points is a well understood task in computational geometry, and there are several exact solutions available (see ). In general, finding the (generally unique) solution has complexity O(nlogn)O(n\log n), where nn is the number of points considered.

The vectors Pj\mathcal{P}_{j} are uniformly sampled from ×\times. The elements CiC_{i} are indices between 1 and nn corresponding to positions in the sequence P\mathcal{P}, or special tokens representing beginning or end of sequence. See Figure 2 (a) for an illustration. To represent the output as a sequence, we start from the point with the lowest index, and go counter-clockwise – this is an arbitrary choice but helps reducing ambiguities during training.

2 Delaunay Triangulation

A Delaunay triangulation for a set P\mathcal{P} of points in a plane is a triangulation such that each circumcircle of every triangle is empty, that is, there is no point from P\mathcal{P} in its interior. Exact O(nlogn)O(n\log n) solutions are available , where nn is the number of points in P\mathcal{P}.

In this example, the outputs CP={C1,,Cm(P)}\mathcal{C}^{\mathcal{P}}=\{C_{1},\dots,C_{m(\mathcal{P})}\} are the corresponding sequences representing the triangulation of the point set P\mathcal{P} . Each CiC_{i} is a triple of integers from 1 to nn corresponding to the position of triangle vertices in P\mathcal{P} or the beginning/end of sequence tokens. See Figure 2 (b).

We note that any permutation of the sequence CP\mathcal{C}^{\mathcal{P}} represents the same triangulation for P\mathcal{P}, additionally each triangle representation CiC_{i} of three integers can also be permuted. Without loss of generality, and similarly to what we did for convex hulls at training time, we order the triangles CiC_{i} by their incenter coordinates (lexicographic order) and choose the increasing triangle representationWe choose Ci=(1,2,4)C_{i}=(1,2,4) instead of (2,4,1) or any other permutation.. Without ordering, the models learned were not as good, and finding a better ordering that the Ptr-Net could better exploit is part of future work.

3 Travelling Salesman Problem (TSP)

TSP arises in many areas of theoretical computer science and is an important algorithm used for microchip design or DNA sequencing. In our work we focused on the planar symmetric TSP: given a list of cities, we wish to find the shortest possible route that visits each city exactly once and returns to the starting point. Additionally, we assume the distance between two cities is the same in each opposite direction. This is an NP-hard problem which allows us to test the capabilities and limitations of our model.

The input/output pairs (P,CP)(\mathcal{P},\mathcal{C}^{\mathcal{P}}) have a similar format as in the Convex Hull problem described in Section 3.1. P\mathcal{P} will be the cartesian coordinates representing the cities, which are chosen randomly in the ×\times square. CP={C1,,Cn}\mathcal{C}^{\mathcal{P}}=\{C_{1},\dots,C_{n}\} will be a permutation of integers from 1 to nn representing the optimal path (or tour). For consistency, in the training dataset, we always start in the first city without loss of generality.

To generate exact data, we implemented the Held-Karp algorithm which finds the optimal solution in O(2nn2)O(2^{n}n^{2}) (we used it up to n=20n=20). For larger nn, producing exact solutions is extremely costly, therefore we also considered algorithms that produce approximated solutions: A1 and A2 , which are both O(n2)O(n^{2}), and A3 which implements the O(n3)O(n^{3}) Christofides algorithm. The latter algorithm is guaranteed to find a solution within a factor of 1.5 from the optimal length. Table 2 shows how they performed in our test sets.

Empirical Results

No extensive architecture or hyperparameter search of the Ptr-Net was done in the work presented here, and we used virtually the same architecture throughout all the experiments and datasets. Even though there are likely some gains to be obtained by tuning the model, we felt that having the same model hyperparameters operate on all the problems would make the main message of the paper stronger.

As a result, all our models used a single layer LSTM with either 256 or 512 hidden units, trained with stochastic gradient descent with a learning rate of 1.0, batch size of 128, random uniform weight initialization from -0.08 to 0.08, and L2 gradient clipping of 2.0. We generated 1M training example pairs, and we did observe overfitting in some cases where the task was simpler (i.e., for small nn).

2 Convex Hull

We used the convex hull as the guiding task which allowed us to understand the deficiencies of standard models such as the sequence-to-sequence approach, and also setting up our expectations on what a purely data driven model would be able to achieve with respect to an exact solution.

We reported two metrics: accuracy, and area covered of the true convex hull (note that any simple polygon will have full intersection with the true convex hull). To compute the accuracy, we considered two output sequences C1\mathcal{C}^{1} and C2\mathcal{C}^{2} to be the same if they represent the same polygon. For simplicity, we only computed the area coverage for the test examples in which the output represents a simple polygon (i.e., without self-intersections). If an algorithm fails to produce a simple polygon in more than 1% of the cases, we simply reported FAIL.

The results are presented in Table 1. We note that the area coverage achieved with the Ptr-Net is close to 100%. Looking at examples of mistakes, we see that most problems come from points that are aligned (see Figure 3 (d) for a mistake for n=500n=500) – this is a common source of errors in most algorithms to solve the convex hull.

It was seen that the order in which the inputs are presented to the encoder during inference affects its performance. When the points on the true convex hull are seen “late” in the input sequence, the accuracy is lower. This is possibly the network does not have enough processing steps to “update” the convex hull it computed until the latest points were seen. In order to overcome this problem, we used the attention mechanism described in Section 2.2, which allows the decoder to look at the whole input at any time. This modification boosted the model performance significantly. We inspected what attention was focusing on, and we observed that it was “pointing” at the correct answer on the input side. This inspired us to create the Ptr-Net model described in Section 2.3.

More than outperforming both the LSTM and the LSTM with attention, our model has the key advantage of being inherently variable length. The bottom half of Table 1 shows that, when training our model on a variety of lengths ranging from 5 to 50 (uniformly sampled, as we found other forms of curriculum learning to not be effective), a single model is able to perform quite well on all lengths it has been trained on (but some degradation for n=50n=50 can be observed w.r.t. the model trained only on length 50 instances). More impressive is the fact that the model does extrapolate to lengths that it has never seen during training. Even for n=500n=500, our results are satisfactory and indirectly indicate that the model has learned more than a simple lookup. Neither LSTM or LSTM with attention can be used for any given nnn^{\prime}\neq n without training a new model on nn^{\prime}.

3 Delaunay Triangulation

The Delaunay Triangulation test case is connected to our first problem of finding the convex hull. In fact, the Delaunay Triangulation for a given set of points triangulates the convex hull of these points.

We reported two metrics: accuracy and triangle coverage in percentage (the percentage of triangles the model predicted correctly). Note that, in this case, for an input point set P\mathcal{P}, the output sequence C(P)\mathcal{C}(\mathcal{P}) is, in fact, a set. As a consequence, any permutation of its elements will represent the same triangulation.

Using the Ptr-Net model for n=5n=5, we obtained an accuracy of 80.7% and triangle coverage of 93.0%. For n=10n=10, the accuracy was 22.6% and the triangle coverage 81.3%. For n=50n=50, we did not produce any precisely correct triangulation, but obtained 52.8% triangle coverage. See the middle column of Figure 3 for an example for n=50n=50.

4 Travelling Salesman Problem

We considered the planar symmetric travelling salesman problem (TSP), which is NP-hard as the third problem. Similarly to finding convex hulls, it also has sequential outputs. Given that the Ptr-Net implements an O(n2)O(n^{2}) algorithm, it was unclear if it would have enough capacity to learn a useful algorithm solely from data.

As discussed in Section 3.3, it is feasible to generate exact solutions for relatively small values of nn to be used as training data. For larger nn, due to the importance of TSP, good and efficient algorithms providing reasonable approximate solutions exist. We used three different algorithms in our experiments – A1, A2, and A3 (see Section 3.3 for references).

Table 2 shows all of our results on TSP. The number reported is the length of the proposed tour. Unlike the convex hull and Delaunay triangulation cases, where the decoder was unconstrained, in this example we set the beam search procedure to only consider valid tours. Otherwise, the Ptr-Net model would sometimes output an invalid tour – for instance, it would repeat two cities or decided to ignore a destination. This procedure was relevant for n>20n>20, where at least 10% of instances would not produce any valid tour.

The first group of rows in the table show the Ptr-Net trained on optimal data, except for n=50n=50, since that is not feasible computationally (we trained a separate model for each nn). Interestingly, when using the worst algorithm (A1) data to train the Ptr-Net, our model outperforms the algorithm that is trying to imitate.

The second group of rows in the table show how the Ptr-Net trained on optimal data with 5 to 20 cities can generalize beyond that. The results are virtually perfect for n=25n=25, and good for n=30n=30, but it seems to break for 40 and beyond (still, the results are far better than chance). This contrasts with the convex hull case, where we were able to generalize by a factor of 10. However, the underlying algorithms are of far greater complexity than O(nlogn)O(n\log n), which could explain this phenomenon.

Conclusions

In this paper we described Ptr-Net, a new architecture that allows us to learn a conditional probability of one sequence CP\mathcal{C}^{\mathcal{P}} given another sequence P\mathcal{P}, where CP\mathcal{C}^{\mathcal{P}} is a sequence of discrete tokens corresponding to positions in P\mathcal{P}. We show that Ptr-Nets can be used to learn solutions to three different combinatorial optimization problems. Our method works on variable sized inputs (yielding variable sized output dictionaries), something the baseline models (sequence-to-sequence with or without attention) cannot do directly. Even more impressively, they outperform the baselines on fixed input size problems - to which both the models can be applied.

Previous methods such as RNNSearch, Memory Networks and Neural Turing Machines have used attention mechanisms to process inputs. However these methods do not directly address problems that arise with variable output dictionaries. We have shown that an attention mechanism can be applied to the output to solve such problems. In so doing, we have opened up a new class of problems to which neural networks can be applied without artificial assumptions. In this paper, we have applied this extension to RNNSearch, but the methods are equally applicable to Memory Networks and Neural Turing Machines.

Future work will try and show its applicability to other problems such as sorting where the outputs are chosen from the inputs. We are also excited about the possibility of using this approach to other combinatorial optimization problems.

We would like to thank Rafal Jozefowicz, Ilya Sutskever, Quoc Le and Samy Bengio for useful discussions on this topic. We would also like to thank Daniel Gillick for his help with the final manuscript.

References