ACL-OCL / Base_JSON /prefixP /json /P18 /P18-1026.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "P18-1026",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:39:30.741514Z"
},
"title": "Graph-to-Sequence Learning using Gated Graph Neural Networks",
"authors": [
{
"first": "Daniel",
"middle": [],
"last": "Beck",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Melbourne",
"location": {
"country": "Australia"
}
},
"email": "d.beck@unimelb.edu.au"
},
{
"first": "Gholamreza",
"middle": [],
"last": "Haffari",
"suffix": "",
"affiliation": {},
"email": "gholamreza.haffari@monash.edu"
},
{
"first": "Trevor",
"middle": [],
"last": "Cohn",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Melbourne",
"location": {
"country": "Australia"
}
},
"email": "t.cohn@unimelb.edu.au"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Many NLP applications can be framed as a graph-to-sequence learning problem. Previous work proposing neural architectures on this setting obtained promising results compared to grammar-based approaches but still rely on linearisation heuristics and/or standard recurrent networks to achieve the best performance. In this work, we propose a new model that encodes the full structural information contained in the graph. Our architecture couples the recently proposed Gated Graph Neural Networks with an input transformation that allows nodes and edges to have their own hidden representations, while tackling the parameter explosion problem present in previous work. Experimental results show that our model outperforms strong baselines in generation from AMR graphs and syntax-based neural machine translation.",
"pdf_parse": {
"paper_id": "P18-1026",
"_pdf_hash": "",
"abstract": [
{
"text": "Many NLP applications can be framed as a graph-to-sequence learning problem. Previous work proposing neural architectures on this setting obtained promising results compared to grammar-based approaches but still rely on linearisation heuristics and/or standard recurrent networks to achieve the best performance. In this work, we propose a new model that encodes the full structural information contained in the graph. Our architecture couples the recently proposed Gated Graph Neural Networks with an input transformation that allows nodes and edges to have their own hidden representations, while tackling the parameter explosion problem present in previous work. Experimental results show that our model outperforms strong baselines in generation from AMR graphs and syntax-based neural machine translation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Graph structures are ubiquitous in representations of natural language. In particular, many wholesentence semantic frameworks employ directed acyclic graphs as the underlying formalism, while most tree-based syntactic representations can also be seen as graphs. A range of NLP applications can be framed as the process of transducing a graph structure into a sequence. For instance, language generation may involve realising a semantic graph into a surface form and syntactic machine translation involves transforming a tree-annotated source sentence to its translation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Previous work in this setting rely on grammarbased approaches such as tree transducers (Flanigan et al., 2016) and hyperedge replacement gram-mars (Jones et al., 2012) . A key limitation of these approaches is that alignments between graph nodes and surface tokens are required. These alignments are usually automatically generated so they can propagate errors when building the grammar. More recent approaches transform the graph into a linearised form and use off-the-shelf methods such as phrase-based machine translation (Pourdamghani et al., 2016) or neural sequenceto-sequence (henceforth, s2s) models (Konstas et al., 2017) . Such approaches ignore the full graph structure, discarding key information.",
"cite_spans": [
{
"start": 87,
"end": 110,
"text": "(Flanigan et al., 2016)",
"ref_id": "BIBREF13"
},
{
"start": 147,
"end": 167,
"text": "(Jones et al., 2012)",
"ref_id": "BIBREF22"
},
{
"start": 525,
"end": 552,
"text": "(Pourdamghani et al., 2016)",
"ref_id": "BIBREF38"
},
{
"start": 608,
"end": 630,
"text": "(Konstas et al., 2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this work we propose a model for graph-tosequence (henceforth, g2s) learning that leverages recent advances in neural encoder-decoder architectures. Specifically, we employ an encoder based on Gated Graph Neural Networks (Li et al., 2016, GGNNs) , which can incorporate the full graph structure without loss of information. Such networks represent edge information as label-wise parameters, which can be problematic even for small sized label vocabularies (in the order of hundreds). To address this limitation, we also introduce a graph transformation that changes edges to additional nodes, solving the parameter explosion problem. This also ensures that edges have graphspecific hidden vectors, which gives more information to the attention and decoding modules in the network. We benchmark our model in two graph-tosequence problems, generation from Abstract Meaning Representations (AMRs) and Neural Machine Translation (NMT) with source dependency information. Our approach outperforms strong s2s baselines in both tasks without relying on standard RNN encoders, in contrast with previous work. In particular, for NMT we show that we avoid the need for RNNs by adding sequential edges between contiguous words in the dependency tree. This illustrates the generality of our want-01 believe-01 boy girl Figure 1 : Left: the AMR graph representing the sentence \"The boy wants the girl to believe him.\". Right: Our proposed architecture using the same AMR graph as input and the surface form as output. The first layer is a concatenation of node and positional embeddings, using distance from the root node as the position. The GGNN encoder updates the embeddings using edge-wise parameters, represented by different colors (in this example, ARG0 and ARG1). The encoder also add corresponding reverse edges (dotted arrows) and self edges for each node (dashed arrows). All parameters are shared between layers. Attention and decoder components are similar to standard s2s models. This is a pictorial representation: in our experiments the graphs are transformed before being used as inputs (see \u00a73).",
"cite_spans": [
{
"start": 224,
"end": 248,
"text": "(Li et al., 2016, GGNNs)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 1310,
"end": 1318,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A R G 0 A R G 1 A R G 0 A R G 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "approach: linguistic biases can be added to the inputs by simple graph transformations, without the need for changes to the model architecture.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our proposed architecture is shown in Figure 1 , with an example AMR graph and its transformation into its surface form. Compared to standard s2s models, the main difference is in the encoder, where we employ a GGNN to build a graph representation. In the following we explain the components of this architecture in detail. 1",
"cite_spans": [],
"ref_spans": [
{
"start": 38,
"end": 46,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Neural Graph-to-Sequence Model",
"sec_num": "2"
},
{
"text": "Early approaches for recurrent networks on graphs (Gori et al., 2005; Scarselli et al., 2009 ) assume a fixed point representation of the parameters and learn using contraction maps. Li et al. (2016) argues that this restricts the capacity of the model and makes it harder to learn long distance relations between nodes. To tackle these issues, they propose Gated Graph Neural Networks, which extend these architectures with gating mechanisms 1 Our implementation uses MXNet (Chen et al., 2015) and is based on the Sockeye toolkit (Hieber et al., 2017) . Code is available at github.com/beckdaniel/acl2018_ graph2seq.",
"cite_spans": [
{
"start": 50,
"end": 69,
"text": "(Gori et al., 2005;",
"ref_id": "BIBREF16"
},
{
"start": 70,
"end": 92,
"text": "Scarselli et al., 2009",
"ref_id": "BIBREF40"
},
{
"start": 183,
"end": 199,
"text": "Li et al. (2016)",
"ref_id": "BIBREF30"
},
{
"start": 475,
"end": 494,
"text": "(Chen et al., 2015)",
"ref_id": "BIBREF6"
},
{
"start": 531,
"end": 552,
"text": "(Hieber et al., 2017)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "in a similar fashion to Gated Recurrent Units (Cho et al., 2014) . This allows the network to be learnt via modern backpropagation procedures.",
"cite_spans": [
{
"start": 46,
"end": 64,
"text": "(Cho et al., 2014)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "In following, we formally define the version of GGNNs we employ in this study. Assume a di-",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "rected graph G = {V, E, L V , L E }, where V is a set of nodes (v, v ), E is a set of edges (v i , v j , e )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "and L V and L E are respectively vocabularies for nodes and edges, from which node and edge labels ( v and e ) are defined. Given an input graph with nodes mapped to embeddings X, a GGNN is defined as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "h 0 v = x v r t v = \u03c3 c r v u\u2208Nv W r e h (t\u22121) u + b r e z t v = \u03c3 c z v u\u2208Nv W z e h (t\u22121) u + b z e h t v = \u03c1 c v u\u2208Nv W e r t u h (t\u22121) u + b e h t v = (1 \u2212 z t v ) h (i\u22121) v + z t v h t v",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "where e = (u, v, e ) is the edge between nodes u and v, N (v) is the set of neighbour nodes for v, \u03c1 is a non-linear function, \u03c3 is the sigmoid function and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "c v = c z v = c r v = |N v | \u22121 are normalisation constants.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "Our formulation differs from the original GGNNs from Li et al. (2016) in some aspects: 1) we add bias vectors for the hidden state, reset gate and update gate computations; 2) labelspecific matrices do not share any components; 3) reset gates are applied to all hidden states before any computation and 4) we add normalisation constants. These modifications were applied based on preliminary experiments and ease of implementation.",
"cite_spans": [
{
"start": 53,
"end": 69,
"text": "Li et al. (2016)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "An alternative to GGNNs is the model from , which add edge label information to Graph Convolutional Networks (GCNs). According to Li et al. (2016) , the main difference between GCNs and GGNNs is analogous to the difference between convolutional and recurrent networks. More specifically, GGNNs can be seen as multi-layered GCNs where layer-wise parameters are tied and gating mechanisms are added. A large number of layers can propagate node information between longer distances in the graph and, unlike GCNs, GGNNs can have an arbitrary number of layers without increasing the number of parameters. Nevertheless, our architecture borrows ideas from GCNs as well, such as normalising factors.",
"cite_spans": [
{
"start": 130,
"end": 146,
"text": "Li et al. (2016)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Gated Graph Neural Networks",
"sec_num": "2.1"
},
{
"text": "In s2s models, inputs are sequences of tokens where each token is represented by an embedding vector. The encoder then transforms these vectors into hidden states by incorporating context, usually through a recurrent or a convolutional network. These are fed into an attention mechanism, generating a single context vector that informs decisions in the decoder. Our model follows a similar structure, where the encoder is a GGNN that receives node embeddings as inputs and generates node hidden states as outputs, using the graph structure as context. This is shown in the example of Figure 1 , where we have 4 hidden vectors, one per node in the AMR graph. The attention and decoder components follow similar standard s2s models, where we use a bilinear attention mechanism (Luong et al., 2015) and a 2-layered LSTM (Hochreiter and Schmidhuber, 1997) as the decoder. Note, however, that other decoders and attention mechanisms can be easily employed instead. Bastings et al. (2017) employs a similar idea for syntax-based NMT, but using GCNs instead.",
"cite_spans": [
{
"start": 775,
"end": 795,
"text": "(Luong et al., 2015)",
"ref_id": "BIBREF32"
},
{
"start": 817,
"end": 851,
"text": "(Hochreiter and Schmidhuber, 1997)",
"ref_id": "BIBREF21"
},
{
"start": 960,
"end": 982,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 584,
"end": 592,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Using GGNNs in attentional encoder-decoder models",
"sec_num": "2.2"
},
{
"text": "While our architecture can in theory be used with general graphs, rooted directed acyclic graphs (DAGs) are arguably the most common kind in the problems we are addressing. This means that node embedding information is propagated in a top down manner. However, it is desirable to have information flow from the reverse direction as well, in the same way RNN-based encoders benefit from right-to-left propagation (as in bidirectional RNNs). and Bastings et al. (2017) achieve this by adding reverse edges to the graph, as well as self-loops edges for each node. These extra edges have specific labels, hence their own parameters in the network.",
"cite_spans": [
{
"start": 444,
"end": 466,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Bidirectionality and positional embeddings",
"sec_num": "2.3"
},
{
"text": "In this work, we also follow this procedure to ensure information is evenly propagated in the graph. However, this raises another limitation: because the graph becomes essentially undirected, the encoder is now unaware of any intrinsic hierarchy present in the input. Inspired by Gehring et al. (2017) and Vaswani et al. (2017) , we tackle this problem by adding positional embeddings to every node. These embeddings are indexed by integer values representing the minimum distance from the root node and are learned as model parameters. 2 This kind of positional embedding is restricted to rooted DAGs: for general graphs, different notions of distance could be employed.",
"cite_spans": [
{
"start": 280,
"end": 301,
"text": "Gehring et al. (2017)",
"ref_id": "BIBREF15"
},
{
"start": 306,
"end": 327,
"text": "Vaswani et al. (2017)",
"ref_id": "BIBREF45"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Bidirectionality and positional embeddings",
"sec_num": "2.3"
},
{
"text": "The g2s model proposed in \u00a72 has two key deficiencies. First, GGNNs have three linear transformations per edge type. This means that the number of parameters can explode: AMR, for instance, has around 100 different predicates, which correspond to edge labels. Previous work deal with this problem by explicitly grouping edge labels into a single one Bastings et al., 2017 ) but this is not an ideal solution since it incurs in loss of information. The second deficiency is that edge label information is encoded in the form of GGNN parameters in the network. This means that each label will have the same \"representation\" across all graphs. However, the latent information in edges can depend on the content in which they appear in a graph. Ideally, edges should have instance-specific hidden states, in the same way as nodes, and these should also inform decisions made in the decoder through the attention module. For instance, in the AMR graph shown in Figure 1, the ARG1 predicate between want-01 and believe-01 can be interpreted as the preposition \"to\" in the surface form, while the ARG1 predicate connecting believe-01 and boy is realised as a pronoun. Notice that edge hidden vectors are already present in s2s networks that use linearised graphs: we would like our architecture to also have this benefit.",
"cite_spans": [
{
"start": 350,
"end": 371,
"text": "Bastings et al., 2017",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 956,
"end": 962,
"text": "Figure",
"ref_id": null
}
],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "Instead of modifying the architecture, we propose to transform the input graph into its equivalent Levi graph (Levi, 1942; Gross and Yellen, 2004, p. 765) . Given a graph",
"cite_spans": [
{
"start": 110,
"end": 122,
"text": "(Levi, 1942;",
"ref_id": "BIBREF29"
},
{
"start": 123,
"end": 154,
"text": "Gross and Yellen, 2004, p. 765)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "G = {V, E, L V , L E }, a Levi graph 3 is defined as G = {V , E , L V , L E }, where V = V \u222a E, L V = L V \u222a L E and L E = \u2205.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "The new edge set E contains a edge for every (node, edge) pair that is present in the original graph. By definition, the Levi graph is bipartite.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "Intuitively, transforming a graph into its Levi graph equivalent turns edges into additional nodes. While simple in theory, this transformation addresses both modelling deficiencies mentioned above in an elegant way. Since the Levi graph has no labelled edges there is no risk of parameter explosion: original edge labels are represented as embeddings, in the same way as nodes. Furthermore, the encoder now naturally generates hidden states for original edges as well.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "In practice, we follow the procedure in \u00a72.3 and add reverse and self-loop edges to the Levi graph, so the practical edge label vocabulary is L E = {default, reverse, self}. This still keeps the parameter space modest since we have only three labels. Figure 2 shows the transformation steps in detail, applied to the AMR graph shown in Figure 1 . Notice that the transformed graphs are the ones fed into our architecture: we show the original graph in Figure 1 for simplicity.",
"cite_spans": [],
"ref_spans": [
{
"start": 251,
"end": 259,
"text": "Figure 2",
"ref_id": "FIGREF0"
},
{
"start": 336,
"end": 344,
"text": "Figure 1",
"ref_id": null
},
{
"start": 452,
"end": 460,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "It is important to note that this transformation can be applied to any graph and therefore is independent of the model architecture. We speculate this can be beneficial in other kinds of graph-based encoder such as GCNs and leave further investigation to future work.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Levi Graph Transformation",
"sec_num": "3"
},
{
"text": "Our first g2s benchmark is language generation from AMR, a semantic formalism that represents sentences as rooted DAGs (Banarescu et al., 2013) . Because AMR abstracts away from syntax, graphs do not have gold-standard alignment information, so generation is not a trivial task. Therefore, we hypothesize that our proposed model is ideal for this problem.",
"cite_spans": [
{
"start": 119,
"end": 143,
"text": "(Banarescu et al., 2013)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Generation from AMR Graphs",
"sec_num": "4"
},
{
"text": "Data and preprocessing We use the latest AMR corpus release (LDC2017T10) with the default split of 36521/1368/1371 instances for training, development and test sets. Each graph is preprocessed using a procedure similar to what is performed by Konstas et al. (2017) , which includes entity simplification and anonymisation. This preprocessing is done before transforming the graph into its Levi graph equivalent. For the s2s baselines, we also add scope markers as in Konstas et al. (2017) . We detail these procedures in the Supplementary Material.",
"cite_spans": [
{
"start": 243,
"end": 264,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
},
{
"start": 467,
"end": 488,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "Models Our baselines are attentional s2s models which take linearised graphs as inputs. The architecture is similar to the one used in Konstas et al. (2017) for AMR generation, where the encoder is a BiLSTM followed by a unidirectional LSTM. All dimensionalities are fixed to 512.",
"cite_spans": [
{
"start": 135,
"end": 156,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "For the g2s models, we fix the number of layers in the GGNN encoder to 8, as this gave the best results on the development set. Dimensionalities are also fixed at 512 except for the GGNN encoder which uses 576. This is to ensure all models have a comparable number of parameters and therefore similar capacity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "Training for all models uses Adam (Kingma and Ba, 2015) with 0.0003 initial learning rate and 16 as the batch size. 4 To regularise our models we perform early stopping on the dev set based on perplexity and apply 0.5 dropout (Srivastava et al., 2014) on the source embeddings. We detail additional model and training hyperparameters in the Supplementary Material.",
"cite_spans": [
{
"start": 116,
"end": 117,
"text": "4",
"ref_id": null
},
{
"start": 226,
"end": 251,
"text": "(Srivastava et al., 2014)",
"ref_id": "BIBREF44"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "Evaluation Following previous work, we evaluate our models using BLEU (Papineni et al., 2001 ) and perform bootstrap resampling to check statistical significance.",
"cite_spans": [
{
"start": 70,
"end": 92,
"text": "(Papineni et al., 2001",
"ref_id": "BIBREF35"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "However, since recent work has questioned the effectiveness of BLEU with bootstrap resampling (Graham et al., 2014) , we also report results using sentence-level CHRF++ (Popovi\u0107, 2017) , using the Wilcoxon signed-rank test to check significance. Evaluation is case-insensitive for both metrics.",
"cite_spans": [
{
"start": 94,
"end": 115,
"text": "(Graham et al., 2014)",
"ref_id": "BIBREF17"
},
{
"start": 169,
"end": 184,
"text": "(Popovi\u0107, 2017)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "Recent work has shown that evaluation in neural models can lead to wrong conclusions by just changing the random seed (Reimers and Gurevych, 2017) . In an effort to make our conclusions more robust, we run each model 5 times using different seeds. From each pool, we report 22.0 -- Table 1 : Results for AMR generation on the test set. All score differences between our models and the corresponding baselines are significantly different (p<0.05). \"(-s)\" means input without scope marking. KIYCZ17, PKH16, SPZWG17 and FDSC16 are respectively the results reported in Konstas et al. (2017) , Pourdamghani et al. (2016) , Song et al. (2017) and Flanigan et al. (2016) .",
"cite_spans": [
{
"start": 118,
"end": 146,
"text": "(Reimers and Gurevych, 2017)",
"ref_id": "BIBREF39"
},
{
"start": 565,
"end": 586,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
},
{
"start": 589,
"end": 615,
"text": "Pourdamghani et al. (2016)",
"ref_id": "BIBREF38"
},
{
"start": 618,
"end": 636,
"text": "Song et al. (2017)",
"ref_id": "BIBREF43"
},
{
"start": 641,
"end": 663,
"text": "Flanigan et al. (2016)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [
{
"start": 282,
"end": 289,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "results using the median model according to performance on the dev set (simulating what is expected from a single run) and using an ensemble of the 5 models. Finally, we also report the number of parameters used in each model. Since our encoder architectures are quite different, we try to match the number of parameters between them by changing the dimensionality of the hidden layers (as explained above). We do this to minimise the effects of model capacity as a confounder. Table 1 shows the results on the test set. For the s2s models, we also report results without the scope marking procedure of Konstas et al. (2017) . Our approach significantly outperforms the s2s baselines both with individual models and ensembles, while using a comparable number of parameters. In particular, we obtain these results without relying on scoping heuristics.",
"cite_spans": [
{
"start": 603,
"end": 624,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [
{
"start": 478,
"end": 485,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "4.1"
},
{
"text": "On Figure 3 we show an example where our model outperforms the baseline. The AMR graph contains four reentrancies, predicates that refer-Original AMR graph (p / propose-01 :ARG0 (c / country :wiki \"Russia\" :name (n / name :op1 \"Russia\")) :ARG1 (c5 / cooperate-01 :ARG0 c :ARG1 (a / and :op1 (c2 / country :wiki \"India\" :name (n2 / name :op1 \"India\")) :op2 (c3 / country :wiki \"China\" :name (n3 / name :op1 \"China\")))) :purpose (i / increase-01 :ARG0 c5 :ARG1 (s / security) :location (a2 / around :op1 (c4 / country :wiki \"Afghanistan\" :name (n4 / name :op1 \"Afghanistan\"))) :purpose (b / block-01 :ARG0 (a3 / and :op1 c :op2 c2 :op3 c3 :ARG1 (s2 / supply-01",
"cite_spans": [],
"ref_spans": [
{
"start": 3,
"end": 11,
"text": "Figure 3",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": ":",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "ARG1 (d / drug)))))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "Reference surface form",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "Russia proposes cooperation with India and China to increase security around Afghanistan to block drug supplies.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "s2s output (CHRF++ 61.8)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "Russia proposed cooperation with India and China to increase security around the Afghanistan to block security around the Afghanistan , India and China.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "g2s output (CHRF++ 78.2)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "Russia proposed cooperation with India and China to increase security around Afghanistan to block drug supplies. ence previously defined concepts in the graph. In the s2s models including Konstas et al. (2017) , reentrant nodes are copied in the linearised form, while this is not necessary for our g2s models. We can see that the s2s prediction overgenerates the \"India and China\" phrase. The g2s prediction avoids overgeneration, and almost perfectly matches the reference. While this is only a single example, it provides evidence that retaining the full graphical structure is beneficial for this task, which is corroborated by our quantitative results. Table 1 also show BLEU scores reported in previous work. These results are not strictly comparable because they used different training set versions and/or employ additional unlabelled corpora; nonetheless some insights can be made. In particular, our g2s ensemble performs better than many previous models that combine a smaller training set with a large unlabelled corpus. It is also most informative to compare our s2s model with Konstas et al. (2017) , since this baseline is very similar to theirs. We expected our single model baseline to outperform theirs since we use a larger training set but we obtained similar performance. We speculate that better results could be obtained by more careful tuning, but nevertheless we believe such tuning would also benefit our proposed g2s architecture.",
"cite_spans": [
{
"start": 188,
"end": 209,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
},
{
"start": 1091,
"end": 1112,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [
{
"start": 658,
"end": 665,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "The best results with unlabelled data are obtained by Konstas et al. (2017) using Gigaword sentences as additional data and a paired trained procedure with an AMR parser. It is important to note that this procedure is orthogonal to the individual models used for generation and parsing. Therefore, we hypothesise that our model can also benefit from such techniques, an avenue that we leave for future work.",
"cite_spans": [
{
"start": 54,
"end": 75,
"text": "Konstas et al. (2017)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "4.2"
},
{
"text": "Our second evaluation is NMT, using as graphs source language dependency syntax trees. We focus on a medium resource scenario where additional linguistic information tends to be more beneficial. Our experiments comprise two language pairs: English-German and English-Czech.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Syntax-based Neural Machine Translation",
"sec_num": "5"
},
{
"text": "Data and preprocessing We employ the same data and settings from Bastings et al. (2017) , 5 which use the News Commentary V11 corpora from the WMT16 translation task. 6 English text is tokenised and parsed using SyntaxNet 7 while German and Czech texts are tokenised and split into subwords using byte-pair encodings (Sennrich et al., 2016, BPE) (8000 merge operations).",
"cite_spans": [
{
"start": 65,
"end": 87,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "We refer to Bastings et al. (2017) for further information on the preprocessing steps. Labelled dependency trees in the source side are transformed into Levi graphs as a preprocessing step. However, unlike AMR generation, in NMT the inputs are originally surface forms that contain important sequential information. This information is lost when treating the input as dependency trees, which might explain why Bastings et al. (2017) obtain the best performance when using an initial RNN layer in their encoder. To investigate this phenomenon, we also perform experiments adding sequential connections to each word in the dependency tree, corresponding to their order in the original surface form (henceforth, g2s+). These connections are represented as edges with specific left and right labels, which are added after the Levi graph transformation. Figure 4 shows an example of an input graph for g2s+, with the additional sequential edges connecting the words (reverse and self edges are omitted for simplicity).",
"cite_spans": [
{
"start": 12,
"end": 34,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
},
{
"start": 410,
"end": 432,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 849,
"end": 857,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "Models Our s2s and g2s models are almost the same as in the AMR generation experiments ( \u00a74.1). The only exception is the GGNN encoder dimensionality, where we use 512 for the experiments with dependency trees only and 448 when the inputs have additional sequential connections. As in the AMR generation setting, we do this to ensure model capacity are comparable in the number of parameters. Another key difference is that the s2s baselines do not use dependency trees: they are trained on the sentences only.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "In addition to neural models, we also report results for Phrase-Based Statistical MT (PB-SMT), using Moses (Koehn et al., 2007) . The PB-SMT models are trained using the same data conditions as s2s (no dependency trees) and use the standard setup in Moses, except for the language model, where we use a 5-gram LM trained on the target side of the respective parallel corpus. 8",
"cite_spans": [
{
"start": 107,
"end": 127,
"text": "(Koehn et al., 2007)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "Evaluation We report results in terms of BLEU and CHRF++, using case-sensitive versions of both metrics. Other settings are kept the same as in the AMR generation experiments ( \u00a74.1). For PB-SMT, we also report the median result of 5 runs, obtained by tuning the model using MERT (Och and Ney, 2002) 5 times.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "There is a deeper issue at stake . Figure 4 : Top: a sentence with its corresponding dependency tree. Bottom: the transformed tree into a Levi graph with additional sequential connections between words (dashed lines). The full graph also contains reverse and self edges, which are omitted in the figure. Table 2 shows the results on the respective test set for both language pairs. The g2s models, which do not account for sequential information, lag behind our baselines. This is in line with the findings of Bastings et al. (2017) , who found that having a BiRNN layer was key to obtain the best results. However, the g2s+ models outperform the baselines in terms of BLEU scores under the same parameter budget, in both single model and ensemble scenarios. This result show that it is possible to incorporate sequential biases in our model without relying on RNNs or any other modification in the architecture. Interestingly, we found different trends when analysing the CHRF++ numbers. In particular, this metric favours the PB-SMT models for both language pairs, while also showing improved performance for s2s in En-Cs. CHRF++ has been shown to better correlate with human judgments compared to BLEU, both at system and sentence level for both language pairs (Bojar et al., 2017) , which motivated our choice as an additional metric. We leave further investigation of this phenomena for future work.",
"cite_spans": [
{
"start": 510,
"end": 532,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
},
{
"start": 1264,
"end": 1284,
"text": "(Bojar et al., 2017)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [
{
"start": 35,
"end": 43,
"text": "Figure 4",
"ref_id": null
},
{
"start": 304,
"end": 311,
"text": "Table 2",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Experimental setup",
"sec_num": "5.1"
},
{
"text": "We also show some of the results reported by Bastings et al. (2017) in Table 2 . Note that their results were based on a different implementation, which may explain some variation in performance. Their BoW+GCN model is the most similar to ours, as it uses only an embedding layer and a GCN encoder. We can see that even our simpler g2s model outperforms their results. A key difference between their approach and ours is the Levi graph transformation and the resulting hidden vectors for edges. We believe their architecture would also benefit from our proposed transformation. In terms of baselines, s2s performs better than their BiRNN model for En-De and comparably for En-Cs, which corroborates that our baselines are strong ones. Finally, our g2s+ single models outperform their BiRNN+GCN results, in particular for En-De, which is further evidence that RNNs are not necessary for obtaining the best performance in this setting.",
"cite_spans": [
{
"start": 45,
"end": 67,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 71,
"end": 78,
"text": "Table 2",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "5.2"
},
{
"text": "An important point about these experiments is that we did not tune the architecture: we simply employed the same model we used in the AMR generation experiments, only adjusting the dimensionality of the encoder to match the capacity of the baselines. We speculate that even better results would be obtained by tuning the architecture to this task. Nevertheless, we still obtained improved performance over our baselines and previous work, underlining the generality of our architecture.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and analysis",
"sec_num": "5.2"
},
{
"text": "Graph-to-sequence modelling Early NLP approaches for this problem were based on Hyperedge Replacement Grammars (Drewes et al., 1997, HRGs) . These grammars assume the transduction problem can be split into rules that map portions of a graph to a set of tokens in the output sequence. In particular, Chiang et al. (2013) defines a parsing algorithm, followed by a complexity analysis, while Jones et al. (2012) report experiments on semantic-based machine translation using HRGs. HRGs were also used in previous work on AMR parsing (Peng et al., 2015) . The main drawback of these grammar-based approaches though is the need for alignments between graph nodes and surface tokens, which are usually not available in gold-standard form.",
"cite_spans": [
{
"start": 111,
"end": 138,
"text": "(Drewes et al., 1997, HRGs)",
"ref_id": null
},
{
"start": 299,
"end": 319,
"text": "Chiang et al. (2013)",
"ref_id": "BIBREF7"
},
{
"start": 390,
"end": 409,
"text": "Jones et al. (2012)",
"ref_id": "BIBREF22"
},
{
"start": 531,
"end": 550,
"text": "(Peng et al., 2015)",
"ref_id": "BIBREF36"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "6"
},
{
"text": "Neural networks for graphs Recurrent networks on general graphs were first proposed un-der the name Graph Neural Networks (Gori et al., 2005; Scarselli et al., 2009) . Our work is based on the architecture proposed by Li et al. (2016) , which add gating mechanisms. The main difference between their work and ours is that they focus on problems that concern the input graph itself such as node classification or path finding while we focus on generating strings. The main alternative for neural-based graph representations is Graph Convolutional Networks (Bruna et al., 2014; Duvenaud et al., 2015; , which have been applied in a range of problems. In NLP, Marcheggiani and Titov (2017) use a similar architecture for Semantic Role Labelling. They use heuristics to mitigate the parameter explosion by grouping edge labels, while we keep the original labels through our Levi graph transformation. An interesting alternative is proposed by Schlichtkrull et al. (2017) , which uses tensor factorisation to reduce the number of parameters.",
"cite_spans": [
{
"start": 122,
"end": 141,
"text": "(Gori et al., 2005;",
"ref_id": "BIBREF16"
},
{
"start": 142,
"end": 165,
"text": "Scarselli et al., 2009)",
"ref_id": "BIBREF40"
},
{
"start": 218,
"end": 234,
"text": "Li et al. (2016)",
"ref_id": "BIBREF30"
},
{
"start": 555,
"end": 575,
"text": "(Bruna et al., 2014;",
"ref_id": "BIBREF5"
},
{
"start": 576,
"end": 598,
"text": "Duvenaud et al., 2015;",
"ref_id": "BIBREF10"
},
{
"start": 939,
"end": 966,
"text": "Schlichtkrull et al. (2017)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "6"
},
{
"text": "Applications Early work on AMR generation employs grammars and transducers (Flanigan et al., 2016; Song et al., 2017) . Linearisation approaches include (Pourdamghani et al., 2016) and (Konstas et al., 2017) , which showed that graph simplification and anonymisation are key to good performance, a procedure we also employ in our work. However, compared to our approach, linearisation incurs in loss of information. MT has a long history of previous work that aims at incorporating syntax (Wu, 1997; Yamada and Knight, 2001; Galley et al., 2004; Liu et al., 2006, inter alia) . This idea has also been investigated in the context of NMT. Bastings et al. (2017) is the most similar work to ours, and we benchmark against their approach in our NMT experiments. Eriguchi et al. (2016) also employs source syntax, but using constituency trees instead. Other approaches have investigated the use of syntax in the target language (Aharoni and Goldberg, 2017; Eriguchi et al., 2017) . Finally, Hashimoto and Tsuruoka (2017) treats source syntax as a latent variable, which can be pretrained using annotated data.",
"cite_spans": [
{
"start": 75,
"end": 98,
"text": "(Flanigan et al., 2016;",
"ref_id": "BIBREF13"
},
{
"start": 99,
"end": 117,
"text": "Song et al., 2017)",
"ref_id": "BIBREF43"
},
{
"start": 153,
"end": 180,
"text": "(Pourdamghani et al., 2016)",
"ref_id": "BIBREF38"
},
{
"start": 185,
"end": 207,
"text": "(Konstas et al., 2017)",
"ref_id": "BIBREF28"
},
{
"start": 489,
"end": 499,
"text": "(Wu, 1997;",
"ref_id": "BIBREF46"
},
{
"start": 500,
"end": 524,
"text": "Yamada and Knight, 2001;",
"ref_id": "BIBREF47"
},
{
"start": 525,
"end": 545,
"text": "Galley et al., 2004;",
"ref_id": "BIBREF14"
},
{
"start": 546,
"end": 575,
"text": "Liu et al., 2006, inter alia)",
"ref_id": null
},
{
"start": 638,
"end": 660,
"text": "Bastings et al. (2017)",
"ref_id": "BIBREF3"
},
{
"start": 759,
"end": 781,
"text": "Eriguchi et al. (2016)",
"ref_id": "BIBREF11"
},
{
"start": 924,
"end": 952,
"text": "(Aharoni and Goldberg, 2017;",
"ref_id": "BIBREF0"
},
{
"start": 953,
"end": 975,
"text": "Eriguchi et al., 2017)",
"ref_id": "BIBREF12"
},
{
"start": 987,
"end": 1016,
"text": "Hashimoto and Tsuruoka (2017)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "6"
},
{
"text": "We proposed a novel encoder-decoder architecture for graph-to-sequence learning, outperforming baselines in two NLP tasks: generation from AMR graphs and syntax-based NMT. Our approach addresses shortcomings from previous work, including loss of information from lineari-sation and parameter explosion. In particular, we showed how graph transformations can solve issues with graph-based networks without changing the underlying architecture. This is the case of the proposed Levi graph transformation, which ensures the decoder can attend to edges as well as nodes, but also to the sequential connections added to the dependency trees in the case of NMT. Overall, because our architecture can work with general graphs, it is straightforward to add linguistic biases in the form of extra node and/or edge information. We believe this is an interesting research direction in terms of applications.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and Conclusion",
"sec_num": "7"
},
{
"text": "Our architecture nevertheless has two major limitations. The first one is that GGNNs have a fixed number of layers, even though graphs can vary in size in terms of number of nodes and edges. A better approach would be to allow the encoder to have a dynamic number of layers, possibly based on the diameter (longest path) in the input graph. The second limitation comes from the Levi graph transformation: because edge labels are represented as nodes they end up sharing the vocabulary and therefore, the same semantic space. This is not ideal, as nodes and edges are different entities. An interesting alternative is Weave Module Networks (Kearnes et al., 2016) , which explicitly decouples node and edge representations without incurring in parameter explosion. Incorporating both ideas to our architecture is an research direction we plan for future work.",
"cite_spans": [
{
"start": 639,
"end": 661,
"text": "(Kearnes et al., 2016)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and Conclusion",
"sec_num": "7"
},
{
"text": "Vaswani et al. (2017) also proposed fixed positional embeddings based on sine and cosine wavelengths. Preliminary experiments showed that this approach did not work in our case: we speculate this is because wavelengths are more suitable to sequential inputs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Formally, a Levi graph is defined over any incidence structure, which is a general concept usually considered in a geometrical context. Graphs are an example of incidence structures but so are points and lines in the Euclidean space, for instance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Larger batch sizes hurt dev performance in our preliminary experiments. There is evidence that small batches can lead to better generalisation performance(Keskar et al., 2017). While this can make training time slower, it was doable in our case since the dataset is small.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We obtained the data from the original authors to ensure results are comparable without any influence from preprocessing steps.6 http://www.statmt.org/wmt16/ translation-task.html 7 https://github.com/tensorflow/models/ tree/master/syntaxnet",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Note that target data is segmented using BPE, which is not the usual setting for PB-SMT. We decided to keep the segmentation to ensure data conditions are the same.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work was supported by the Australian Research Council (DP160102686). The research reported in this paper was partly conducted at the 2017 Frederick Jelinek Memorial Summer Workshop on Speech and Language Technologies, hosted at Carnegie Mellon University and sponsored by Johns Hopkins University with unrestricted gifts from Amazon, Apple, Facebook, Google, and Microsoft. The authors would also like to thank Joost Bastings for sharing the data from his paper's experiments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Towards String-to-Tree Neural Machine Translation",
"authors": [
{
"first": "Roee",
"middle": [],
"last": "Aharoni",
"suffix": ""
},
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "132--140",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Roee Aharoni and Yoav Goldberg. 2017. Towards String-to-Tree Neural Machine Translation. In Pro- ceedings of ACL. pages 132-140.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Abstract Meaning Representation for Sembanking",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Knight",
"suffix": ""
},
{
"first": "Martha",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Nathan",
"middle": [],
"last": "Palmer",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Schneider",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of the 7th Linguistic Annotation Workshop and Interoperability with Discourse",
"volume": "",
"issue": "",
"pages": "178--186",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Knight, Philipp Koehn, Martha Palmer, and Nathan Schneider. 2013. Abstract Meaning Representation for Sembanking. In Proceedings of the 7th Linguis- tic Annotation Workshop and Interoperability with Discourse. pages 178-186.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Graph Convolutional Encoders for Syntax-aware Neural Machine Translation",
"authors": [
{
"first": "Joost",
"middle": [],
"last": "Bastings",
"suffix": ""
},
{
"first": "Ivan",
"middle": [],
"last": "Titov",
"suffix": ""
},
{
"first": "Wilker",
"middle": [],
"last": "Aziz",
"suffix": ""
},
{
"first": "Diego",
"middle": [],
"last": "Marcheggiani",
"suffix": ""
},
{
"first": "Khalil",
"middle": [],
"last": "Sima",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "1947--1957",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joost Bastings, Ivan Titov, Wilker Aziz, Diego Marcheggiani, and Khalil Sima'an. 2017. Graph Convolutional Encoders for Syntax-aware Neural Machine Translation. In Proceedings of EMNLP. pages 1947-1957.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Results of the WMT17 Metrics Shared Task",
"authors": [
{
"first": "Ondej",
"middle": [],
"last": "Bojar",
"suffix": ""
},
{
"first": "Yvette",
"middle": [],
"last": "Graham",
"suffix": ""
},
{
"first": "Amir",
"middle": [],
"last": "Kamran",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of WMT",
"volume": "2",
"issue": "",
"pages": "293--301",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ondej Bojar, Yvette Graham, and Amir Kamran. 2017. Results of the WMT17 Metrics Shared Task. In Pro- ceedings of WMT. volume 2, pages 293-301.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Spectral Networks and Locally Connected Networks on Graphs",
"authors": [
{
"first": "Joan",
"middle": [],
"last": "Bruna",
"suffix": ""
},
{
"first": "Wojciech",
"middle": [],
"last": "Zaremba",
"suffix": ""
},
{
"first": "Arthur",
"middle": [],
"last": "Szlam",
"suffix": ""
},
{
"first": "Yann",
"middle": [],
"last": "Lecun",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of ICLR",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joan Bruna, Wojciech Zaremba, Arthur Szlam, and Yann LeCun. 2014. Spectral Networks and Locally Connected Networks on Graphs. In Proceedings of ICLR. page 14.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems",
"authors": [
{
"first": "Tianqi",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Mu",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Yutian",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Min",
"middle": [],
"last": "Lin",
"suffix": ""
},
{
"first": "Naiyan",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Minjie",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Tianjun",
"middle": [],
"last": "Xiao",
"suffix": ""
},
{
"first": "Bing",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Chiyuan",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Zheng",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the Workshop on Machine Learning Systems",
"volume": "",
"issue": "",
"pages": "1--6",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tianqi Chen, Mu Li, Yutian Li, Min Lin, Naiyan Wang, Minjie Wang, Tianjun Xiao, Bing Xu, Chiyuan Zhang, and Zheng Zhang. 2015. MXNet: A Flexible and Efficient Machine Learning Library for Hetero- geneous Distributed Systems. In Proceedings of the Workshop on Machine Learning Systems. pages 1-6.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Parsing Graphs with Hyperedge Replacement Grammars",
"authors": [
{
"first": "David",
"middle": [],
"last": "Chiang",
"suffix": ""
},
{
"first": "Jacob",
"middle": [],
"last": "Andreas",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Bauer",
"suffix": ""
},
{
"first": "Karl",
"middle": [
"Moritz"
],
"last": "Hermann",
"suffix": ""
},
{
"first": "Bevan",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "924--932",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Chiang, Jacob Andreas, Daniel Bauer, Karl Moritz Hermann, Bevan Jones, and Kevin Knight. 2013. Parsing Graphs with Hyperedge Replacement Grammars. In Proceedings of ACL. pages 924-932.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Learning Phrase Representations using RNN Encoder-Decoder for Statistical Machine Translation",
"authors": [
{
"first": "Kyunghyun",
"middle": [],
"last": "Cho",
"suffix": ""
},
{
"first": "Bart",
"middle": [],
"last": "Van Merrienboer",
"suffix": ""
},
{
"first": "Caglar",
"middle": [],
"last": "Gulcehre",
"suffix": ""
},
{
"first": "Dzmitry",
"middle": [],
"last": "Bahdanau",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "1724--1734",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kyunghyun Cho, Bart van Merrienboer, Caglar Gul- cehre, Dzmitry Bahdanau, Fethi Bougares, Hol- ger Schwenk, and Yoshua Bengio. 2014. Learn- ing Phrase Representations using RNN Encoder- Decoder for Statistical Machine Translation. In Pro- ceedings of EMNLP. pages 1724-1734.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Hyperedge Replacement Graph Grammars. Handbook of Graph Grammars and Computing by Graph Transformation",
"authors": [
{
"first": "Frank",
"middle": [],
"last": "Drewes",
"suffix": ""
},
{
"first": "Hans",
"middle": [
"J\u00f6rg"
],
"last": "Kreowski",
"suffix": ""
},
{
"first": "Annegret",
"middle": [],
"last": "Habel",
"suffix": ""
}
],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Frank Drewes, Hans J\u00f6rg Kreowski, and Annegret Ha- bel. 1997. Hyperedge Replacement Graph Gram- mars. Handbook of Graph Grammars and Comput- ing by Graph Transformation .",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Convolutional Networks on Graphs for Learning Molecular Fingerprints",
"authors": [
{
"first": "David",
"middle": [],
"last": "Duvenaud",
"suffix": ""
},
{
"first": "Dougal",
"middle": [],
"last": "Maclaurin",
"suffix": ""
},
{
"first": "Jorge",
"middle": [],
"last": "Aguilera-Iparraguirre",
"suffix": ""
},
{
"first": "Rafael",
"middle": [],
"last": "G\u00f3mez-Bombarelli",
"suffix": ""
},
{
"first": "Timothy",
"middle": [],
"last": "Hirzel",
"suffix": ""
},
{
"first": "Al\u00e1n",
"middle": [],
"last": "Aspuru-Guzik",
"suffix": ""
},
{
"first": "Ryan P",
"middle": [],
"last": "Adams",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of NIPS",
"volume": "",
"issue": "",
"pages": "2215--2223",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Duvenaud, Dougal Maclaurin, Jorge Aguilera- Iparraguirre, Rafael G\u00f3mez-Bombarelli, Timothy Hirzel, Al\u00e1n Aspuru-Guzik, and Ryan P Adams. 2015. Convolutional Networks on Graphs for Learning Molecular Fingerprints. In Proceedings of NIPS. pages 2215-2223.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Tree-to-Sequence Attentional Neural Machine Translation",
"authors": [
{
"first": "Akiko",
"middle": [],
"last": "Eriguchi",
"suffix": ""
},
{
"first": "Kazuma",
"middle": [],
"last": "Hashimoto",
"suffix": ""
},
{
"first": "Yoshimasa",
"middle": [],
"last": "Tsuruoka",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Akiko Eriguchi, Kazuma Hashimoto, and Yoshimasa Tsuruoka. 2016. Tree-to-Sequence Attentional Neu- ral Machine Translation. In Proceedings of ACL.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Learning to Parse and Translate Improves Neural Machine Translation",
"authors": [
{
"first": "Akiko",
"middle": [],
"last": "Eriguchi",
"suffix": ""
},
{
"first": "Yoshimasa",
"middle": [],
"last": "Tsuruoka",
"suffix": ""
},
{
"first": "Kyunghyun",
"middle": [],
"last": "Cho",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Akiko Eriguchi, Yoshimasa Tsuruoka, and Kyunghyun Cho. 2017. Learning to Parse and Translate Im- proves Neural Machine Translation. In Proceedings of ACL.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Generation from Abstract Meaning Representation using Tree Transducers",
"authors": [
{
"first": "Jeffrey",
"middle": [],
"last": "Flanigan",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Noah",
"middle": [
"A"
],
"last": "Smith",
"suffix": ""
},
{
"first": "Jaime",
"middle": [],
"last": "Carbonell",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of NAACL",
"volume": "",
"issue": "",
"pages": "731--739",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jeffrey Flanigan, Chris Dyer, Noah A. Smith, and Jaime Carbonell. 2016. Generation from Abstract Meaning Representation using Tree Transducers. In Proceedings of NAACL. pages 731-739.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "What's in a translation rule?",
"authors": [
{
"first": "Michel",
"middle": [],
"last": "Galley",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Hopkins",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Marcu",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of NAACL",
"volume": "",
"issue": "",
"pages": "273--280",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michel Galley, Mark Hopkins, Kevin Knight, and Daniel Marcu. 2004. What's in a translation rule? In Proceedings of NAACL. pages 273-280.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Convolutional Sequence to Sequence Learning",
"authors": [
{
"first": "Jonas",
"middle": [],
"last": "Gehring",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Auli",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Grangier",
"suffix": ""
},
{
"first": "Denis",
"middle": [],
"last": "Yarats",
"suffix": ""
},
{
"first": "Yann",
"middle": [
"N"
],
"last": "Dauphin",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jonas Gehring, Michael Auli, David Grangier, Denis Yarats, and Yann N. Dauphin. 2017. Convolutional Sequence to Sequence Learning. arXiv preprint .",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "A New Model for Learning in Graph Domains",
"authors": [
{
"first": "Marco",
"middle": [],
"last": "Gori",
"suffix": ""
},
{
"first": "Gabriele",
"middle": [],
"last": "Monfardini",
"suffix": ""
},
{
"first": "Franco",
"middle": [],
"last": "Scarselli",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of IJCNN",
"volume": "2",
"issue": "",
"pages": "729--734",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marco Gori, Gabriele Monfardini, and Franco Scarselli. 2005. A New Model for Learning in Graph Domains. In Proceedings of IJCNN. vol- ume 2, pages 729-734.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Randomized Significance Tests in Machine Translation",
"authors": [
{
"first": "Yvette",
"middle": [],
"last": "Graham",
"suffix": ""
},
{
"first": "Nitika",
"middle": [],
"last": "Mathur",
"suffix": ""
},
{
"first": "Timothy",
"middle": [],
"last": "Baldwin",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of WMT",
"volume": "",
"issue": "",
"pages": "266--274",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yvette Graham, Nitika Mathur, and Timothy Baldwin. 2014. Randomized Significance Tests in Machine Translation. In Proceedings of WMT. pages 266- 274.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Handbook of Graph Theory",
"authors": [
{
"first": "Jonathan",
"middle": [],
"last": "Gross",
"suffix": ""
},
{
"first": "Jay",
"middle": [],
"last": "Yellen",
"suffix": ""
}
],
"year": 2004,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jonathan Gross and Jay Yellen, editors. 2004. Hand- book of Graph Theory. CRC Press.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Neural Machine Translation with Source-Side Latent Graph Parsing",
"authors": [
{
"first": "Kazuma",
"middle": [],
"last": "Hashimoto",
"suffix": ""
},
{
"first": "Yoshimasa",
"middle": [],
"last": "Tsuruoka",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "125--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kazuma Hashimoto and Yoshimasa Tsuruoka. 2017. Neural Machine Translation with Source-Side La- tent Graph Parsing. In Proceedings of EMNLP. pages 125-135.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Sockeye: A Toolkit for Neural Machine Translation. arXiv preprint pages",
"authors": [
{
"first": "Felix",
"middle": [],
"last": "Hieber",
"suffix": ""
},
{
"first": "Tobias",
"middle": [],
"last": "Domhan",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Denkowski",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Vilar",
"suffix": ""
},
{
"first": "Artem",
"middle": [],
"last": "Sokolov",
"suffix": ""
},
{
"first": "Ann",
"middle": [],
"last": "Clifton",
"suffix": ""
},
{
"first": "Matt",
"middle": [],
"last": "Post",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "1--18",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Felix Hieber, Tobias Domhan, Michael Denkowski, David Vilar, Artem Sokolov, Ann Clifton, and Matt Post. 2017. Sockeye: A Toolkit for Neural Machine Translation. arXiv preprint pages 1-18.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Long Short-Term Memory",
"authors": [
{
"first": "Sepp",
"middle": [],
"last": "Hochreiter",
"suffix": ""
},
{
"first": "J\u00fcrgen",
"middle": [],
"last": "Schmidhuber",
"suffix": ""
}
],
"year": 1997,
"venue": "Neural Computation",
"volume": "9",
"issue": "8",
"pages": "1735--1780",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sepp Hochreiter and J\u00fcrgen Schmidhuber. 1997. Long Short-Term Memory. Neural Computation 9(8):1735-1780.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Semantics-Based Machine Translation with Hyperedge Replacement Grammars",
"authors": [
{
"first": "Bevan",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Jacob",
"middle": [],
"last": "Andreas",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Bauer",
"suffix": ""
},
{
"first": "Karl",
"middle": [
"Moritz"
],
"last": "Hermann",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of COLING",
"volume": "",
"issue": "",
"pages": "1359--1376",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bevan Jones, Jacob Andreas, Daniel Bauer, Karl Moritz Hermann, and Kevin Knight. 2012. Semantics-Based Machine Translation with Hyper- edge Replacement Grammars. In Proceedings of COLING. pages 1359-1376.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Molecular Graph Convolutions: Moving Beyond Fingerprints",
"authors": [
{
"first": "Steven",
"middle": [],
"last": "Kearnes",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Mccloskey",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Berndl",
"suffix": ""
},
{
"first": "Vijay",
"middle": [],
"last": "Pande",
"suffix": ""
},
{
"first": "Patrick",
"middle": [],
"last": "Riley",
"suffix": ""
}
],
"year": 2016,
"venue": "Journal of Computer-Aided Molecular Design",
"volume": "30",
"issue": "8",
"pages": "595--608",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steven Kearnes, Kevin McCloskey, Marc Berndl, Vi- jay Pande, and Patrick Riley. 2016. Molecu- lar Graph Convolutions: Moving Beyond Finger- prints. Journal of Computer-Aided Molecular De- sign 30(8):595-608.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "On Large-Batch Training for Deep Learning: Generalization Gap and Sharp Minima",
"authors": [
{
"first": "Dheevatsa",
"middle": [],
"last": "Nitish Shirish Keskar",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mudigere",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ICLR",
"volume": "",
"issue": "",
"pages": "1--16",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nitish Shirish Keskar, Dheevatsa Mudigere, Jorge No- cedal, Mikhail Smelyanskiy, and Ping Tak Peter Tang. 2017. On Large-Batch Training for Deep Learning: Generalization Gap and Sharp Minima. In Proceedings of ICLR. pages 1-16.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Adam: A Method for Stochastic Optimization",
"authors": [
{
"first": "P",
"middle": [],
"last": "Diederik",
"suffix": ""
},
{
"first": "Jimmy",
"middle": [],
"last": "Kingma",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Ba",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of ICLR",
"volume": "",
"issue": "",
"pages": "1--15",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Diederik P. Kingma and Jimmy Ba. 2015. Adam: A Method for Stochastic Optimization. In Proceed- ings of ICLR. pages 1-15.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Semi-Supervised Classification with Graph Convolutional Networks",
"authors": [
{
"first": "N",
"middle": [],
"last": "Thomas",
"suffix": ""
},
{
"first": "Max",
"middle": [],
"last": "Kipf",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Welling",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ICLR",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thomas N. Kipf and Max Welling. 2017. Semi- Supervised Classification with Graph Convolutional Networks. In Proceedings of ICLR.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Moses: Open source toolkit for statistical machine translation",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Hoang",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
},
{
"first": "Marcello",
"middle": [],
"last": "Federico",
"suffix": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Bertoldi",
"suffix": ""
},
{
"first": "Brooke",
"middle": [],
"last": "Cowan",
"suffix": ""
},
{
"first": "Wade",
"middle": [],
"last": "Shen",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of ACL Demo Session",
"volume": "",
"issue": "",
"pages": "177--180",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondrej Bojar, Alexandra Constantin, and Evan Herbst. 2007. Moses: Open source toolkit for statistical machine translation. In Proceedings of ACL Demo Session. pages 177-180.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Neural AMR: Sequence-to-Sequence Models for Parsing and Generation",
"authors": [
{
"first": "Ioannis",
"middle": [],
"last": "Konstas",
"suffix": ""
},
{
"first": "Srinivasan",
"middle": [],
"last": "Iyer",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Yatskar",
"suffix": ""
},
{
"first": "Yejin",
"middle": [],
"last": "Choi",
"suffix": ""
},
{
"first": "Luke",
"middle": [],
"last": "Zettlemoyer",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "146--157",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ioannis Konstas, Srinivasan Iyer, Mark Yatskar, Yejin Choi, and Luke Zettlemoyer. 2017. Neural AMR: Sequence-to-Sequence Models for Parsing and Gen- eration. In Proceedings of ACL. pages 146-157.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Finite Geometrical Systems",
"authors": [
{
"first": "Friedrich",
"middle": [],
"last": "Wilhelm",
"suffix": ""
},
{
"first": "Levi",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 1942,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Friedrich Wilhelm Levi. 1942. Finite Geometrical Sys- tems.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Gated Graph Sequence Neural Networks",
"authors": [
{
"first": "Yujia",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Tarlow",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Brockschmidt",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Zemel",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of ICLR. 1",
"volume": "",
"issue": "",
"pages": "1--20",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard Zemel. 2016. Gated Graph Sequence Neu- ral Networks. In Proceedings of ICLR. 1, pages 1- 20.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Treeto-string alignment template for statistical machine translation",
"authors": [
{
"first": "Yang",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Qun",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Shouxun",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the ACL -ACL '06",
"volume": "",
"issue": "",
"pages": "609--616",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yang Liu, Qun Liu, and Shouxun Lin. 2006. Tree- to-string alignment template for statistical machine translation. In Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the ACL -ACL '06. pages 609-616.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Effective Approaches to Attentionbased Neural Machine Translation",
"authors": [
{
"first": "Minh-Thang",
"middle": [],
"last": "Luong",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Pham",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "1412--1421",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Minh-Thang Luong, Hieu Pham, and Christopher D. Manning. 2015. Effective Approaches to Attention- based Neural Machine Translation. In Proceedings of EMNLP. pages 1412-1421.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Encoding Sentences with Graph Convolutional Networks for Semantic Role Labeling",
"authors": [
{
"first": "Diego",
"middle": [],
"last": "Marcheggiani",
"suffix": ""
},
{
"first": "Ivan",
"middle": [],
"last": "Titov",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Diego Marcheggiani and Ivan Titov. 2017. Encod- ing Sentences with Graph Convolutional Networks for Semantic Role Labeling. In Proceedings of EMNLP.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Discriminative training and maximum entropy models for statistical machine translation",
"authors": [
{
"first": "Josef",
"middle": [],
"last": "Franz",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Och",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the 40th Annual Meeting on Association for Computational Linguistics -ACL '02",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"DOI": [
"10.3115/1073083.1073133"
]
},
"num": null,
"urls": [],
"raw_text": "Franz Josef Och and Hermann Ney. 2002. Dis- criminative training and maximum entropy mod- els for statistical machine translation. In Proceed- ings of the 40th Annual Meeting on Association for Computational Linguistics -ACL '02. page 295. https://doi.org/10.3115/1073083.1073133.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Bleu: a method for automatic evaluation of machine translation",
"authors": [
{
"first": "Kishore",
"middle": [],
"last": "Papineni",
"suffix": ""
},
{
"first": "Salim",
"middle": [],
"last": "Roukos",
"suffix": ""
},
{
"first": "Todd",
"middle": [],
"last": "Ward",
"suffix": ""
},
{
"first": "Wei-Jing",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "311--318",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kishore Papineni, Salim Roukos, Todd Ward, and Wei- Jing Zhu. 2001. Bleu: a method for automatic eval- uation of machine translation. In Proceedings of ACL. pages 311-318.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "A Synchronous Hyperedge Replacement Grammar based approach for AMR parsing",
"authors": [
{
"first": "Xiaochang",
"middle": [],
"last": "Peng",
"suffix": ""
},
{
"first": "Linfeng",
"middle": [],
"last": "Song",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Gildea",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of CoNLL",
"volume": "",
"issue": "",
"pages": "32--41",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xiaochang Peng, Linfeng Song, and Daniel Gildea. 2015. A Synchronous Hyperedge Replacement Grammar based approach for AMR parsing. In Pro- ceedings of CoNLL. pages 32-41.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "chrF ++: words helping character n-grams",
"authors": [
{
"first": "Maja",
"middle": [],
"last": "Popovi\u0107",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of WMT",
"volume": "",
"issue": "",
"pages": "612--618",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Maja Popovi\u0107. 2017. chrF ++: words helping character n-grams. In Proceedings of WMT. pages 612-618.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Generating English from Abstract Meaning Representations",
"authors": [
{
"first": "Nima",
"middle": [],
"last": "Pourdamghani",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
},
{
"first": "Ulf",
"middle": [],
"last": "Hermjakob",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of INLG",
"volume": "0",
"issue": "",
"pages": "21--25",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nima Pourdamghani, Kevin Knight, and Ulf Herm- jakob. 2016. Generating English from Abstract Meaning Representations. In Proceedings of INLG. volume 0, pages 21-25.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Reporting Score Distributions Makes a Difference: Performance Study of LSTM-networks for Sequence Tagging",
"authors": [
{
"first": "Nils",
"middle": [],
"last": "Reimers",
"suffix": ""
},
{
"first": "Iryna",
"middle": [],
"last": "Gurevych",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "338--348",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nils Reimers and Iryna Gurevych. 2017. Reporting Score Distributions Makes a Difference: Perfor- mance Study of LSTM-networks for Sequence Tag- ging. In Proceedings of EMNLP. pages 338-348.",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "The Graph Neural Network Model",
"authors": [
{
"first": "Franco",
"middle": [],
"last": "Scarselli",
"suffix": ""
},
{
"first": "Marco",
"middle": [],
"last": "Gori",
"suffix": ""
},
{
"first": "Ah",
"middle": [],
"last": "Ching Tsoi",
"suffix": ""
},
{
"first": "Gabriele",
"middle": [],
"last": "Monfardini",
"suffix": ""
}
],
"year": 2009,
"venue": "IEEE Transactions on Neural Networks",
"volume": "20",
"issue": "1",
"pages": "61--80",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Franco Scarselli, Marco Gori, Ah Ching Tsoi, and Gabriele Monfardini. 2009. The Graph Neural Net- work Model. IEEE Transactions on Neural Net- works 20(1):61-80.",
"links": null
},
"BIBREF42": {
"ref_id": "b42",
"title": "Neural Machine Translation of Rare Words with Subword Units",
"authors": [
{
"first": "Rico",
"middle": [],
"last": "Sennrich",
"suffix": ""
},
{
"first": "Barry",
"middle": [],
"last": "Haddow",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "1715--1725",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rico Sennrich, Barry Haddow, and Alexandra Birch. 2016. Neural Machine Translation of Rare Words with Subword Units. In Proceedings of ACL. pages 1715-1725.",
"links": null
},
"BIBREF43": {
"ref_id": "b43",
"title": "AMR-to-text Generation with Synchronous Node Replacement Grammar",
"authors": [
{
"first": "Linfeng",
"middle": [],
"last": "Song",
"suffix": ""
},
{
"first": "Xiaochang",
"middle": [],
"last": "Peng",
"suffix": ""
},
{
"first": "Yue",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Zhiguo",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Gildea",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "7--13",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Linfeng Song, Xiaochang Peng, Yue Zhang, Zhiguo Wang, and Daniel Gildea. 2017. AMR-to-text Gen- eration with Synchronous Node Replacement Gram- mar. In Proceedings of ACL. pages 7-13.",
"links": null
},
"BIBREF44": {
"ref_id": "b44",
"title": "Dropout: A Simple Way to Prevent Neural Networks from Overfitting",
"authors": [
{
"first": "Nitish",
"middle": [],
"last": "Srivastava",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Hinton",
"suffix": ""
},
{
"first": "Alex",
"middle": [],
"last": "Krizhevsky",
"suffix": ""
},
{
"first": "Ilya",
"middle": [],
"last": "Sutskever",
"suffix": ""
},
{
"first": "Ruslan",
"middle": [],
"last": "Salakhutdinov",
"suffix": ""
}
],
"year": 2014,
"venue": "Journal of Machine Learning Research",
"volume": "15",
"issue": "",
"pages": "1929--1958",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. 2014. Dropout: A Simple Way to Prevent Neural Networks from Overfitting. Journal of Machine Learning Re- search 15:1929-1958.",
"links": null
},
"BIBREF45": {
"ref_id": "b45",
"title": "Attention Is All You Need",
"authors": [
{
"first": "Ashish",
"middle": [],
"last": "Vaswani",
"suffix": ""
},
{
"first": "Noam",
"middle": [],
"last": "Shazeer",
"suffix": ""
},
{
"first": "Niki",
"middle": [],
"last": "Parmar",
"suffix": ""
},
{
"first": "Jakob",
"middle": [],
"last": "Uszkoreit",
"suffix": ""
},
{
"first": "Llion",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Aidan",
"middle": [
"N"
],
"last": "Gomez",
"suffix": ""
},
{
"first": "Lukasz",
"middle": [],
"last": "Kaiser",
"suffix": ""
},
{
"first": "Illia",
"middle": [],
"last": "Polosukhin",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of NIPS",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. 2017. Attention Is All You Need. In Proceedings of NIPS.",
"links": null
},
"BIBREF46": {
"ref_id": "b46",
"title": "Stochastic inversion transduction grammars and bilingual parsing of parallel corpora",
"authors": [
{
"first": "Dekai",
"middle": [],
"last": "Wu",
"suffix": ""
}
],
"year": 1997,
"venue": "Computational Linguistics",
"volume": "23",
"issue": "3",
"pages": "377--403",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dekai Wu. 1997. Stochastic inversion transduction grammars and bilingual parsing of parallel corpora. Computational Linguistics 23(3):377-403.",
"links": null
},
"BIBREF47": {
"ref_id": "b47",
"title": "A Syntaxbased Statistical Translation Model",
"authors": [
{
"first": "Kenji",
"middle": [],
"last": "Yamada",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "523--530",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kenji Yamada and Kevin Knight. 2001. A Syntax- based Statistical Translation Model. In Proceedings of ACL. pages 523-530.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "Top: the AMR graph from Figure 1 transformed into its corresponding Levi graph. Bottom: Levi graph with added reverse and self edges (colors represent different edge labels).",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF1": {
"text": "Example showing overgeneration due to reentrancies. Top: original AMR graph with key reentrancies highlighted. Bottom: reference and outputs generated by the s2s and g2s models, highlighting the overgeneration phenomena.",
"uris": null,
"type_str": "figure",
"num": null
},
"TABREF2": {
"content": "<table><tr><td>: Results for syntax-based NMT on the test</td></tr><tr><td>sets. All score differences between our models and</td></tr><tr><td>the corresponding baselines are significantly dif-</td></tr><tr><td>ferent (p&lt;0.05), including the negative CHRF++</td></tr><tr><td>result for En-Cs.</td></tr></table>",
"html": null,
"num": null,
"type_str": "table",
"text": ""
}
}
}
}