|
{ |
|
"paper_id": "S15-1031", |
|
"header": { |
|
"generated_with": "S2ORC 1.0.0", |
|
"date_generated": "2023-01-19T15:38:25.962400Z" |
|
}, |
|
"title": "The complexity of finding the maximum spanning DAG and other restrictions for DAG parsing of natural language", |
|
"authors": [ |
|
{ |
|
"first": "Natalie", |
|
"middle": [], |
|
"last": "Schluter", |
|
"suffix": "", |
|
"affiliation": { |
|
"laboratory": "", |
|
"institution": "University of Copenhagen Copenhagen", |
|
"location": { |
|
"country": "Denmark" |
|
} |
|
}, |
|
"email": "[email protected]" |
|
} |
|
], |
|
"year": "", |
|
"venue": null, |
|
"identifiers": {}, |
|
"abstract": "Recently, there has been renewed interest in semantic dependency parsing, among which one of the paradigms focuses on parsing directed acyclic graphs (DAGs). Consideration of the decoding problem in natural language semantic dependency parsing as finding a maximum spanning DAG of a weighted directed graph carries many complexities. In particular, the computational complexity (and approximability) of the problem has not been addressed in the literature to date. This paper helps to fill this gap, showing that this general problem is APX-hard, and is NP-hard even under the planar restriction, in the graphtheoretic sense. On the other hand, we show that under the restriction of projectivity, the problem has a straightforward O(n 3) algorithm. We also give some empirical evidence of the algorithmic importance of these graph restrictions, on data from the SemEval 2014 task 8 on Broad Coverage Semantic Dependency Parsing.", |
|
"pdf_parse": { |
|
"paper_id": "S15-1031", |
|
"_pdf_hash": "", |
|
"abstract": [ |
|
{ |
|
"text": "Recently, there has been renewed interest in semantic dependency parsing, among which one of the paradigms focuses on parsing directed acyclic graphs (DAGs). Consideration of the decoding problem in natural language semantic dependency parsing as finding a maximum spanning DAG of a weighted directed graph carries many complexities. In particular, the computational complexity (and approximability) of the problem has not been addressed in the literature to date. This paper helps to fill this gap, showing that this general problem is APX-hard, and is NP-hard even under the planar restriction, in the graphtheoretic sense. On the other hand, we show that under the restriction of projectivity, the problem has a straightforward O(n 3) algorithm. We also give some empirical evidence of the algorithmic importance of these graph restrictions, on data from the SemEval 2014 task 8 on Broad Coverage Semantic Dependency Parsing.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Abstract", |
|
"sec_num": null |
|
} |
|
], |
|
"body_text": [ |
|
{ |
|
"text": "Consideration of the decoding problem in natural language semantic dependency parsing as finding a maximum spanning DAG of a weighted directed graph carries many complexities that have not been addressed in the literature to date. Amongst these are the problem's computational complexity (and its approximability). The decoding problem for semantic dependency parsing was first introduced as the maximum spanning directed acyclic graph problem (MSDAG) by McDonald and Pereira (2006) , where it is stated to be NP-hard. 1 The MSDAG problem asks for the highest weighted spanning sub-DAG of an input weighted digraph.", |
|
"cite_spans": [ |
|
{ |
|
"start": 455, |
|
"end": 482, |
|
"text": "McDonald and Pereira (2006)", |
|
"ref_id": "BIBREF18" |
|
}, |
|
{ |
|
"start": 519, |
|
"end": 520, |
|
"text": "1", |
|
"ref_id": "BIBREF0" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "In this paper, we explain the APX-hardness of MSDAG, by relating it to the almost identical minimum weighted feedback arc set and maximum weighted acyclic subgraph problems. The proof of MSDAG's APX-hardness seems to discourage its use for decoding in semantic dependency parsing. However, unlike in syntactic dependency (tree) parse decoding, where projective decoding given by Eisner (1996) 's algorithm has a slightly higher computational complexity (O(n 3 )) than the nonprojective (Tarjan) maximum spanning tree algorithm (O(n 2 )) (Tarjan, 1977; Chu and Liu, 1965; Edmonds, 1967; McDonald et al., 2005) , finding the maximum spanning projective dependency DAG is tractable and can be found in time O(n 3 ), contrary to its APX-hard non-projective counterpart.", |
|
"cite_spans": [ |
|
{ |
|
"start": 379, |
|
"end": 392, |
|
"text": "Eisner (1996)", |
|
"ref_id": "BIBREF8" |
|
}, |
|
{ |
|
"start": 486, |
|
"end": 494, |
|
"text": "(Tarjan)", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 537, |
|
"end": 551, |
|
"text": "(Tarjan, 1977;", |
|
"ref_id": "BIBREF26" |
|
}, |
|
{ |
|
"start": 552, |
|
"end": 570, |
|
"text": "Chu and Liu, 1965;", |
|
"ref_id": "BIBREF5" |
|
}, |
|
{ |
|
"start": 571, |
|
"end": 585, |
|
"text": "Edmonds, 1967;", |
|
"ref_id": "BIBREF7" |
|
}, |
|
{ |
|
"start": 586, |
|
"end": 608, |
|
"text": "McDonald et al., 2005)", |
|
"ref_id": "BIBREF20" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Projective MSDAG has been referred to in the semantic dependency parsing literature as \"planar MSDAG\", which is an unfortunate mismatch with long-established graph theoretical terminology, that we need in this paper. As we discuss below, the planar MSDAG problem is in fact NP-hard, where \"planar\" is used in the graph theoretical sense. We generalise the definition of projectivity from tree models of syntax theory, which forbids crossing edges, to digraphs.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "The projectivity restriction itself has not been linguistically motivated to date. However, an efficient exact algorithm for this restriction would pose a starting point for various relaxations of the definition (also known as mild non-projectivity) that reflect linguistic description of the data, as has been done for the Eisner algorithm (in for example (Bodirsky et al., 2005; G\u00f3mez-Rodr\u00edguez et al., 2011; Pitler et al., 2012; Pitler et al., 2013; Satta and Kuhlmann, 2013) ). This projectivity restriction has been inherent in transition-based approaches to semantic dependency parsing (for example, in (Sagae and Tsujii, 2008; Titov et al., 2009) ), without any study of the complexity nor proof of the power of the automaton models in recognising all projective DAGs. So, in terms of computational efficiency, we provide theoretical justification for the already used restriction of projectivity in DAG parsing, exhibiting a dynamic programming algorithm for this task, which runs in polynomial time.", |
|
"cite_spans": [ |
|
{ |
|
"start": 357, |
|
"end": 380, |
|
"text": "(Bodirsky et al., 2005;", |
|
"ref_id": "BIBREF3" |
|
}, |
|
{ |
|
"start": 381, |
|
"end": 410, |
|
"text": "G\u00f3mez-Rodr\u00edguez et al., 2011;", |
|
"ref_id": "BIBREF11" |
|
}, |
|
{ |
|
"start": 411, |
|
"end": 431, |
|
"text": "Pitler et al., 2012;", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 432, |
|
"end": 452, |
|
"text": "Pitler et al., 2013;", |
|
"ref_id": "BIBREF21" |
|
}, |
|
{ |
|
"start": 453, |
|
"end": 478, |
|
"text": "Satta and Kuhlmann, 2013)", |
|
"ref_id": "BIBREF23" |
|
}, |
|
{ |
|
"start": 609, |
|
"end": 633, |
|
"text": "(Sagae and Tsujii, 2008;", |
|
"ref_id": "BIBREF22" |
|
}, |
|
{ |
|
"start": 634, |
|
"end": 653, |
|
"text": "Titov et al., 2009)", |
|
"ref_id": "BIBREF27" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Previous automaton approaches to DAG parsing can roughly be separated into two camps: one similar to (Sagae and Tsujii, 2008) , which assumes projectivity of graphs in the data and parses without carrying out any transformation to relax the constraint of projectivity, and another similar to (Titov et al., 2009) , which attempts (online) to find a re-ordering of the words in the sentence such that the resulting graph is projective. The latter approach assumes, as we will explain, precisely outerplanarity of the graphs, which, it turns out, is also NP-hard (Cf.", |
|
"cite_spans": [ |
|
{ |
|
"start": 101, |
|
"end": 125, |
|
"text": "(Sagae and Tsujii, 2008)", |
|
"ref_id": "BIBREF22" |
|
}, |
|
{ |
|
"start": 292, |
|
"end": 312, |
|
"text": "(Titov et al., 2009)", |
|
"ref_id": "BIBREF27" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "\u00a72 and \u00a77). With respect to the data that we consider here, it turns out that the assumption of graph outerplanarity is well represented (almost all graphs among three data sets being outerplanar), whereas the percentage of projective graphs differs greatly from one dataset to another (from 57% to 84%, Cf. Section 5).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "The projective MSDAG algorithm presented here is a first-order decoding algorithm, and empirical research on semantic parsing seems to have already gone beyond this (for example, in (Martins and Almeida, 2014)); moreover, first-order decoding using MSDAG in general seems not to be appropriate (Schluter, 2014) , though the empirical work presented by Martins and Almeida (2014) on digraph decoding using a second order model suggests the relevance of higher-order DAG decoding in semantic dependency parsing. Manufacturing higher-order parsing algorithms in the sense of (McDonald and Satta, 2007; Carreras, 2007) from the tree decoding literature, based on the algorithm presented here is straightforward. And we believe that it is these latter algorithms, rather, that would provide the basis for empirical studies based on the generally theoretical research presented here.", |
|
"cite_spans": [ |
|
{ |
|
"start": 294, |
|
"end": 310, |
|
"text": "(Schluter, 2014)", |
|
"ref_id": "BIBREF25" |
|
}, |
|
{ |
|
"start": 586, |
|
"end": 598, |
|
"text": "Satta, 2007;", |
|
"ref_id": "BIBREF19" |
|
}, |
|
{ |
|
"start": 599, |
|
"end": 614, |
|
"text": "Carreras, 2007)", |
|
"ref_id": "BIBREF4" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "A graph is called planar if it can be drawn in the plane with no crossing edges. Each maximal region of the plane surrounded by edges of the planar graph drawn in the plane is called a face. There is one outer or unbounded face and some number of inner or bounded faces. If a connected planar graph can be written in the plane so that all vertices are on the outer face, then we call the graph outerplanar.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preliminaries", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "A connected component of a graph is a maximal subgraph in which any two vertices are connected to each other by a path. A digraph is a directed graph (where edges have an orientation). A DAG is a digraph without any directed cycles. Consider the underlying undirected graph H of a digraph G. A weakly connected component of G is a maximal sub-digraph whose underlying undirected graph is a connected component of H.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preliminaries", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "[i, j] := {i, i + 1, . . . , j \u2212 1, j}, for i \u2264 j, and [i] := [1, i].", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "In this paper, edge weights can be positive or negative and not zero, unless otherwise stated.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Hardness of approximability. APX is the class of all NP optimisation problems that can be solved in polynomial time with approximation ratio bounded by some constant. A problem is APX-hard if there is a PTAS-reduction from every problem in APX to that problem. 2 In this paper, we use a simpler type of PTAS-reduction called an L-reduction (linear reduction), which intuitively is a mapping between problems so that (approximate) solutions differ only by some constant factor. Any L-reduction is also a PTAS-reduction (but not vice versa). ", |
|
"cite_spans": [ |
|
{ |
|
"start": 261, |
|
"end": 262, |
|
"text": "2", |
|
"ref_id": "BIBREF1" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2022 if x \u2208 A then f (x) \u2208 B,", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2022 if y is a solution to f (x), then g(y) is a solution to x,", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2022 there exists a positive constant \u03b1 such that the optimal solution for f (x) \u2208 B (opt B (f (x))) is bounded by a factor \u03b1 of the optimal solution for x \u2208 A (opt A (x)), and", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "opt B (f (x)) \u2264 \u03b1 \u2022 opt A (x)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2022 there exists a positive constant \u03b2 bounding differences between solutions and optimal solutions", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "|opt A (x)\u2212c A (g(y))| \u2264 \u03b2\u2022|opt B (f (x))\u2212c B (y)|.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "3 Generalising projectivity to DAGs", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "In statistical natural language syntactic or semantic dependency parsing decoding problems, the input is a sequence of n words, W = w 1 , . . . , w n , called the sentence and a further set of weighted asymmetric binary relations (directed edges) between these words (nodes). The task is to output a most likely connected and spanning digraph over those words, where the formal expressivity of the structure is defined with respect to the linguistic theory in question.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "The order of words in the sentence is essential for the description of important restrictions of trees and DAGs for natural language. We therefore include the order in the sentence digraph structure, so", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "G W = (V, E, \u2264 W )", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "is a dependency digraph for the sentence W , where V is the set of words tokens, E is the set of directed binary relations between words, and \u2264 W describes the order of the words in the sentence W (\u2264 W is the sentential order). For the remainder of this paper, when we talk about dependency digraphs (or dependency DAGs or dependency trees) the nodes of the underlying digraphs are associated with some fixed total order. Also we use the terms \"word\" and \"node\" synonymously in this context.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "In linguistic terms, if (w i , w j ) is an edge, then we say that w i is a head of w j and that w j is a dependent of w i . We can also write the edge", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "(w i , w j ) as w i \u2192 w j . w i *", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2212\u2192 w j is the reflexive transitive closure of the dependency relation.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "A dependency tree then is just a connected dependency digraph in which every node has a unique head, except for a special node called the root, which has no head.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "An interesting property yielding good coverage of some natural languages (for example, English) is that resulting dependency trees should be projective.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Definition 2. A dependency tree T = (V, E, \u2264 W ) is projective if for all edges (w i , w j ) \u2208 E, for all intervening words, w k such that k \u2208 [min{i, j}, max{i, j}], we have w i * \u2212\u2192 w k .", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "It turns out that the edges of a projective dependency tree can be written above the sentence (i.e., words written on a line segment in sentential order) without any crossing edges. This notion of avoiding crossing edges in \"desirable\" spanning DAGs has been considered in recent natural language parsing research, however the projectivity of edges as given in Definition 3 for dependency trees is no longer a sufficient condition to ensure this property in DAGs. As such, NLP researchers have adopted the unfortunate term \"planar\". Rather than assign a new meaning to the term planar, we generalise the definition of projectivity using the notion of crossing edges so that it applies to dependency digraphs, adopting this definition for the remainder of the paper. We then provide the correct restriction of planar digraphs that projective digraphs correspond to.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Definition 3. For a dependency digraph G W = (V, E, \u2264 W ), an edge (w i , w j ) or (w j , w i ), with i \u2264 j is projective if and only if for all words w k such that i < k < j, there are no edges (w l , w k ) or (w k , w l ) such that l < i or l > j.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "G W is projective if and only if all its edges are projective.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Since the definition of projectivity excludes crossing edges when nodes are laid out on a line segment (sentential order), we see that the underlying digraph of a projective digraph is outerplanar. Moreover, it is easy to prove that for any planar digraph with all nodes on its outer face, we can choose a first node and define an ordering \u2264 W on the nodes by following the order of nodes (in a fixed direction) along an outer face, skipping repeats, until the original node is met (recalling that one can find this outer face in linear time). So, there is a correspondence between the sets of projective digraphs and outerplanar digraphs.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Proposition 4. For the projective digraph", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "G W = (V, E, \u2264 W ), (V, E)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "is an outerplanar digraph. Also, every outerplanar digraph corresponds to some projective digraph with a sentential ordering defined by node traversal in a fixed direction along its outer face.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "On the other hand, given an outerplanar graph and some random sentential order, we of course do not necessarily have a projective digraph. In particular, an outerplanar drawing in the plane of a digraph does not necessarily have the specific desired order of vertices on its outer face. So, for example, finding the outerplanar MSDAG and the projective MSDAG are two different problems.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Notation. We put", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "In this section we give L-reductions from the APXhard problems maximum weighted directed acyclic subgraph and its dual minimum weighted feedback set to MSDAG and its dual.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Minimum weighted feedback arc set. The dual problem of the MSDAG problem is almost identical with that of finding a minimum weighted feedback arc set. Given a directed graph, G = (V, E), a feedback arc set (FAS) is a subset S of G's edges whose removal leaves a DAG (i.e., such that (V, E(G)\\E(S)) is a DAG). A minimum feedback arc set (MFAS) is the smallest among all possible feedback arc sets and a minimum weighted feedback arc set (MWFAS) is a feedback arc set of minimum weight. We call an MWFAS whose removal leaves a connected DAG a nice MWFAS. Finding a nice MW-FAS is the dual of the MSDAG problem.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Already, the decision version of the FAS problem, which asks whether there is a feedback arc set of size k was listed as one of Karp's original 21 NPcomplete problems (Karp, 1972) , which shows the NP-hardness of the optimisation version. In fact, this optimisation problem is also shown to be APXhard (Kann, 1992). The best approximation algorithm in the literature to date for this problem has an approximation guarantee of O(log n log log n) and the solution is NP-hard to approximate to within any factor smaller than 10 \u221a 5 \u2212 21 \u2248 1.36 (Even et al., 1998) .", |
|
"cite_spans": [ |
|
{ |
|
"start": 167, |
|
"end": 179, |
|
"text": "(Karp, 1972)", |
|
"ref_id": "BIBREF15" |
|
}, |
|
{ |
|
"start": 536, |
|
"end": 560, |
|
"text": "1.36 (Even et al., 1998)", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "An L-reduction from MWFAS to MSDAG for a weighted directed digraph G goes as follows. We first show that if the G has no edge cut consisting only of edges of negative weights, then the nice MWFAS is simply the MWFAS. Let D * be an MS-DAG for G. We show that the nice MWFAS F := E(G) \u2212 E(D * ) must also form an MWFAS. Suppose otherwise, then there is some other F of lower weight and such that D :", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "= (V (G), E(G) \u2212 F ) is acyclic.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "So D is disconnected and has at least two weakly connected components; we suppose without loss of generality that it has precisely two weakly connected components, C 1 and C 2 . But then there must not be any positive weighted edge e in E(G) between C 1 and C 2 ; otherwise we could remove that edge from F to achieve an MWFAS of lower weight, since C 1 \u222a C 2 \u222a {e} is still acyclic.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Now suppose that there is some edge cut consisting solely of edges of negative weight in G and therefore in D * . Without loss of generality, we can suppose that there is only one such edge cut. Clearly, D * contains at most one edge from this edge cut, the rest of them being in the nice MWFAS. An MW-FAS would contain every negative weighted edge. So, the difference between a nice MWFAS and an MWFAS is just this one edge, for G. In particular, we have given an L-reduction from MWFAS to nice MWFAS, where the optimal solution for MW-FAS is just the nice MWFAS with negative weighted edges removed (so both \u03b1 and \u03b2 from Definition 1 are equals to 1).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "This shows the APX-hardness of the dual of the MSDAG problem, nice MWFAS.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Maximum weighted directed acyclic subgraph. An almost identical problem to MSDAG is the maximum weighted directed acyclic subgraph problem (MWDAS), which aims to find the (not necessarily spanning) DAG of highest weight. The decision version of the maximum directed acyclic subgraph problem (MDAS) problem which asks whether there is a directed acyclic subgraph on k edges can be solved by the decision version of the FAS problem, with m \u2212 k as the parameter (where m is the number of edges in the input graph), and hence has long been shown to be NP-complete (Karp, 1972) . By the same token, the optimisation problem has been shown to be APX-hard (Kann, 1992). The best approximation algorithm in the literature to date for this problem has an approximation guarantee of", |
|
"cite_spans": [ |
|
{ |
|
"start": 560, |
|
"end": 572, |
|
"text": "(Karp, 1972)", |
|
"ref_id": "BIBREF15" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "1 2 + \u2126 1 \u221a", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "dmax where d max is the maximum vertex degree for the graph (Berger and Shor, 1997) . Moreover, the solution is Unique Games-hard to approximate to within any factor smaller than 1/2, which is a tight bound (Guruswami et al., 2008) .", |
|
"cite_spans": [ |
|
{ |
|
"start": 60, |
|
"end": 83, |
|
"text": "(Berger and Shor, 1997)", |
|
"ref_id": "BIBREF2" |
|
}, |
|
{ |
|
"start": 207, |
|
"end": 231, |
|
"text": "(Guruswami et al., 2008)", |
|
"ref_id": "BIBREF12" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Again, if there are no edge cuts in the graph consisting only of negative weighted edges, then the MSDAG and MWDAS solutions are identical. Otherwise, the MWDAS is just the MSDAG without its negative weighted edges, by the discussion above Lreducing MWFAS to nice MWFAS.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "We have therefore shown the following fact.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Theorem 5. MSDAG and its dual, nice MWFAS, are APX-hard.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "5 Planarity, outerplanarity and projectivity of DAGs in English data APX-hardness of the MSDAG problem not only means that the problem is essentially infeasible, but also that it theoretically cannot be very well approximated. However, with some structural assumptions, such as the planarity, outerplanarity or projectivity of the objective DAGS, either approximation algorithms with a good approximation guarantee or even feasible algorithms might be achievable. The authors are not aware of any specific theoretical linguistic evidence for the planarity or outerplanarity of semantic dependency DAGs. However, we consider the three datasets from SemEval 2014 task 8 on Broad Coverage Semantic Dependency Parsing (Oepen et al., 2014), referred to as PAS, DM and PCEDT, following the packing conversion into DAGs described in , without the actual label packing or edge removal heuristic, finding that almost all DAGs are outerplanar (and therefore also planar). Moreover, the datasets consist of a majority of projective DAGs, with those graphs that are not projective having proportionally on average a large projective subgraph (respectively 0.555, 0.580,and 0.605 for the PAS, DM, and PCEDT datasets). This large projective proportion suggests future avenues for algorithms for mildly projective DAGs, based on the projective algorithm presented in this paper. 6 The NP-hardness of finding a planar or outerplanar MSDAG", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "APX-hardness of MSDAG and its dual", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "By a similar discussion to that in Section 4 on the relationship between MWDAS and MSDAG, finding the both the maximum weighted planar or outerplanar spanning DAG of a directed weighted graph can simply be shown to be NP-hard, where \"planar\" (and \"outerplanar\") is used in the graphtheoretical sense (Garey and Johnson, 1979). To our knowledge, approximability of finding a maximum weighted planar or outerplanar acyclic directed subgraph is still an open problem. The NP-hardness of finding a maximum weighted outerplanar spanning DAG is somewhat discouraging. But the next section provides a polynomial algorithm if there is a restriction on the the order of nodes on the outer face of the output (which is just projective MSDAG).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "7 Finding a projective MSDAG or digraph in O(n 3 ) time", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We now turn our attention to the projective MS-DAG problem, which can be solved efficiently. Our algorithm employs bottom-up dynamic programming across spans of words, where a span consists of a segment of words of the input sentence W = w 1 , w 2 , . . . , w n along with any attributed edges, similarly to the CKY-algorithm for contextfree language parsing (Cocke, 1969; Kasami, 1965; Younger, 1967) and projective maximum spanning tree algorithms (Eisner, 1996) , though the proof of correctness is slightly more complex. Following this, we explain how to simplify the algorithm to the task of finding the maximum weighted spanning digraph of digraph within the same time complexity. Let G W = (V, E, \u2264 W ) be a weighted dependency digraph over the input sentence W = w 1 , w 2 , . . . , w n and we suppose without loss of generality that |E| = n(n \u2212 1). An (i, j)-span (with i \u2264 j) for S is the subsequence of consecutive words w i , w i+1 , . . . , w j\u22121 , w j . We construct an algorithm proj-MSDAG (Algorithm 1) which takes G W as input and outputs a highest weighted projective spanning dependency DAG for G W : a projective MS-DAG for G W . For simplicity, instead of G W , we just write G.", |
|
"cite_spans": [ |
|
{ |
|
"start": 359, |
|
"end": 372, |
|
"text": "(Cocke, 1969;", |
|
"ref_id": "BIBREF6" |
|
}, |
|
{ |
|
"start": 373, |
|
"end": 386, |
|
"text": "Kasami, 1965;", |
|
"ref_id": "BIBREF16" |
|
}, |
|
{ |
|
"start": 387, |
|
"end": 401, |
|
"text": "Younger, 1967)", |
|
"ref_id": "BIBREF29" |
|
}, |
|
{ |
|
"start": 450, |
|
"end": 464, |
|
"text": "(Eisner, 1996)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We call a directed path from node i to node j, an i \u2212 j path. The algorithm constructs the upper triangular square matrix A = {a i,j } (i, j \u2208 [n]), from left to right and from the diagonal upwards, where component a i,j contains at most three different restrictions of optimal projective spanning DAGs for the (i, j) span along with their associated weights:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "1. a i,j .G 1 is a projective MSDAG of the spanning subgraph G [i, j] , and a i,j .w 1 is its weight 2. a i,j .G 2 is a maximum projective spanning DAG for which there is no i \u2212 j path, and a i,j .w 2 is its weight, and 3. a i,j .G 3 is a maximum projective spanning DAG for which there is no j \u2212 i path, and a i,j .w 3 is its weight.", |
|
"cite_spans": [ |
|
{ |
|
"start": 63, |
|
"end": 69, |
|
"text": "[i, j]", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "The solution to the problem is then a 1,n .G 1 . The motivation for distinguishing between these three types of graphs is to allow restricted combinations of them which ensure that no cycles are introduced.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We claim that these three restrictions on projective MSDAGs for the span (i, j) can be constructed from those of shorter spans within (i, j) using the three following operations, (A1), (A2), and (A3) (Lemma 6).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "(A1) Concatenate sub-DAGs H a i,k and H a k,j from among the graphs in the cells a i,k and a k,j respectively (i < k < j), creating the graph", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "({w i , . . . , w j }, E(H a i,k ) \u222a E(H a k,j )),", |
|
"eq_num": "(A2)" |
|
} |
|
], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Concatenate a single edge e \u2208 {(i, j), (j, i)} with the sub-DAGs H a i,k and H a k,j from among the graphs in the cells a i,k and a k,j respectively (i < k < j), creating the graph", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "({w i , . . . , w j }, {e} \u222a E(H a i,k ) \u222a E(H a k,j )),", |
|
"eq_num": "(A3)" |
|
} |
|
], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Connect two sub-DAGs H a i,k and H a k+1,j from among the graphs in the cells a i,k and a k+1,j respectively (i \u2264 k < j) with a single edge e \u2208 {(i, j), (j, i)}, creating the graph", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "({w i , . . . , w j }, {e} \u222a E(H a i,k ) \u222a E(H a k+1,j )).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Lemma 6. The projective DAGs a i,j .G 1 , a i,j .G 2 , and a i,j .G 3 can be de-constructed, by reversing a single operation (A1), (A2) or (A3), to obtain two sub-DAGs D 1 and D 2 which span their vertices and where either", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "\u2022 D 1 is on vertices {w i , . . . , w k } and D 2 is on vertices {w k , . . . , w j }, for i < k < j, or \u2022 D 1 is on vertices {w i , . . . , w k } and D 2 is on vertices {w k+1 , . . . , w j }, for i \u2264 k < j.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Furthermore, for p \u2208 [2] and 1 \u2264 a < b \u2264 n, let G[a, b] be the spanning subgraph of G on the ver- Proof. We separate the proof into two parts: Part 1 for the graph a i,j .G1 and Part 2 for the graphs a i,j .G2, and a i,j .G3. Part 1. Let us denote a i,j .G1 by D for ease in notation. We denote by E D (u) the set of edges in E(D) having u for some endpoint. Consider the word", |
|
"cite_spans": [ |
|
{ |
|
"start": 21, |
|
"end": 24, |
|
"text": "[2]", |
|
"ref_id": "BIBREF1" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "tices {w a , w a+1 , . . . , w b\u22121 , w b }, let D p be a DAG on the vertices w a , w a+1 , . . . , w b\u22121 , w b . 1. D p is", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "w i . By D's connectivity, E D (w i )", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "is non-empty. Let e be the edge in E D (w i ) of longest span, and suppose without loss of generality in edge direction that e = (w i , w k ) for some k \u2208 {i + 1, . . . , j}. There are two cases to consider. Either k < j in which case we can reverse (A1) (Case 1), or k = j in which case we can reverse (A2) or (A3) (Case 2).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Consider first Case 1, where k < j. By D's projectivity and the fact that e has the longest span in E D (w 1 ), there are no edges with one endpoint among w i , . . . , w k\u22121 and the other endpoint among w k+1 , . . . , w j . So we can partition D into two sub-DAGs D [i, k] , which is a spanning subgraph over the nodes w i , . . . , w k and D[k, j] , which is a spanning subgraph over the nodes w k , . . . , w j . Both D[i, k] and D [k, j] are projective MSDAGs for G [i, k] and G [k, j] respectively, otherwise we can construct a projective MSDAG D for G of higher weight than D, by taking the respective projective MSDAGs to form D .", |
|
"cite_spans": [ |
|
{ |
|
"start": 268, |
|
"end": 274, |
|
"text": "[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 329, |
|
"end": 350, |
|
"text": ". . , w k and D[k, j]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 405, |
|
"end": 429, |
|
"text": ". . , w j . Both D[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 436, |
|
"end": 442, |
|
"text": "[k, j]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 471, |
|
"end": 477, |
|
"text": "[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 484, |
|
"end": 490, |
|
"text": "[k, j]", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Otherwise, we have Case 2, with k = j. Note that there must not be any w j \u2212w i path in D (for acyclicity). We remove the edge (w i , w j ) from D, the result of which is either connected or disconnected.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "If D \u2212 {(w i , w j )} is connected, it must be the maximum spanning DAG for G not containing any w j \u2212 w i path. In the same manner as for the case where k < j, we can partition D \u2212 {(w i , w j )} into two sub-DAGs D [i, k] , which is a spanning sub-DAG over the nodes w i , . . . , w k and D[k, j] , which is a spanning sub-DAG over the nodes w k , . . . , w (which is the reversal of (A3)). Part 2. We prove, without loss of generality, the result for the graph a i,j .G 3 , the proof for the graph a i,j .G 2 being symmetric. The proof follows almost exactly the one in Part 1, so we simply indicate the differences here. Again, for ease in notation, we denote a i,j .G 2 by D, and carry out the same partition of D as in Part 1. The difference for Case 1 is that either the resulting D[i, k] must be a maximum weighted projective spanning DAG for G [i, k] with no k \u2212 i path, or D[k, j] must be a maximum weighted projective spanning DAG for G [k, j] with no j \u2212 k path.", |
|
"cite_spans": [ |
|
{ |
|
"start": 217, |
|
"end": 223, |
|
"text": "[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 277, |
|
"end": 298, |
|
"text": ". . , w k and D[k, j]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 352, |
|
"end": 359, |
|
"text": ". . , w", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 730, |
|
"end": 732, |
|
"text": "1.", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 853, |
|
"end": 859, |
|
"text": "[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 948, |
|
"end": 954, |
|
"text": "[k, j]", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Case 2 is precisely the same if the result of removing the edge (w i , w j ) is disconnected. If the result is connected, then the difference is that D[i, k] must be a maximum projective weighted spanning DAG for G [i, k] with no k \u2212 i path, or D[k, j] must be a maximum weighted projective spanning DAG for G [k, j] with no j \u2212 k path.", |
|
"cite_spans": [ |
|
{ |
|
"start": 215, |
|
"end": 221, |
|
"text": "[i, k]", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 310, |
|
"end": 316, |
|
"text": "[k, j]", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Algorithm 1 uses the operations (A1), (A2) and (A3) to fill the matrix A. In Figure 1 , we define three different subroutines corresponding to each of these operations, which take the matrix A, the span, and the forbidden direction for the edge of the span, if there is one (and the empty set otherwise). Clearly each of these runs in O(n) time.", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 77, |
|
"end": 85, |
|
"text": "Figure 1", |
|
"ref_id": "FIGREF0" |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We observe that Lines 9 through 14 in Algorithm 1 dominate the time complexity, taking O(n 3 ). Lemma 7 shows that Algorithm 1 fills the table cells with the correct projective MSDAG restrictions.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Lemma 7. For i \u2264 j, Algorithm 1 fills matrix entry a i,j with: , \u2205) ; the graphs are all single nodes. For our base case, a i,i+1 , i \u2208 [n \u2212 1], we construct the cell contents as follows:", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 63, |
|
"end": 67, |
|
"text": ", \u2205)", |
|
"ref_id": null |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,i for i \u2208 [n], we have a i,i .G 1 = a i,i .G 2 = a i,i .G 3 = ({w i }", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "1. a i,i+1 .G 1 is the highest weighted edge among (w i , w i+1 ) and (w i+1 , w i ).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "2. a i,i+1 .G 2 is (w i , w i+1 ) if this edge is in G. 3. a i,i+1 .G 3 is (w i+1 , w i ) if this edge is in G.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "This is Lines 1 through 8 in Algorithm 1. Suppose now that the entries a i,k and a k,j contain the appropriate graphs G 1 , G 2 and G 3 , for i < k < j. For each k (i < k < j), Lines 9 through 14 in Algorithm 1 construct the three graphs, a i,j .G 1 (k), a i,j .G 2 (k), and a i,j .G 3 (k), as follows, which is possible according to Lemma 6:", |
|
"cite_spans": [ |
|
{ |
|
"start": 39, |
|
"end": 41, |
|
"text": "1.", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "A1(G, A, i, j, \u2205) = arg max {H|H=({w i ,...,w j },E(a i,k .G 1 )\u222aE(a k,j .G 1 )), i<k<j} w(H) A1(G, A, i, j, \u2192) = arg max {H|H=({w i ,...,w j },E(a i,k .G 2 )\u222aE(a k,j .G 1 )), i<k<j} \u222a{H|H=({w i ,...,w j },E(a i,k .G 1 )\u222aE(a k,j .G 2 )), i<k<j} w(H) A1(G, A, i, j, \u2190) = arg max {H|H=({w i ,...,w j },E(a i,k .G 3 )\u222aE(a k,j .G 1 )), i<k<j} \u222a{H|H=({w i ,...,w j },E(a i,k .G 1 )\u222aE(a k,j .G 3 )), i<k<j} w(H) A2(G, A, i, j, \u2205) = arg max {H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 1 )\u222aE(a k,j .G 1 )), i<k<j} w(H) A2(G, A, i, j, \u2192) = arg max {H|H=({w i ,...,w j }, {(w j ,w i )}\u222aE(a i,k .G 2 )\u222aE(a k,j .G 1 )), i<k<j} \u222a{H|H=({w i ,...,w j }, {(w j ,w i )}\u222aE(a i,k .G 1 )\u222aE(a k,j .G 2 )), i<k<j} w(H) A2(G, A, i, j, \u2190) = arg max {H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 3 )\u222aE(a k,j .G 1 )), i<k<j} \u222a{H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 1 )\u222aE(a k,j .G 3 )), i<k<j} w(H) A3(G, A, i, j, \u2205) = arg max {H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 1 )\u222aE(a k+1,j .G 1 )), i\u2264k<j} w(H) A3(G, A, i, j, \u2192) = arg max {H|H=({w i ,...,w j }, {(w j ,w i )}\u222aE(a i,k .G 2 )\u222aE(a k+1,j .G 1 )), i\u2264k<j} \u222a{H|H=({w i ,...,w j }, {(w j ,w i )}\u222aE(a i,k .G 1 )\u222aE(a k+1,j .G 2 )), i\u2264k<j} w(H) A3(G, A, i, j, \u2190) = arg max {H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 3 )\u222aE(a k+1,j .G 1 )), i\u2264k<j} \u222a{H|H=({w i ,...,w j }, {(w i ,w j )}\u222aE(a i,k .G 1 )\u222aE(a k+1,j .G 3 )), i\u2264k<j}", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "w(H) ", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,i .G 1 \u2190 a i,i .G 2 \u2190 a i,i .G 3 = ({i}, \u2205)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "3:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "if i < n then 4:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,i+1 .G 1 \u2190 ({w i , w i+1 }, {arg max e\u2208{(w i ,w i+1 ),(w i+1 ,w i )} w(e)})", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "5:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,i+1 .G 2 \u2190 ({w i , w i+1 }, {(w i+1 , w i )}) 6: a i,i+1 .G 3 \u2190 ({w i , w i+1 }, {(w i , w i+1 )}) 7:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "end if 8: end for 9: for i \u2190 1, . . . , n do", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "PAS", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "for j \u2190 i \u2212 1, . . . , 1 do", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "10:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,j .G 1 \u2190 arg max H\u2208{A1(G,A,i,j,\u2205),A2(G,A,i,j,\u2205),A3(G,A,i,j,\u2205)} w(H)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "11:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "a i,j .G 2 \u2190 arg max H\u2208{A1(G,A,i,j,\u2192),A2(G,A,i,j,\u2192),A3(G,A,i,j,\u2192)} w(H)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "13: a i,j .G 3 \u2190 arg max H\u2208{A1(G,A,i,j,\u2190),A2(G,A,i,j,\u2190),A3(G,A,i,j,\u2190)} w(H) 14: end for 15: end for 16: return a 1,n .G 1 3. a i,j .G 3 (k) is a highest weighted projective dependency DAG for G[i, j] that can be con-structed from the graphs stored in a i,k , a i,k+1 and a k,j , which avoids an j \u2212 i path.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "With Lemmata 6 and 7, the proof of correctness of the following theorem is complete.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Theorem 8. There is an algorithm for finding a projective MSDAG of a weighted digraph in O(n 3 ) time, where n is the number of word tokens of the input sentence.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "The proof of Theorem 8 can be simplified to adapt it to that of projective digraphs. We simply substitute the word \"DAG\" by \"digraph\", and disregard all graphs in table entries avoiding certain paths, since cycles are permitted: in the entry a i,j , we need only construct and record the graph a i,j .G 1 . We have thus also shown the following fact.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Theorem 9. There is an algorithm for finding a projective maximum weighted spanning digraph of a weighted digraph in O(n 3 ) time, where n is the number of word tokens of the input sentence.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "12:", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Understanding the complexity of the problem of finding a maximum spanning DAG as well as important restrictions provides a basis for both theoretical and empirical studies using restrictions or relaxations of the DAG parsing paradigm. We have provided the first direct discussion of this problem's complexity, showing that the problem is APX-hard as well as the first algorithm for the projective MS-DAG problem proven to be exact and polynomial time. Additionally, we briefly discussed the complexity of finding a planar and outerplanar MSDAG, the approximability of which remains open.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Concluding Remarks", |
|
"sec_num": "8" |
|
}, |
|
{ |
|
"text": "McDonald and Pereira (2006) provide a reference to(Heckerman et al., 1995) for this fact. This fact is actually indirectly shown much earlier, as we discuss in Section 4.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "A discussion of PTAS-reductions is out of the scope of this paper. The definition of a PTAS-reduction can be found, for example, in(Wegener, 2005).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "", |
|
"sec_num": null |
|
} |
|
], |
|
"back_matter": [], |
|
"bib_entries": { |
|
"BIBREF0": { |
|
"ref_id": "b0", |
|
"title": "1 (k) is a highest weighted projective dependency DAG for G[i, j] that can be constructed from the graphs stored in a i", |
|
"authors": [ |
|
{ |
|
"first": ".", |
|
"middle": [ |
|
"G" |
|
], |
|
"last": "", |
|
"suffix": "" |
|
} |
|
], |
|
"year": null, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "a i,j .G 1 (k) is a highest weighted projective de- pendency DAG for G[i, j] that can be con- structed from the graphs stored in a i,k and a k,j .", |
|
"links": null |
|
}, |
|
"BIBREF1": { |
|
"ref_id": "b1", |
|
"title": "G 2 (k) is a highest weighted projective dependency DAG for G[i, j] that can be constructed from the graphs stored in a i,k , a i,k+1 and a k,j , which avoids an i \u2212 j path", |
|
"authors": [], |
|
"year": null, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "a i,j .G 2 (k) is a highest weighted projective de- pendency DAG for G[i, j] that can be con- structed from the graphs stored in a i,k , a i,k+1 and a k,j , which avoids an i \u2212 j path.", |
|
"links": null |
|
}, |
|
"BIBREF2": { |
|
"ref_id": "b2", |
|
"title": "Tight bounds for the maximum acyclic subgraph problem", |
|
"authors": [ |
|
{ |
|
"first": "Bonnie", |
|
"middle": [], |
|
"last": "Berger", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Peter", |
|
"middle": [ |
|
"W" |
|
], |
|
"last": "Shor", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1997, |
|
"venue": "Journal of Algorithms", |
|
"volume": "25", |
|
"issue": "", |
|
"pages": "1--18", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Bonnie Berger and Peter W. Shor. 1997. Tight bounds for the maximum acyclic subgraph problem. Journal of Algorithms, 25:1-18.", |
|
"links": null |
|
}, |
|
"BIBREF3": { |
|
"ref_id": "b3", |
|
"title": "Well-nested drawings as models of syntactic structure", |
|
"authors": [ |
|
{ |
|
"first": "Manuel", |
|
"middle": [], |
|
"last": "Bodirsky", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Marco", |
|
"middle": [], |
|
"last": "Kuhlmann", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Mathias", |
|
"middle": [], |
|
"last": "M\u00f6hl", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "Proc. of the Tenth Conference on FOrmal Grammar and Ninth Meeting on Mathematics of Language", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Manuel Bodirsky, Marco Kuhlmann, and Mathias M\u00f6hl. 2005. Well-nested drawings as models of syntactic structure. In Proc. of the Tenth Conference on FOr- mal Grammar and Ninth Meeting on Mathematics of Language.", |
|
"links": null |
|
}, |
|
"BIBREF4": { |
|
"ref_id": "b4", |
|
"title": "Experiments with a higher-order projective dependency parser", |
|
"authors": [ |
|
{ |
|
"first": "Xavier", |
|
"middle": [], |
|
"last": "Carreras", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2007, |
|
"venue": "Proc. of CoNLL Shared Task Session of EMNLP-CoNLL", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "957--961", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Xavier Carreras. 2007. Experiments with a higher-order projective dependency parser. In Proc. of CoNLL Shared Task Session of EMNLP-CoNLL, pages 957- 961, Prague, Czech Republic.", |
|
"links": null |
|
}, |
|
"BIBREF5": { |
|
"ref_id": "b5", |
|
"title": "On the shortest arborescence of a directed graph", |
|
"authors": [ |
|
{ |
|
"first": "Y", |
|
"middle": [ |
|
"J" |
|
], |
|
"last": "Chu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "T", |
|
"middle": [ |
|
"H" |
|
], |
|
"last": "Liu", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1965, |
|
"venue": "Science Sinica", |
|
"volume": "14", |
|
"issue": "", |
|
"pages": "1396--1400", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Y.J. Chu and T. H. Liu. 1965. On the shortest arbores- cence of a directed graph. Science Sinica, 14:1396- 1400.", |
|
"links": null |
|
}, |
|
"BIBREF6": { |
|
"ref_id": "b6", |
|
"title": "Programming languages and their compilers: Preliminary notes", |
|
"authors": [ |
|
{ |
|
"first": "John", |
|
"middle": [], |
|
"last": "Cocke", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1969, |
|
"venue": "Courant Institute of Mathematical Sciences", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "John Cocke. 1969. Programming languages and their compilers: Preliminary notes. Technical Report B0007F4UOA, Courant Institute of Mathematical Sci- ences, New York University.", |
|
"links": null |
|
}, |
|
"BIBREF7": { |
|
"ref_id": "b7", |
|
"title": "Optimum branchings", |
|
"authors": [ |
|
{ |
|
"first": "Jack", |
|
"middle": [], |
|
"last": "Edmonds", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1967, |
|
"venue": "J. Res. Nat. Bur. Standards", |
|
"volume": "71", |
|
"issue": "", |
|
"pages": "233--240", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jack Edmonds. 1967. Optimum branchings. J. Res. Nat. Bur. Standards, 71B:233-240.", |
|
"links": null |
|
}, |
|
"BIBREF8": { |
|
"ref_id": "b8", |
|
"title": "Three new probabilistic models for dependency parsing: An exploration", |
|
"authors": [ |
|
{ |
|
"first": "Jason", |
|
"middle": [], |
|
"last": "Eisner", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1996, |
|
"venue": "Proceedings of COLING-96)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "340--345", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jason Eisner. 1996. Three new probabilistic models for dependency parsing: An exploration. In Proceedings of COLING-96), pages 340-345, Copenhagen, Den- mark.", |
|
"links": null |
|
}, |
|
"BIBREF9": { |
|
"ref_id": "b9", |
|
"title": "Approximating minimum feedback sets and multicuts in directed graphs", |
|
"authors": [ |
|
{ |
|
"first": "Guy", |
|
"middle": [], |
|
"last": "Even", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Joseph", |
|
"middle": [], |
|
"last": "Naor", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Baruch", |
|
"middle": [], |
|
"last": "Schieber", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Madhu", |
|
"middle": [], |
|
"last": "Sudan", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1998, |
|
"venue": "Algorithmica", |
|
"volume": "20", |
|
"issue": "", |
|
"pages": "151--174", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Guy Even, Joseph Naor, Baruch Schieber, and Madhu Sudan. 1998. Approximating minimum feedback sets and multicuts in directed graphs. Algorithmica, 20:151-174.", |
|
"links": null |
|
}, |
|
"BIBREF10": { |
|
"ref_id": "b10", |
|
"title": "Computers and Intractability: A Guide to the Theory of NPcompleteness", |
|
"authors": [ |
|
{ |
|
"first": "R", |
|
"middle": [], |
|
"last": "Michael", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "David", |
|
"middle": [ |
|
"S" |
|
], |
|
"last": "Garey", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Johnson", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1979, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Michael R. Garey and David S. Johnson. 1979. Comput- ers and Intractability: A Guide to the Theory of NP- completeness. Freeman & Co., San Francisco.", |
|
"links": null |
|
}, |
|
"BIBREF11": { |
|
"ref_id": "b11", |
|
"title": "Dependency parsing schemata and mildly nonprojective dependency parsing", |
|
"authors": [ |
|
{ |
|
"first": "Carlos", |
|
"middle": [], |
|
"last": "G\u00f3mez-Rodr\u00edguez", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "John", |
|
"middle": [], |
|
"last": "Carroll", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "David", |
|
"middle": [], |
|
"last": "Weir", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2011, |
|
"venue": "Computational Linguistics", |
|
"volume": "37", |
|
"issue": "", |
|
"pages": "541--586", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Carlos G\u00f3mez-Rodr\u00edguez, John Carroll, and David Weir. 2011. Dependency parsing schemata and mildly non- projective dependency parsing. Computational Lin- guistics, 37:541-586.", |
|
"links": null |
|
}, |
|
"BIBREF12": { |
|
"ref_id": "b12", |
|
"title": "Beating the random ordering is hard: Inapproximability of maximum acyclic subgraph", |
|
"authors": [ |
|
{ |
|
"first": "Venkatesan", |
|
"middle": [], |
|
"last": "Guruswami", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Rajsekar", |
|
"middle": [], |
|
"last": "Manokaran", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Prasad", |
|
"middle": [], |
|
"last": "Raghavendra", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2008, |
|
"venue": "Proc. of FOCS", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Venkatesan Guruswami, Rajsekar Manokaran, and Prasad Raghavendra. 2008. Beating the random or- dering is hard: Inapproximability of maximum acyclic subgraph. In Proc. of FOCS.", |
|
"links": null |
|
}, |
|
"BIBREF13": { |
|
"ref_id": "b13", |
|
"title": "Learning bayesian networks: The combination of knowledge and statistical data", |
|
"authors": [ |
|
{ |
|
"first": "D", |
|
"middle": [], |
|
"last": "Heckerman", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "D", |
|
"middle": [], |
|
"last": "Geiger", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "D", |
|
"middle": [ |
|
"M" |
|
], |
|
"last": "Chickering", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1995, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "D. Heckerman, D. Geiger, and D. M. Chickering. 1995. Learning bayesian networks: The combination of knowledge and statistical data. Technical report, Mi- crosoft Research. MSR-TR-94-09.", |
|
"links": null |
|
}, |
|
"BIBREF14": { |
|
"ref_id": "b14", |
|
"title": "On the approximability on NPcomplete Optimization Problems", |
|
"authors": [ |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Viggo Kann", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1992, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Viggo Kann. 1992. On the approximability on NP- complete Optimization Problems. Ph.D. thesis, De- partment of Numerical Analysis and Computing Sci- ence, Royal Institute of Technology, Stockholm, Swe- den.", |
|
"links": null |
|
}, |
|
"BIBREF15": { |
|
"ref_id": "b15", |
|
"title": "Reducibility among combinatorial problems", |
|
"authors": [ |
|
{ |
|
"first": "Richard", |
|
"middle": [ |
|
"M" |
|
], |
|
"last": "Karp", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1972, |
|
"venue": "Complexity of Computer Computations, Proc. Sympos", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "85--103", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Richard M. Karp. 1972. Reducibility among combinato- rial problems. In Complexity of Computer Computa- tions, Proc. Sympos. IBM Thomas J. Watson Res. Cen- ter, pages 85-103, New York, NY.", |
|
"links": null |
|
}, |
|
"BIBREF16": { |
|
"ref_id": "b16", |
|
"title": "An efficient recognition and syntax-analysis algorithm for context-free languages", |
|
"authors": [ |
|
{ |
|
"first": "Tadao", |
|
"middle": [], |
|
"last": "Kasami", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1965, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Tadao Kasami. 1965. An efficient recognition and syntax-analysis algorithm for context-free languages. Technical Report AFCRL-65-758, Air Force Cam- bridge Research Lab, Bedford, MA.", |
|
"links": null |
|
}, |
|
"BIBREF17": { |
|
"ref_id": "b17", |
|
"title": "Priberam: A turbo semantic parser with second order features", |
|
"authors": [ |
|
{ |
|
"first": "F", |
|
"middle": [ |
|
"T" |
|
], |
|
"last": "Andr\u00e9", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Mariana", |
|
"middle": [ |
|
"S C" |
|
], |
|
"last": "Martins", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Almeida", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2014, |
|
"venue": "Proc of SemEval", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Andr\u00e9 F. T. Martins and Mariana S. C. Almeida. 2014. Priberam: A turbo semantic parser with second order features. In Proc of SemEval, Dublin, Ireland.", |
|
"links": null |
|
}, |
|
"BIBREF18": { |
|
"ref_id": "b18", |
|
"title": "Online learning of approximate dependency parsing algorithms", |
|
"authors": [ |
|
{ |
|
"first": "Ryan", |
|
"middle": [], |
|
"last": "Mcdonald", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Fernando", |
|
"middle": [], |
|
"last": "Pereira", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2006, |
|
"venue": "Proc. of EACL", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "81--88", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ryan McDonald and Fernando Pereira. 2006. On- line learning of approximate dependency parsing al- gorithms. In Proc. of EACL, pages 81-88.", |
|
"links": null |
|
}, |
|
"BIBREF19": { |
|
"ref_id": "b19", |
|
"title": "On the complexity of non-projective data-driven dependency parsing", |
|
"authors": [ |
|
{ |
|
"first": "Ryan", |
|
"middle": [], |
|
"last": "Mcdonald", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Giorgio", |
|
"middle": [], |
|
"last": "Satta", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2007, |
|
"venue": "Proceedings of the Tenth International Conference on Parsing Technologies", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "121--132", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ryan McDonald and Giorgio Satta. 2007. On the com- plexity of non-projective data-driven dependency pars- ing. In Proceedings of the Tenth International Confer- ence on Parsing Technologies, pages 121-132, Prague, Czech Republic, June.", |
|
"links": null |
|
}, |
|
"BIBREF20": { |
|
"ref_id": "b20", |
|
"title": "Dynamic programming for higher order parsing of gap-minding trees", |
|
"authors": [ |
|
{ |
|
"first": "Ryan", |
|
"middle": [], |
|
"last": "Mcdonald", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Fernando", |
|
"middle": [], |
|
"last": "Pereira", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Kiril", |
|
"middle": [], |
|
"last": "Ribarov", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": ";", |
|
"middle": [], |
|
"last": "Vancouver", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Canada", |
|
"middle": [ |
|
"Stephan" |
|
], |
|
"last": "Bc", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Marco", |
|
"middle": [], |
|
"last": "Oepen", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Yusuke", |
|
"middle": [], |
|
"last": "Kuhlmann", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Daniel", |
|
"middle": [], |
|
"last": "Miyao", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Dan", |
|
"middle": [], |
|
"last": "Zeman", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jan", |
|
"middle": [], |
|
"last": "Flickinger", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Angelina", |
|
"middle": [], |
|
"last": "Haji\u010d", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Yi", |
|
"middle": [], |
|
"last": "Ivanova", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Zhang", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "Sampath Kannan, and Mitchell Marcus", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "478--488", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ryan McDonald, Fernando Pereira, Kiril Ribarov, and Jan Haji. 2005. Non-projective dependency pars- ing using spanning tree algorithms. In Proc. of HLT- EMNLP, pages 523-530, Vancouver, BC, Canada. Stephan Oepen, Marco Kuhlmann, Yusuke Miyao, Daniel Zeman, Dan Flickinger, Jan Haji\u010d, Angelina Ivanova, and Yi Zhang. 2014. Semeval 2014 task 8: Broad-coverage semantic dependency parsing. In Proc. of SemEval, pages 63-71, Dublin, Ireland. Emily Pitler, Sampath Kannan, and Mitchell Mar- cus. 2012. Dynamic programming for higher or- der parsing of gap-minding trees. In Proceedings of EMNLP/CoNLL, pages 478-488, Jeju Island, Repub- lic of Korea.", |
|
"links": null |
|
}, |
|
"BIBREF21": { |
|
"ref_id": "b21", |
|
"title": "Finding optimal 1-endpoint-crossing trees", |
|
"authors": [ |
|
{ |
|
"first": "Emily", |
|
"middle": [], |
|
"last": "Pitler", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Sampath", |
|
"middle": [], |
|
"last": "Kannan", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Mitchell", |
|
"middle": [], |
|
"last": "Marcus", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2013, |
|
"venue": "Transactions of the Association for Computational Linguistics", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Emily Pitler, Sampath Kannan, and Mitchell Marcus. 2013. Finding optimal 1-endpoint-crossing trees. Transactions of the Association for Computational Linguistics.", |
|
"links": null |
|
}, |
|
"BIBREF22": { |
|
"ref_id": "b22", |
|
"title": "Shift-reduce dependency dag parsing", |
|
"authors": [ |
|
{ |
|
"first": "Kenji", |
|
"middle": [], |
|
"last": "Sagae", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jun'ichi", |
|
"middle": [], |
|
"last": "Tsujii", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2008, |
|
"venue": "22nd International Conference on Computational Linguistics", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Kenji Sagae and Jun'ichi Tsujii. 2008. Shift-reduce de- pendency dag parsing. In 22nd International Con- ference on Computational Linguistics (Coling 2008), Manchester, UK.", |
|
"links": null |
|
}, |
|
"BIBREF23": { |
|
"ref_id": "b23", |
|
"title": "Efficient parsing for head-split dependency trees", |
|
"authors": [ |
|
{ |
|
"first": "Giorgio", |
|
"middle": [], |
|
"last": "Satta", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Marco", |
|
"middle": [], |
|
"last": "Kuhlmann", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2013, |
|
"venue": "Trans. ACL", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "267--278", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Giorgio Satta and Marco Kuhlmann. 2013. Efficient parsing for head-split dependency trees. Trans. ACL, pages 267-278.", |
|
"links": null |
|
}, |
|
"BIBREF24": { |
|
"ref_id": "b24", |
|
"title": "Copenhagen: Tree approximations of semantic parsing problems", |
|
"authors": [ |
|
{ |
|
"first": "Natalie", |
|
"middle": [], |
|
"last": "Schluter", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Anders", |
|
"middle": [], |
|
"last": "S\u00f8gaard", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jakob", |
|
"middle": [], |
|
"last": "Elming", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Dirk", |
|
"middle": [], |
|
"last": "Hovy", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Barbara", |
|
"middle": [], |
|
"last": "Plank", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Hector", |
|
"middle": [ |
|
"Martinez" |
|
], |
|
"last": "Alonso", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Anders", |
|
"middle": [], |
|
"last": "Johanssen", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Sigrid", |
|
"middle": [], |
|
"last": "Klerke", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2014, |
|
"venue": "Proceedings of SemEval", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Natalie Schluter, Anders S\u00f8gaard, Jakob Elming, Dirk Hovy, Barbara Plank, Hector Martinez Alonso, Anders Johanssen, and Sigrid Klerke. 2014. Copenhagen: Tree approximations of semantic parsing problems. In Proceedings of SemEval, Dublin, Ireland.", |
|
"links": null |
|
}, |
|
"BIBREF25": { |
|
"ref_id": "b25", |
|
"title": "On maximum spanning dag algorithms for semantic dag parsing", |
|
"authors": [ |
|
{ |
|
"first": "Natalie", |
|
"middle": [], |
|
"last": "Schluter", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2014, |
|
"venue": "ACL 2014 Workshop on Semantic Parsing", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Natalie Schluter. 2014. On maximum spanning dag algo- rithms for semantic dag parsing. In ACL 2014 Work- shop on Semantic Parsing.", |
|
"links": null |
|
}, |
|
"BIBREF26": { |
|
"ref_id": "b26", |
|
"title": "Finding optimum branchings. Networks", |
|
"authors": [ |
|
{ |
|
"first": "Robert", |
|
"middle": [], |
|
"last": "Tarjan", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1977, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "25--35", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Robert Tarjan. 1977. Finding optimum branchings. Net- works, pages 25-35.", |
|
"links": null |
|
}, |
|
"BIBREF27": { |
|
"ref_id": "b27", |
|
"title": "Online graph planarization for synchronous parsing of semantic and synactic dependencies", |
|
"authors": [ |
|
{ |
|
"first": "Ivan", |
|
"middle": [], |
|
"last": "Titov", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "James", |
|
"middle": [], |
|
"last": "Henderson", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Paola", |
|
"middle": [], |
|
"last": "Merlo", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Gabrielle", |
|
"middle": [], |
|
"last": "Musillo", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2009, |
|
"venue": "Proceedings of IJCAI 2009", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "1562--1567", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ivan Titov, James Henderson, Paola Merlo, and Gabrielle Musillo. 2009. Online graph planarization for syn- chronous parsing of semantic and synactic dependen- cies. In Proceedings of IJCAI 2009, pages 1562-1567.", |
|
"links": null |
|
}, |
|
"BIBREF28": { |
|
"ref_id": "b28", |
|
"title": "Complexity Theory", |
|
"authors": [ |
|
{ |
|
"first": "Ingo", |
|
"middle": [], |
|
"last": "Wegener", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ingo Wegener. 2005. Complexity Theory. Springer.", |
|
"links": null |
|
}, |
|
"BIBREF29": { |
|
"ref_id": "b29", |
|
"title": "Recognition and parsing of context-free languages in time n 3", |
|
"authors": [ |
|
{ |
|
"first": "H", |
|
"middle": [], |
|
"last": "Daniel", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Younger", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1967, |
|
"venue": "Information and Control", |
|
"volume": "10", |
|
"issue": "2", |
|
"pages": "189--208", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Daniel H. Younger. 1967. Recognition and parsing of context-free languages in time n 3 . Information and Control, 10(2):189-208.", |
|
"links": null |
|
} |
|
}, |
|
"ref_entries": { |
|
"FIGREF0": { |
|
"text": "An L-reduction from problem A to problem B with respective cost functions c A and c B consists of a pair of polynomial-time computable functions f and g such that:", |
|
"type_str": "figure", |
|
"num": null, |
|
"uris": null |
|
}, |
|
"FIGREF1": { |
|
"text": "a projective MSDAG for G[a, b], or 2. D p is the a highest projective spanning DAG with no a \u2212 b path for G[a, b], or 3. D p is the a highest projective spanning DAG with no b \u2212 a path for G[a, b].", |
|
"type_str": "figure", |
|
"num": null, |
|
"uris": null |
|
}, |
|
"FIGREF2": { |
|
"text": "j , where either D[i, k] does not have a k \u2212 i path or D[k, j] does not have a j \u2212 k path. Clearly D[i, k] and D[k, j] are the maximum weighted projective spanning DAGs with this property for G[i, k] and G[k, j] respectively. This is the reversal of (A2). Otherwise D \u2212 {(w i , w j )} is disconnected into two weakly connected components D[i, k] and D[k + 1, j], with k \u2208 [j \u2212 1], such that D[i, k] is a projective MSDAG for G[i, k] and D[k + 1, j] is a projective MSDAG for G[k + 1, j]", |
|
"type_str": "figure", |
|
"num": null, |
|
"uris": null |
|
}, |
|
"FIGREF3": { |
|
"text": "1. a projective MSDAG forG[i, j],2. a projective MSDAG for G[i, j] with no i \u2212 j path, and 3. a projective MSDAG for G[i, j] with no j \u2212 i path. Proof. The proof is by induction on the span size. For the table cells", |
|
"type_str": "figure", |
|
"num": null, |
|
"uris": null |
|
}, |
|
"FIGREF4": { |
|
"text": "Subroutines corresponding to the operations (A1), (A2), and (A3) as used by Algorithm 1.Algorithm 1 proj-MSDAG(G)1: for i \u2190 1, . . . , n do 2:", |
|
"type_str": "figure", |
|
"num": null, |
|
"uris": null |
|
} |
|
} |
|
} |
|
} |