Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "Q13-1002",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T15:08:46.167698Z"
},
"title": "Finding Optimal 1-Endpoint-Crossing Trees",
"authors": [
{
"first": "Emily",
"middle": [],
"last": "Pitler",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA"
}
},
"email": "[email protected]"
},
{
"first": "Sampath",
"middle": [],
"last": "Kannan",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA"
}
},
"email": "[email protected]"
},
{
"first": "Mitchell",
"middle": [],
"last": "Marcus",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Dependency parsing algorithms capable of producing the types of crossing dependencies seen in natural language sentences have traditionally been orders of magnitude slower than algorithms for projective trees. For 95.8-99.8% of dependency parses in various natural language treebanks, whenever an edge is crossed, the edges that cross it all have a common vertex. The optimal dependency tree that satisfies this 1-Endpoint-Crossing property can be found with an O(n 4) parsing algorithm that recursively combines forests over intervals with one exterior point. 1-Endpoint-Crossing trees also have natural connections to linguistics and another class of graphs that has been studied in NLP.",
"pdf_parse": {
"paper_id": "Q13-1002",
"_pdf_hash": "",
"abstract": [
{
"text": "Dependency parsing algorithms capable of producing the types of crossing dependencies seen in natural language sentences have traditionally been orders of magnitude slower than algorithms for projective trees. For 95.8-99.8% of dependency parses in various natural language treebanks, whenever an edge is crossed, the edges that cross it all have a common vertex. The optimal dependency tree that satisfies this 1-Endpoint-Crossing property can be found with an O(n 4) parsing algorithm that recursively combines forests over intervals with one exterior point. 1-Endpoint-Crossing trees also have natural connections to linguistics and another class of graphs that has been studied in NLP.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Dependency parsing is one of the fundamental problems in natural language processing today, with applications such as machine translation (Ding and Palmer, 2005) , information extraction (Culotta and Sorensen, 2004) , and question answering (Cui et al., 2005) . Most high-accuracy graph-based dependency parsers (Koo and Collins, 2010; Rush and Petrov, 2012; Zhang and McDonald, 2012) find the highest-scoring projective trees (in which no edges cross), despite the fact that a large proportion of natural language sentences are non-projective. Projective trees can be found in O(n 3 ) time (Eisner, 2000) , but cover only 63.6% of sentences in some natural language treebanks (Table 1) .",
"cite_spans": [
{
"start": 138,
"end": 161,
"text": "(Ding and Palmer, 2005)",
"ref_id": "BIBREF9"
},
{
"start": 187,
"end": 215,
"text": "(Culotta and Sorensen, 2004)",
"ref_id": "BIBREF8"
},
{
"start": 241,
"end": 259,
"text": "(Cui et al., 2005)",
"ref_id": "BIBREF7"
},
{
"start": 312,
"end": 335,
"text": "(Koo and Collins, 2010;",
"ref_id": "BIBREF14"
},
{
"start": 336,
"end": 358,
"text": "Rush and Petrov, 2012;",
"ref_id": "BIBREF21"
},
{
"start": 359,
"end": 384,
"text": "Zhang and McDonald, 2012)",
"ref_id": "BIBREF23"
},
{
"start": 591,
"end": 605,
"text": "(Eisner, 2000)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [
{
"start": 677,
"end": 686,
"text": "(Table 1)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The class of directed spanning trees covers all treebank trees and can be parsed in O(n 2 ) with edge-based features (McDonald et al., 2005) , but it is NP-hard to find the maximum scoring such tree with grandparent or sibling features (McDonald and Pereira, 2006; McDonald and Satta, 2007) .",
"cite_spans": [
{
"start": 117,
"end": 140,
"text": "(McDonald et al., 2005)",
"ref_id": "BIBREF18"
},
{
"start": 236,
"end": 264,
"text": "(McDonald and Pereira, 2006;",
"ref_id": "BIBREF16"
},
{
"start": 265,
"end": 290,
"text": "McDonald and Satta, 2007)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "There are various existing definitions of mildly non-projective trees with better empirical coverage than projective trees that do not have the hardness of extensibility that spanning trees do. However, these have had parsing algorithms that are orders of magnitude slower than the projective case or the edgebased spanning tree case. For example, well-nested dependency trees with block degree 2 (Kuhlmann, 2013) cover at least 95.4% of natural language structures, but have a parsing time of O(n 7 ) (G\u00f3mez- Rodr\u00edguez et al., 2011) .",
"cite_spans": [
{
"start": 397,
"end": 413,
"text": "(Kuhlmann, 2013)",
"ref_id": "BIBREF15"
},
{
"start": 510,
"end": 533,
"text": "Rodr\u00edguez et al., 2011)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "No previously defined class of trees simultaneously has high coverage and low-degree polynomial algorithms for parsing, allowing grandparent or sibling features.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We propose 1-Endpoint-Crossing trees, in which for any edge that is crossed, all other edges that cross that edge share an endpoint. While simple to state, this property covers 95.8% or more of dependency parses in natural language treebanks (Table 1). The optimal 1-Endpoint-Crossing tree can be found in faster asymptotic time than any previously proposed mildly non-projective dependency parsing algorithm. We show how any 1-Endpoint-Crossing tree can be decomposed into isolated sets of intervals with one exterior point (Section 3). This is the key insight that allows efficient parsing; the O(n 4 ) parsing algorithm is presented in Section 4. 1-Endpoint-Crossing trees are a subclass of 2-planar graphs (Section 5.1), a class that has been studied in NLP. 1-Endpoint-Crossing trees also have some linguistic interpretation (pairs of cross serial verbs produce 1-Endpoint-Crossing trees, Section 5.2).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "2 Definitions of Non-Projectivity Definition 1. Edges e and f cross if e and f have distinct endpoints and exactly one of the endpoints of f lies between the endpoints of e. Definition 2. A dependency tree is 1-Endpoint-Crossing if for any edge e, all edges that cross e share an endpoint p. Table 1 shows the percentage of dependency parses in the CoNLL-X training sets that are 1-Endpoint-Crossing trees. Across six languages with varying amounts of non-projectivity, 95.8-99.8% of dependency parses in treebanks are 1-Endpoint-Crossing trees. 1 We next review and compare other relevant definitions of non-projectivity from prior work: wellnested with block degree 2, gap-minding, projective, and 2-planar.",
"cite_spans": [
{
"start": 546,
"end": 547,
"text": "1",
"ref_id": null
}
],
"ref_spans": [
{
"start": 292,
"end": 299,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The definitions of block degree and wellnestedness are given below:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Definition 3. For each node u in the tree, a block of the node is \"a longest segment consisting of descendants of u.\" (Kuhlmann, 2013) . The block-degree of u is \"the number of distinct blocks of u\". The block degree of a tree is the maximum block degree of any of its nodes. The gap degree is the number of gaps between these blocks, and so by definition is one less than the block degree. (Kuhlmann, 2013) Definition 4. Two trees \"T 1 and T 2 interleave iff there are nodes l 1 ,r 1 \u2208 T 1 and l 2 ,r 2 \u2208 T 2 such that l 1 < l 2 < r 1 < r 2 .\" A tree is well-nested if no two disjoint subtrees interleave. (Bodirsky et al., 2005) As can be seen in Table 1 , 95.4%-99.9% of dependency parses across treebanks are both well-nested and have block degree 2. The optimal such tree can be found in O(n 7 ) time and O(n 5 ) space (G\u00f3mez-Rodr\u00edguez et al., 2011) . Figure 1: 1a is 1-Endpoint-Crossing, but is neither block degree 2 nor well-nested; 1b is gap-minding but not 2-planar.",
"cite_spans": [
{
"start": 118,
"end": 134,
"text": "(Kuhlmann, 2013)",
"ref_id": "BIBREF15"
},
{
"start": 391,
"end": 407,
"text": "(Kuhlmann, 2013)",
"ref_id": "BIBREF15"
},
{
"start": 607,
"end": 630,
"text": "(Bodirsky et al., 2005)",
"ref_id": "BIBREF2"
},
{
"start": 824,
"end": 854,
"text": "(G\u00f3mez-Rodr\u00edguez et al., 2011)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [
{
"start": 649,
"end": 656,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Definition 5. A tree is gap-minding if it is wellnested, has gap degree at most 1, and has gap inheritance degree 0. Gap inheritance degree 0 requires that there are no child nodes with descendants in more than one of their parent's blocks. (Pitler et al., 2012) Gap-minding trees can be parsed in O(n 5 ) (Pitler et al., 2012) . They have slightly less empirical coverage, however: 90.4-97.7% (Table 1) .",
"cite_spans": [
{
"start": 241,
"end": 262,
"text": "(Pitler et al., 2012)",
"ref_id": "BIBREF19"
},
{
"start": 306,
"end": 327,
"text": "(Pitler et al., 2012)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [
{
"start": 394,
"end": 403,
"text": "(Table 1)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Definition 6. A tree is projective if it has block degree 1 (gap degree 0). This definition has the least coverage (as low as 63.6% for Dutch), but can be parsed in O(n 3 ) (Eisner, 2000).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Definition 7. A tree is 2-planar if each edge can be drawn either above or below the sentence such that no edges cross (G\u00f3mez-Rodr\u00edguez and Nivre, 2010).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "G\u00f3mez-Rodr\u00edguez and Nivre (2010) presented a transition-based parser for 2-planar trees, but there is no known globally optimal parsing algorithm for 2-planar trees.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Clearly projective gap-minding well-nested with block degree at most 2. In Section 5.1, we prove the somewhat surprising fact that 1-Endpoint-Crossing 2-planar. These are two distinct hierarchies capturing different dimensions of nonprojectivity: 1-Endpoint-Crossing \u2286 well-nested with block degree 2 ( Figure 1a) , and gap-minding \u2286 2-planar ( Figure 1b ).",
"cite_spans": [],
"ref_spans": [
{
"start": 303,
"end": 313,
"text": "Figure 1a)",
"ref_id": null
},
{
"start": 345,
"end": 354,
"text": "Figure 1b",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We introduce notation to facilitate the discussion: Table 1 : Over 95% of the dependency parse trees in the CoNLL-X training sets are 1-Endpoint-Crossing trees. Coverage statistics and parsing times of previously proposed properties are shown for comparison.",
"cite_spans": [],
"ref_spans": [
{
"start": 52,
"end": 59,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Definition 8. Within a 1-Endpoint-Crossing tree, the (crossing) pencil 2 of an edge e (P(e)) is defined as the set of edges (sharing an endpoint) that cross e. The (crossing pencil) point of an edge e (Pt(e)) is defined as the endpoint that all edges in P(e) share.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "We will use e uv to indicate an edge in either direction between u and v, i.e., either",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "u \u2192 v or u \u2190 v.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Before defining the parsing algorithm, we first give some intuition by analogy to parsing for projective trees. (This argument mirrors that of Eisner (2000, pps.38-39) .) Projective trees can be produced using dynamic programming over intervals. Intervals are sufficient for projective trees: consider any edge e uv in a projective tree.",
"cite_spans": [
{
"start": 143,
"end": 167,
"text": "Eisner (2000, pps.38-39)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "The vertices in (u, v) must only have edges to vertices in [u, v] . If there were an edge between a vertex in (u, v) and a vertex outside [u, v] , such an edge would cross e uv , which would contradict the assumption of projectivity. Thus every edge in a projective tree creates one interior interval isolated from the rest of the tree, allowing dynamic programming over intervals. We can analyze the case of 1-Endpoint-Crossing trees in a similar fashion: Definition 9. An isolated interval [i, j] has no edges between the vertices in (i, j) and the vertices outside of [i, j] . An interval and one exterior vertex [i, j] \u222a {x} is called an isolated crossing region if the following two conditions are satisfied:",
"cite_spans": [
{
"start": 59,
"end": 65,
"text": "[u, v]",
"ref_id": null
},
{
"start": 138,
"end": 144,
"text": "[u, v]",
"ref_id": null
},
{
"start": 492,
"end": 498,
"text": "[i, j]",
"ref_id": null
},
{
"start": 571,
"end": 577,
"text": "[i, j]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "1. There are no edges between the vertices \u2208 (i, j) and vertices /",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "\u2208 [i, j] \u222a {x} 2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "None of the edges between x and vertices \u2208 (i, j) are crossed by any edges with both endpoints \u2208 (i, j) Proof. First note that as p = Pt(e uv ), P(e uv ) is non-empty: there must be at least one edge between vertices \u2208 (u, v) and vertices / \u2208 [u, v] . p is either / \u2208 [u, v] (i.e., p = l\u2228p = r) or \u2208 (u, v) (i.e., p = m): Case 1: p = l \u2228 p = r: Assume without loss of generality that u < v < p (i.e., p = r).",
"cite_spans": [
{
"start": 243,
"end": 249,
"text": "[u, v]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "u v p (a) [u, v] \u222a {p} u v p (b) [v, p] \u222a {u} u p v (c) [u, p] \u222a {v} u p v (d) [p, v] \u222a {u}",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "(a) [u, v] \u222a {p} is an isolated crossing region (Figure 2a ): Condition 1: Assume for the sake of contradiction that there were an edge between a vertex \u2208 (u, v) and a vertex /",
"cite_spans": [],
"ref_spans": [
{
"start": 48,
"end": 58,
"text": "(Figure 2a",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "\u2208 [u, v]\u222a{p}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Then such an edge would cross e uv without having an endpoint at p, which contradicts the 1-Endpoint-Crossing property for e uv .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Condition 2: Assume that for some e pa such that a \u2208 (u, v), e pa was crossed by an edge in the interior of (u, v). The interior edge would not share an endpoint with e uv ; since e uv also crosses e pa , this contradicts the 1-Endpoint-Crossing property for e pa . (b) [v, p] \u222a {u} is an isolated crossing region ( Figure 2b ): Condition 1: Assume there were an edge e ab with a \u2208 (v, p) and b / \u2208",
"cite_spans": [],
"ref_spans": [
{
"start": 316,
"end": 325,
"text": "Figure 2b",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "[v, p] \u222a {u}. b cannot be in (u, v) (by above). Thus, b / \u2208 [u, p]",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": ", which implies that e ab crosses the edges in P(e uv ); as e uv does not share a vertex with e ab , this contradicts the 1-Endpoint-Crossing property for all edges in P(e uv ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Condition 2: Assume that for some e ua such that a \u2208 (v, p), e ua was crossed by an edge in the interior of (v, p). e ua would also be crossed by all the edges in P(e uv ); as the interior edge would not share an endpoint with any of the edges in P(e uv ), this would contradict the 1-Endpoint-Crossing property for e ua .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Case 2: p = m : ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "/ \u2208 [u, p] \u222a {v} (b \u2208 (p, v) \u2228 b / \u2208 [u, v]). First assume b \u2208 (p, v)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": ". Then e ab crosses all edges in P(e uv ); as e ab does not share an endpoint with e uv , this contradicts the 1-Endpoint-Crossing property for the edges in P(e uv ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Next assume b / \u2208 [u, v].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Then e ab crosses e uv ; since a = p \u2227 b = p, this violates the 1-Endpoint-Crossing property for e uv .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "Condition 2: Assume that for some e va with a \u2208 (u, p), e va was crossed by an edge in the interior of (u, v). e va is also crossed by all the edges in P(e uv ); as the interior edge will not share an endpoint with the edges in P(e uv ), this contradicts the 1-Endpoint-Crossing property for e va . ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Edges (and their Crossing Point) Define Isolated Crossing Regions",
"sec_num": "3"
},
{
"text": "The optimal 1-Endpoint-Crossing tree can be found using a dynamic programming algorithm that exploits the fact that edges and their crossing points define intervals and isolated crossing regions. This section assumes an arc-factored model, in which the score of a tree is defined as the sum of the scores of its edges; scoring functions for edges are generally learned from data. The dynamic program uses five types of subproblems: interval sub-problems for each interval",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "[i, j], denoted Int[i, j]",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": ", and four types of isolated crossing region sub-problems for each interval and exterior point [i, j] \u222a {x}, which differ in whether edges from the exterior point may be crossed by edges with an endpoint at the Left point of the interval, the Right point, both LR, or Neither (Figure 3 ). L[i, j, x], for example, refers to an isolated crossing region over the interval [i, j] with an exterior point of x, in which edges incident to i (the left boundary point) can cross edges between x and (i, j).",
"cite_spans": [
{
"start": 370,
"end": 376,
"text": "[i, j]",
"ref_id": null
}
],
"ref_spans": [
{
"start": 276,
"end": 285,
"text": "(Figure 3",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "These distinctions allow the 1-Endpoint-Crossing property to be globally enforced; crossing edges in one region may constrain edges in another. For example, consider that Figure 2a allows edges with an endpoint at v to cross the edges from p, while Figure 2b allows edges from u into (v, p). Both simultaneously would cause a 1-Endpoint-Crossing violation for the edges in P(e uv ). Figures 4 and 5 show valid combinations of the sub-problems in Figure 3 .",
"cite_spans": [],
"ref_spans": [
{
"start": 171,
"end": 180,
"text": "Figure 2a",
"ref_id": "FIGREF1"
},
{
"start": 249,
"end": 259,
"text": "Figure 2b",
"ref_id": "FIGREF1"
},
{
"start": 447,
"end": 455,
"text": "Figure 3",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "The full dynamic program is shown in Appendix A. The final answer must be a valid dependency tree, which requires each word to have exactly one parent and prohibits cycles. We use booleans (b i , b j , b x ) for each sub-problem, in which the boolean is set to true if and only if the solution to the sub-problem must contain the incoming (parent) edge for the corresponding boundary point. We use the suffix AFromB for a sub-problem to enforce that a boundary point A must be descended from boundary point B (to avoid cycles). We will occasionally mention these issues, (a) If l \u2208 (k, j]: but for simplicity focus the discussion on the decomposition into crossing regions and the maintenance of the 1-Endpoint-Crossing property. Edge direction does not affect these points of focus, and so we will refer simply to S[e uv ] to mean the score of either the edge from u to v or vice-versa.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "k i l j (b) If l \u2208 (i, k): l i k j (i) If",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "In the following subsections, we show that the optimal parse for each type of sub-problem can be decomposed into smaller valid sub-problems. If we take the maximum over all these possible combinations of smaller solutions, we can find the maximum scoring parse for that sub-problem. Note that the overall tree is a valid sub-problem (over the interval [0, n]), so the argument will also hold for finding the optimal overall tree. Each individual vertex and each pair of adjacent vertices (with no edges) trivially form isolated intervals (as there is no interior); this forms the base case of the dynamic program.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "The overall dynamic program takes O(n 4 ) time: there are O(n 2 ) interval sub-problems, each of which needs two free split points to find the maximum, and O(n 3 ) region sub-problems, each of which is a maximization over one free split point.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Algorithm",
"sec_num": "4"
},
{
"text": "Consider an isolated interval sub-problem Int[i, j]. There are three cases: (1) there are no edges between i and the rest of the interval, (2) the longest edge incident to i is not crossed, (3) the longest edge incident to i is crossed. An Int sub-problem can be decomposed into smaller valid sub-problems in each of these three cases. Finding the optimal Int forest can be done by taking the maximum over these cases: No edges between i and [i + 1, j]: The same set of edges is also a valid Int[i + 1, j] sub-problem. b i must be true for the Int[i + 1, j] sub-problem to ensure i + 1 receives a parent. Furthest edge from i is not crossed: If the furthest edge is to j, the problem can be decomposed into S[e ij ] + Int [i, j] , as that edge has no effect on the interior of the interval. Clearly, this is only applicable if the boundary point needed a parent (as indicated by the booleans) and the boolean must then be updated accordingly. If the furthest edge is to some k in (i, j), the problem is decomposed into",
"cite_spans": [
{
"start": 722,
"end": 728,
"text": "[i, j]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an Int sub-problem",
"sec_num": "4.1"
},
{
"text": "S[e ik ] + Int[i, k] + Int[k, j].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an Int sub-problem",
"sec_num": "4.1"
},
{
"text": "Furthest edge from i is crossed: This is the most interesting case, which uses two split points: the other endpoint of the edge (k), and l = Pt(e ik ). The dynamic program depends on the order of k and l. l / \u2208 (i, k) ( Figure 4a ): By Lemma 1, [i, k] \u222a {l} and [k, l]\u222a{i} form isolated regions. (l, j] is the remainder of the interval, and the only vertex from [i, l) that can have edges into (l, j] is k: (i, k) and (k, l) are part of isolated regions, and i is ruled out because k was i's furthest neighbor.",
"cite_spans": [],
"ref_spans": [
{
"start": 220,
"end": 229,
"text": "Figure 4a",
"ref_id": "FIGREF6"
}
],
"eq_spans": [],
"section": "Decomposing an Int sub-problem",
"sec_num": "4.1"
},
{
"text": "If at least one edge from k into (l, j] (the dashed line in Figure 4a) exists, the decomposition is as in Figure 4a , Case i; otherwise, it is as in Figure 4a , Case ii. In Case i, e ik and the edge(s) between k and (l, j] force all of the edges between l and (i, k) to have k as their Pt. Thus, the region [i, k] \u222a {l} must be a sub-problem of type R (Figure 3b ), as these edges from l can only be crossed by edges with an endpoint at k (the right endpoint of [i, k] ). All of the edges between k and (l, j] have l as their Pt, as they are crossed by all the edges in P(e ik ), and so the sub-problem corresponding to the region [l, j] \u222a {k} is of type L (Figure 3a) . In Case ii, each of the edges in P(e ik ) may choose either i or k as their Pt, so the sub-problem [i, k] \u222a {l} is of type LR (Figure 3c ). Note that l = j is a special case of Case ii in which the rightmost interval Int[l, j] is empty. l \u2208 (i, k) ( Figure 4b ): [i, l] \u222a {k} and [l, k] \u222a {i} form isolated crossing regions by Lemma 1. There cannot both be edges between i and (l, k) and between k and (i, l), as this would violate 1-Endpoint-Crossing for the edges in P(e ik ). If there are any edges between i and (l, k) (i.e., Case i in Figure 4b ), then all of the edges in P(e ik ) must choose i as their Pt, and so these edges cannot be crossed at all in the region [k, j] \u222a {l}, and there cannot be any edges from k into (i, l). If there are no such edges (Case ii in 4b), then k must be a valid Pt for all edges in P(e ik ), and so there can both be edges from k into (i, l) and [k, j] \u222a {l} may be of type L (allowing crossings with an endpoint at k).",
"cite_spans": [
{
"start": 462,
"end": 468,
"text": "[i, k]",
"ref_id": null
}
],
"ref_spans": [
{
"start": 60,
"end": 70,
"text": "Figure 4a)",
"ref_id": "FIGREF6"
},
{
"start": 106,
"end": 115,
"text": "Figure 4a",
"ref_id": "FIGREF6"
},
{
"start": 149,
"end": 158,
"text": "Figure 4a",
"ref_id": "FIGREF6"
},
{
"start": 352,
"end": 362,
"text": "(Figure 3b",
"ref_id": "FIGREF5"
},
{
"start": 657,
"end": 668,
"text": "(Figure 3a)",
"ref_id": "FIGREF5"
},
{
"start": 797,
"end": 807,
"text": "(Figure 3c",
"ref_id": "FIGREF5"
},
{
"start": 921,
"end": 930,
"text": "Figure 4b",
"ref_id": "FIGREF6"
},
{
"start": 1211,
"end": 1220,
"text": "Figure 4b",
"ref_id": "FIGREF6"
}
],
"eq_spans": [],
"section": "Decomposing an Int sub-problem",
"sec_num": "4.1"
},
{
"text": "An LR sub-problem is over an isolated crossing region [i, j] \u222a {x}, such that edges from x into (i, j) may be crossed by edges with an endpoint at either i or j. This sub-problem is only defined when neither i nor j get their parent from this sub-problem. From a top-down perspective, this case is only used when there will be an edge between i and j (as in one of the sub-problems in Figure 4a , Case ii).",
"cite_spans": [],
"ref_spans": [
{
"start": 385,
"end": 394,
"text": "Figure 4a",
"ref_id": "FIGREF6"
}
],
"eq_spans": [],
"section": "Decomposing an LR sub-problem",
"sec_num": "4.2"
},
{
"text": "If none of the edges from x are crossed by any edges with an endpoint at i, this can be considered an R problem. Similarly, if none are crossed by any edges with an endpoint at j, this may be considered an L sub-problem. The only case which needs discussion is when both edges with an endpoint at i and also at j cross edges from x; see Figure 3c for a schematic. In that scenario, there must exist a split point such that: (1) to the left of the point, all edges crossing x-edges have an endpoint at i, and to the right of the point, all such edges have an endpoint at j, and (2) no edges in the region cross the split point.",
"cite_spans": [],
"ref_spans": [
{
"start": 337,
"end": 346,
"text": "Figure 3c",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Decomposing an LR sub-problem",
"sec_num": "4.2"
},
{
"text": "Let r i be i's rightmost child in (i, j); let l j be j's leftmost child in (i, j). Every edge from x into (i, r i ) is crossed by e ir i ; every edge between x and (l j , j) is crossed by e l j j . e ir i cannot cross e l j j , as that would either violate 1-Endpoint-Crossing (because of the x-interior edges) or create a cycle (if both children are also connected by an edge to x). r i and l j also cannot be equal: as neither i nor j may be assigned a parent, they must both be in the direction of the child, and the child cannot have multiple parents. Thus, r i is to the left of l j . Any split point between r i and l j clearly satisfies (1). There is at least one point within [r i , l j ] that satisfies (2) as long as there is not a chain of crossing edges from e ir i to e l j j . The proof is omitted for space reasons, but such a chain can be ruled out using a counting argument similar to that in the proof in Section 5.1. The decomposition is:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an LR sub-problem",
"sec_num": "4.2"
},
{
"text": "L[i, k, x] + R[k, j, x] for some k \u2208 (i, j).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an LR sub-problem",
"sec_num": "4.2"
},
{
"text": "Consider the maximum scoring forest of type N over [i, j] \u222a {x} (Figure 3d ; no edges from x are crossed in this sub-problem). If there are no edges from x, then it is also a valid Int[i, j] sub-problem. If there are edges between x and the endpoints i or j, then the forest with that edge removed is still a valid N sub-problem (with the ancestor and parent bookkeeping updated). Otherwise, if there are edges between x and (i, j), choose the neighbor of x closest to j (call it k). Since the edge e xk is not crossed, there are no edges from [i, k) into (k, j]; since k was the neighbor of x closest to j, there are no edges from x into (k, j]. Thus, the region decomposes into ",
"cite_spans": [],
"ref_spans": [
{
"start": 64,
"end": 74,
"text": "(Figure 3d",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Decomposing an N sub-problem",
"sec_num": "4.3"
},
{
"text": "S[e ik ] + Int[k, j] + N [i, k, x].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an N sub-problem",
"sec_num": "4.3"
},
{
"text": "As an aside, if b x was true (x needed a parent from this sub-problem), and k was a child of x, then x's parent must come from the [i, k] \u222a {x} subproblem. However, it cannot be a descendant of k, as that would cause a cycle. Thus in this case, we call the sub-problem a N _XF romI problem, to indicate that x needs a parent, i and k do not, and x must be descended from i, not k.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an N sub-problem",
"sec_num": "4.3"
},
{
"text": "An L sub-problem over [i, j] \u222a {x} requires that any edges in this region that cross an edge with an endpoint at x have an endpoint at i (the left endpoint). If there are no edges between x and [i, j] in an L subproblem, then it is also a valid Int sub-problem over [i, j] . If there are edges between x and i or j, then the sub-problem can be decomposed into that edge plus the rest of the forest with that edge removed. The interesting case is when there are edges between x and the interior ( Figure 5 ). Let k be the neighbor of x within (i, j) that is furthest from i. As all edges that cross e xk will have an endpoint at i, there are no edges between (i, k) and (k, j]. Combined with the fact that k was the neighbor of x closest to j, we have that [i, k] \u222a {x} must form an iso- If there are additional edges between x and the interior (Case i in 5), all of the edges from i into (k, j] cross both the edge e xk and the other edges from x into (i, k). The Pt for all these edges must therefore be x, and as x is not in the region [k, j] \u222a {i}, those edges cannot be crossed at all in that region (i.e., [k, j] \u222a {i} must be of type N ). If there are no additional edges from x into (i, k) (Case ii in Figure 5) , then all of the edges from i into (k, j) must choose either x or k as their Pt. As there will be no more edges from x, choosing k as their Pt allows strictly more trees, and so [k, j] \u222a {i} can be of type L (allowing edges from i to be crossed in that region by edges with an endpoint at k).",
"cite_spans": [
{
"start": 22,
"end": 28,
"text": "[i, j]",
"ref_id": null
},
{
"start": 266,
"end": 272,
"text": "[i, j]",
"ref_id": null
}
],
"ref_spans": [
{
"start": 496,
"end": 504,
"text": "Figure 5",
"ref_id": "FIGREF8"
},
{
"start": 1209,
"end": 1218,
"text": "Figure 5)",
"ref_id": "FIGREF8"
}
],
"eq_spans": [],
"section": "Decomposing an L or R sub-problem",
"sec_num": "4.4"
},
{
"text": "An R sub-problem is identical, with k instead chosen to be the neighbor of x furthest from j.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Decomposing an L or R sub-problem",
"sec_num": "4.4"
},
{
"text": "Trees are 2-Planar",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "The 2-planar characterization of dependency structures in G\u00f3mez-Rodr\u00edguez and Nivre (2010) exactly correspond to 2-page book embeddings in graph theory: an embedding of the vertices in a graph onto a line (by analogy, along the spine of a book), and the edges of the graph onto one of 2 (more generally, k) half-planes (pages of the book) such that no edges on the same page cross (Bernhart and Kainen, 1979) . The problem of finding an embedding that minimizes the number of pages required is a natural formulation of many problems arising in disparate areas of computer science, for example, sorting a sequence using the minimum number of stacks (Even and Itai, 1971) , or constructing fault-tolerant layouts in VLSI design (Chung et al., 1987) . In this section we prove 1-Endpoint-Crossing \u2286 2-planar. These classes are not equal ( Figure 6 ). We first prove some properties about the crossings graphs (G\u00f3mez-Rodr\u00edguez and Nivre, 2010) of 1-Endpoint-Crossing trees. The crossings graph of a Figure 7 : The crossing graphs for Figures 1a and 1b. graph has a vertex corresponding to each edge in the original, and an edge between two vertices if the two edges they correspond to cross. The crossings graphs for the dependency trees in Figures 1a and 1b are shown in Figures 7a and 7b , respectively.",
"cite_spans": [
{
"start": 381,
"end": 408,
"text": "(Bernhart and Kainen, 1979)",
"ref_id": "BIBREF1"
},
{
"start": 648,
"end": 669,
"text": "(Even and Itai, 1971)",
"ref_id": "BIBREF11"
},
{
"start": 726,
"end": 746,
"text": "(Chung et al., 1987)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [
{
"start": 836,
"end": 844,
"text": "Figure 6",
"ref_id": "FIGREF9"
},
{
"start": 995,
"end": 1003,
"text": "Figure 7",
"ref_id": null
},
{
"start": 1030,
"end": 1048,
"text": "Figures 1a and 1b.",
"ref_id": null
},
{
"start": 1237,
"end": 1255,
"text": "Figures 1a and 1b",
"ref_id": null
},
{
"start": 1269,
"end": 1286,
"text": "Figures 7a and 7b",
"ref_id": null
}
],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Lemma 2. No 1-Endpoint-Crossing tree has a cycle of length 3 in its crossings graph.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Proof. Assume there existed a cycle e 1 , e 2 , e 3 . e 1 and e 3 must share an endpoint, as they both cross e 2 . Since e 1 and e 3 share an endpoint, e 1 and e 3 do not cross. Contradiction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Lemma 3. Any odd cycle of size n (n \u2265 4) in a crossings graph of a 1-Endpoint-Crossing tree uses at most n distinct vertices in the original graph.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Proof. Let e 1 , e 2 , ..., e n be an odd cycle in a crossings graph of a 1-Endpoint-Crossing tree with n \u2265 4. Since n \u2265 4, e 1 , e 2 , e n\u22121 , and e n are distinct edges. Let a be the vertex that e 1 and e n\u22121 share (because they both cross e n ) and let b be the vertex that e 2 and e n share (both cross e 1 ). Note that e 1 and e n\u22121 cannot contain b and that e 2 and e n cannot contain a (otherwise they would not cross an edge adjacent to them along the cycle).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "We will now consider how many vertices each edge can introduce that are distinct from all vertices previously seen in the cycle. e 1 and e 2 necessarily introduce two distinct vertices each.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Let e o be the first odd edge that contains b (we know one exists since e n contains b). (o is at least 3, since e 1 does not contain b.) e o 's other vertex must be the one shared with e o\u22122 (e o\u22122 does not contain b, since e o was the first odd edge to contain b). Therefore, both of e o 's vertices have already been seen along the cycle.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Similarly, let e e be the first even edge that contains an a. By the same reasoning, e e must not introduce any new vertices.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "All other edges e i such that i > 2 and e i = e o and e i = e e introduce at most one new vertex, since one must be shared with the edge e i\u22122 . There are n \u2212 4 such edges.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Counting up all possibilities, the maximum number of distinct vertices is 4 + (n \u2212 4) = n.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Theorem 1. 1-Endpoint-Crossing trees \u2286 2-planar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Proof. Assume there existed an odd cycle in the crossings graph of a 1-Endpoint-Crossing tree. The cycle has size at least 5 (by Lemma 2). There are at least as many edges as vertices in the subgraph of the forest induced by the vertices used in the cycle (by Lemma 3). That implies the existence of a cycle in the original graph, contradicting that the original graph was a tree.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Since there are no odd cycles in the crossings graph, the crossings graph of edges is bipartite. Each side of the bipartite graph can be assigned to a page, such that no two edges on the same page cross. Therefore, the original graph was 2-planar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Graph Theory: All 1-Endpoint-Crossing",
"sec_num": "5.1"
},
{
"text": "Constructions and Successive Cyclicity",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "Cross-serial verb constructions were used to provide evidence for the \"non-context-freeness\" of natural language (Shieber, 1985) . Cross-serial verb constructions with two verbs form 1-Endpoint-Crossing trees. Below is a cross-serial sentence from Swiss-German, from (1) in Shieber (1985) :",
"cite_spans": [
{
"start": 113,
"end": 128,
"text": "(Shieber, 1985)",
"ref_id": "BIBREF22"
},
{
"start": 274,
"end": 288,
"text": "Shieber (1985)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "das mer em Hans es huus h\u00e4lfed aastriiche that we HansDAT the houseACC helped paint",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "The edges (that, helped ), (helped , we), and (helped , Hans) are each only crossed by an edge with an endpoint at paint; the edge (paint, house) is only crossed by edges with an endpoint at helped. More generally, with a set of two cross serial verbs in a subordinate clause, each verb should suffice as the crossing point for all edges incident to the other verb that are crossed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "Cross-serial constructions with three or more verbs would have dependency trees that violate 1- Figure 8 : An example of wh-movement over a potentially unbounded number of clauses. The edges between the heads of each clause cross the edges from trace to trace, but all obey 1-Endpoint-Crossing.",
"cite_spans": [],
"ref_spans": [
{
"start": 96,
"end": 104,
"text": "Figure 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "Endpoint-Crossing. Psycholinguistically, between two and three verbs is exactly where there is a large change in the sentence processing abilities of human listeners (based on both grammatical judgments and scores on a comprehension task) (Bach et al., 1986) . More speculatively, there may be a connection between the form of 1-Endpoint-Crossing trees and phases (roughly, propositional units such as clauses) in Minimalism (Chomsky et al., 1998) . Figure 8 shows an example of wh-movement over a potentially unbounded number of clauses. The phaseimpenetrability condition (PIC) states that only the head of the phase and elements that have moved to its edge are accessible to the rest of the sentence (Chomsky et al., 1998, p.22) . Movement is therefore required to be successive cyclic, with a moved element leaving a chain of traces at the edge of each clause on its way to its final pronounced location (Chomsky, 1981) . In Figure 8 , notice that the crossing edges form a repeated pattern that obeys the 1-Endpoint-Crossing property. More generally, we suspect that trees satisfying the PIC will tend to also be 1-Endpoint-Crossing. Furthermore, if the traces were not at the edge of each clause, and instead were positioned between a head and one of its arguments, 1-Endpoint-Crossing would be violated. For example, if t 2 in Figure 8 were between C and said 2 , then the edge (t 1 , t 2 ) would cross (say, said 1 ), (said 1 , said 2 ), and (C, said 2 ), which do not all share an endpoint. An exploration of these linguistic connections may be an interesting avenue for further research.",
"cite_spans": [
{
"start": 239,
"end": 258,
"text": "(Bach et al., 1986)",
"ref_id": "BIBREF0"
},
{
"start": 425,
"end": 447,
"text": "(Chomsky et al., 1998)",
"ref_id": "BIBREF4"
},
{
"start": 703,
"end": 731,
"text": "(Chomsky et al., 1998, p.22)",
"ref_id": null
},
{
"start": 908,
"end": 923,
"text": "(Chomsky, 1981)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 450,
"end": 458,
"text": "Figure 8",
"ref_id": null
},
{
"start": 929,
"end": 937,
"text": "Figure 8",
"ref_id": null
},
{
"start": 1334,
"end": 1342,
"text": "Figure 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Linguistics: Cross-serial Verb",
"sec_num": "5.2"
},
{
"text": "1-Endpoint-Crossing trees characterize over 95% of structures found in natural language treebank, and can be parsed in only a factor of n more time than projective trees. The dynamic programming algorithm for projective trees (Eisner, 2000) has been extended to handle higher order factors (McDonald and Pereira, 2006; Carreras, 2007; Koo and Collins, 2010) , adding at most a factor of n to the edgebased running time; it would be interesting to extend the algorithm presented here to include higher order factors. 1-Endpoint-Crossing is a condition on edges, while properties such as well-nestedness or block degree are framed in terms of subtrees. Three edges will always suffice as a certificate of a 1-Endpoint-Crossing violation (two vertex-disjoint edges that both cross a third). In contrast, for a property like ill-nestedness, two nodes might have a least common ancestor arbitrarily far away, and so one might need the entire graph to verify whether the sub-trees rooted at those nodes are disjoint and ill-nested. We have discussed cross-serial dependencies; a further exploration of which linguistic phenomena would and would not have 1-Endpoint-Crossing dependency trees may be revealing. ",
"cite_spans": [
{
"start": 226,
"end": 240,
"text": "(Eisner, 2000)",
"ref_id": "BIBREF10"
},
{
"start": 290,
"end": 318,
"text": "(McDonald and Pereira, 2006;",
"ref_id": "BIBREF16"
},
{
"start": 319,
"end": 334,
"text": "Carreras, 2007;",
"ref_id": "BIBREF3"
},
{
"start": 335,
"end": 357,
"text": "Koo and Collins, 2010)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "Int[i, j, F, bj] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 Int[i + 1, j, T, F ] if bj = F S[i, j] + Int[i, j, F, F ] if bj = T max k\u2208(i,j) S[i, k]+ \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 Int[i, k, F, F ] + Int[k, j, F, bj] max T F (b j ,{b l ,br }) LR[i, k, j, b l ] + Int[k, j, F, br] max l\u2208(k,j),T F (T,{b l ,bm,br }) R[i, k, l, F, F, b l ] + Int[k, l, F, bm] + L[l, j, k, br, bj, F ] LR[i, k, l, b l ] + Int[k, l, F, bm] + Int[l, j, br, bj] max l\u2208(i,k),T F (T,{b l ,bm,br }) Int[i, l, F, b l ] + L[l, k, i, bm, F, F ] + N [k, j, l, F, bj, br] R[i, l, k, F, b l , F ] + Int[l, k, bm, F ] + L[k, j, l, F, bj, br] Int[i, j, T, F ] \u2190 symmetric to Int[i, j, F, T ] Int[i, j, T, T ] \u2190 \u2212\u221e LR[i, j, x, bx] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f3 L[i, j, x, F, F, bx] R[i, j, x, F, F, bx] max k\u2208(i,j),T F (bx,{b xl ,bxr }),T F (T,{b kl ,b kr }) L[i, k, x, F, b kl , b xl ] + R[k, j, x, b kr , F, bxr] N [i, j, x, bi, bj, F ] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f3 Int[i, j, bi, bj] S[x, i] + N [i, j, x, F, bj, F ] if bi = T S[x, j] + N [i, j, x, bi, F, F ] if bj = T max k\u2208(i,j) S[x, k] + N [i, k, x,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "Conventional edges from the artificial root node to the root(s) of the sentence reduce the empirical coverage of 1-Endpoint-Crossing trees. Excluding these artificial root edges, the empirical coverage for Dutch rises to 12949 (97.0%). These edges have no effect on the coverage of well-nested trees with block degree at most 2, gap-minding trees, or projective trees.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "This notation comes from an analogy to geometry: \"A set of distinct, coplanar, concurrent lines is a pencil of lines\"(Ringenberg, 1967, p. 221); concurrent lines all intersect at the same single point.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We would like to thank Julie Legate for an interesting discussion. This material is based upon work supported under a National Science Foundation Graduate Research Fellowship, NSF Award CCF 1137084, and Army Research Office MURI grant W911NF-07-1-0216.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
},
{
"text": "A Dynamic Program to find the maximum scoring 1-Endpoint-Crossing Tree Input: Matrix S: S[i, j] is the score of the directed edge (i, j) Output: Maximum score of a 1-Endpoint-Crossing tree overShorthand for booleans: T F (x, S) := if x = T , exactly one of the set S is true if x = F , all of the set S must be false bi, bj, bx are true iff the corresponding boundary point has its incoming edge (parent) in that sub-problem. For the LR subproblem, bi and bj are always false, and so omitted. For all sub-problems with the suffix AF romB, the boundary point A has its parent edge in the sub-problem solution; the other two boundary points do not. For example, L_XF romI would correspond to having booleans bi = bj = F and bx = T , with the restriction that x must be a descendant of i.",
"cite_spans": [
{
"start": 78,
"end": 95,
"text": "Matrix S: S[i, j]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "annex",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "\u2190 not reachable R_XF romJ[i, j, x] \u2190 symmetric to L_XF romI[i, j, x] R_JF romX[i, j, x] \u2190 symmetric to L_IF romX[i, j, x] R_IF romX[i, j, x] \u2190 symmetric to L_JF romX",
"authors": [
{
"first": "F",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "] ; References",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Bach",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Brown",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Marslen-Wilson",
"suffix": ""
}
],
"year": 1986,
"venue": "Language and Cognitive Processes",
"volume": "1",
"issue": "4",
"pages": "249--262",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R[i, j, x, bi, F, T ] \u2190 symmetric to L[i, j, x, F, bj, T ] R[i, j, x, bi, T, T ] \u2190 not reachable R_XF romJ[i, j, x] \u2190 symmetric to L_XF romI[i, j, x] R_JF romX[i, j, x] \u2190 symmetric to L_IF romX[i, j, x] R_IF romX[i, j, x] \u2190 symmetric to L_JF romX[i, j, x] R_IF romJ[i, j, x] \u2190 symmetric to L_JF romI[i, j, x] References E. Bach, C. Brown, and W. Marslen-Wilson. 1986. Crossed and nested dependencies in german and dutch: A psycholinguistic study. Language and Cognitive Processes, 1(4):249-262.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "The book thickness of a graph",
"authors": [
{
"first": "F",
"middle": [],
"last": "Bernhart",
"suffix": ""
},
{
"first": "P",
"middle": [
"C"
],
"last": "Kainen",
"suffix": ""
}
],
"year": 1979,
"venue": "Journal of Combinatorial Theory, Series B",
"volume": "27",
"issue": "3",
"pages": "320--331",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Bernhart and P.C. Kainen. 1979. The book thickness of a graph. Journal of Combinatorial Theory, Series B, 27(3):320 -331.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Wellnested drawings as models of syntactic structure",
"authors": [
{
"first": "M",
"middle": [],
"last": "Bodirsky",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Kuhlmann",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "M\u00f6hl",
"suffix": ""
}
],
"year": 2005,
"venue": "Tenth Conference on Formal Grammar and Ninth Meeting on Mathematics of Language",
"volume": "",
"issue": "",
"pages": "88--89",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Bodirsky, M. Kuhlmann, and M. M\u00f6hl. 2005. Well- nested drawings as models of syntactic structure. In In Tenth Conference on Formal Grammar and Ninth Meeting on Mathematics of Language, pages 88-1. University Press.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Experiments with a higher-order projective dependency parser",
"authors": [
{
"first": "X",
"middle": [],
"last": "Carreras",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the CoNLL Shared Task Session of EMNLP-CoNLL",
"volume": "7",
"issue": "",
"pages": "957--961",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "X. Carreras. 2007. Experiments with a higher-order projective dependency parser. In Proceedings of the CoNLL Shared Task Session of EMNLP-CoNLL, vol- ume 7, pages 957-961.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Minimalist inquiries: the framework. MIT occasional papers in linguistics. Distributed by MIT Working Papers in Linguistics",
"authors": [
{
"first": "N",
"middle": [],
"last": "Chomsky",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N. Chomsky, Massachusetts Institute of Technology. Dept. of Linguistics, and Philosophy. 1998. Minimal- ist inquiries: the framework. MIT occasional papers in linguistics. Distributed by MIT Working Papers in Linguistics, MIT, Dept. of Linguistics.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Lectures on Government and Binding. Dordrecht: Foris",
"authors": [
{
"first": "N",
"middle": [],
"last": "Chomsky",
"suffix": ""
}
],
"year": 1981,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N. Chomsky. 1981. Lectures on Government and Bind- ing. Dordrecht: Foris.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Embedding graphs in books: A layout problem with applications to VLSI design",
"authors": [
{
"first": "F",
"middle": [],
"last": "Chung",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Leighton",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rosenberg",
"suffix": ""
}
],
"year": 1987,
"venue": "SIAM Journal on Algebraic Discrete Methods",
"volume": "8",
"issue": "1",
"pages": "33--58",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chung, F. Leighton, and A. Rosenberg. 1987. Em- bedding graphs in books: A layout problem with ap- plications to VLSI design. SIAM Journal on Algebraic Discrete Methods, 8(1):33-58.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Question answering passage retrieval using dependency relations",
"authors": [
{
"first": "H",
"middle": [],
"last": "Cui",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "M",
"middle": [
"Y"
],
"last": "Kan",
"suffix": ""
},
{
"first": "T",
"middle": [
"S"
],
"last": "Chua",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 28th annual international ACM SIGIR conference on Research and development in information retrieval",
"volume": "",
"issue": "",
"pages": "400--407",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Cui, R. Sun, K. Li, M.Y. Kan, and T.S. Chua. 2005. Question answering passage retrieval using depen- dency relations. In Proceedings of the 28th annual international ACM SIGIR conference on Research and development in information retrieval, pages 400-407. ACM.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Dependency tree kernels for relation extraction",
"authors": [
{
"first": "A",
"middle": [],
"last": "Culotta",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Sorensen",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 42nd Annual Meeting on Association for Computational Linguistics, page 423. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Culotta and J. Sorensen. 2004. Dependency tree kernels for relation extraction. In Proceedings of the 42nd Annual Meeting on Association for Computa- tional Linguistics, page 423. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Machine translation using probabilistic synchronous dependency insertion grammars",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Ding",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Palmer",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 43rd Annual Meeting on Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "541--548",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Ding and M. Palmer. 2005. Machine translation using probabilistic synchronous dependency insertion gram- mars. In Proceedings of the 43rd Annual Meeting on Association for Computational Linguistics, pages 541-548. Association for Computational Linguistics.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Bilexical grammars and their cubictime parsing algorithms",
"authors": [
{
"first": "J",
"middle": [],
"last": "Eisner",
"suffix": ""
}
],
"year": 2000,
"venue": "Advances in Probabilistic and Other Parsing Technologies",
"volume": "",
"issue": "",
"pages": "29--62",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Eisner. 2000. Bilexical grammars and their cubic- time parsing algorithms. In Harry Bunt and Anton Nijholt, editors, Advances in Probabilistic and Other Parsing Technologies, pages 29-62. Kluwer Academic Publishers, October.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Queues, stacks, and graphs",
"authors": [
{
"first": "S",
"middle": [],
"last": "Even",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Itai",
"suffix": ""
}
],
"year": 1971,
"venue": "Proc. International Symp. on Theory of Machines and Computations",
"volume": "",
"issue": "",
"pages": "71--86",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Even and A. Itai. 1971. Queues, stacks, and graphs. In Proc. International Symp. on Theory of Machines and Computations, pages 71-86.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "A transitionbased parser for 2-planar dependency structures",
"authors": [
{
"first": "C",
"middle": [],
"last": "G\u00f3mez-Rodr\u00edguez",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "1492--1501",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. G\u00f3mez-Rodr\u00edguez and J. Nivre. 2010. A transition- based parser for 2-planar dependency structures. In Proceedings of ACL, pages 1492-1501.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Dependency parsing schemata and mildly non-projective dependency parsing",
"authors": [
{
"first": "C",
"middle": [],
"last": "G\u00f3mez-Rodr\u00edguez",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Carroll",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Weir",
"suffix": ""
}
],
"year": 2011,
"venue": "Computational Linguistics",
"volume": "37",
"issue": "3",
"pages": "541--586",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. G\u00f3mez-Rodr\u00edguez, J. Carroll, and D. Weir. 2011. De- pendency parsing schemata and mildly non-projective dependency parsing. Computational Linguistics, 37(3):541-586.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Efficient third-order dependency parsers",
"authors": [
{
"first": "T",
"middle": [],
"last": "Koo",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of ACL",
"volume": "",
"issue": "",
"pages": "1--11",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Koo and M. Collins. 2010. Efficient third-order de- pendency parsers. In Proceedings of ACL, pages 1-11.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Mildly non-projective dependency grammar",
"authors": [
{
"first": "M",
"middle": [],
"last": "Kuhlmann",
"suffix": ""
}
],
"year": 2013,
"venue": "Computational Linguistics",
"volume": "",
"issue": "2",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Kuhlmann. 2013. Mildly non-projective dependency grammar. Computational Linguistics, 39(2).",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Online learning of approximate dependency parsing algorithms",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of EACL",
"volume": "",
"issue": "",
"pages": "81--88",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald and F. Pereira. 2006. Online learning of approximate dependency parsing algorithms. In Pro- ceedings of EACL, pages 81-88.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "On the complexity of non-projective data-driven dependency parsing",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Satta",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 10th International Conference on Parsing Technologies",
"volume": "",
"issue": "",
"pages": "121--132",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald and G. Satta. 2007. On the complexity of non-projective data-driven dependency parsing. In Proceedings of the 10th International Conference on Parsing Technologies, pages 121-132.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Non-projective dependency parsing using spanning tree algorithms",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Ribarov",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Haji\u010d",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "523--530",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald, F. Pereira, K. Ribarov, and J. Haji\u010d. 2005. Non-projective dependency parsing using spanning tree algorithms. In Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing, pages 523-530. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Dynamic programming for higher order parsing of gap-minding trees",
"authors": [
{
"first": "E",
"middle": [],
"last": "Pitler",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Kannan",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Marcus",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "478--488",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E. Pitler, S. Kannan, and M. Marcus. 2012. Dynamic programming for higher order parsing of gap-minding trees. In Proceedings of EMNLP, pages 478-488.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "College geometry",
"authors": [
{
"first": "L",
"middle": [
"A"
],
"last": "Ringenberg",
"suffix": ""
}
],
"year": 1967,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L.A. Ringenberg. 1967. College geometry. Wiley.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Vine pruning for efficient multi-pass dependency parsing",
"authors": [
{
"first": "A",
"middle": [],
"last": "Rush",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Petrov",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of NAACL",
"volume": "",
"issue": "",
"pages": "498--507",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Rush and S. Petrov. 2012. Vine pruning for effi- cient multi-pass dependency parsing. In Proceedings of NAACL, pages 498-507.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Evidence against the contextfreeness of natural language",
"authors": [
{
"first": "M",
"middle": [],
"last": "Shieber",
"suffix": ""
}
],
"year": 1985,
"venue": "Linguistics and Philosophy",
"volume": "8",
"issue": "3",
"pages": "333--343",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Shieber. 1985. Evidence against the context- freeness of natural language. Linguistics and Philoso- phy, 8(3):333-343.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Generalized higherorder dependency parsing with cube pruning",
"authors": [
{
"first": "H",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "320--331",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Zhang and R. McDonald. 2012. Generalized higher- order dependency parsing with cube pruning. In Pro- ceedings of EMNLP, pages 320-331.",
"links": null
}
},
"ref_entries": {
"FIGREF1": {
"num": null,
"type_str": "figure",
"text": "An edge e uv and Pt(e uv ) = p form two sets of isolated crossing regions (Lemma 1). 2a and 2b show p / \u2208 (u, v); 2c and 2d show p \u2208 (u, v). Lemma 1. Consider any edge e uv and Pt(e uv ) = p in a 1-Endpoint-Crossing forest F . Let l, r, and m denote the leftmost, rightmost, and middle point out of {u, v, p}, respectively. Then the three points u, v, and p define two isolated crossing regions: (1) [l, m] \u222a {r}, and (2) [m, r] \u222a {l}.",
"uris": null
},
"FIGREF2": {
"num": null,
"type_str": "figure",
"text": "(a)[u, p] \u222a {v} is an isolated crossing region (Figure 2c): Condition 1: Assume there were an edge e ab with a \u2208 (u, p) and b",
"uris": null
},
"FIGREF3": {
"num": null,
"type_str": "figure",
"text": "(b)[p, v] \u222a {u} is an isolated crossing region(Figure 2d): Symmetric to the above.",
"uris": null
},
"FIGREF5": {
"num": null,
"type_str": "figure",
"text": "Isolated crossing region sub-problems.",
"uris": null
},
"FIGREF6": {
"num": null,
"type_str": "figure",
"text": "the dashed edge exists: All the edges from l into (i, k) must choose k as their Pt. The interval decomposes into S[e ik ] + R[i, k, l] + Int[k, l] + L[l, j, k]: If no edges like the dashed edge exist: All edges from l into (i, k) may choose either i or k as their Pt. The interval decomposes into S[e ik ] + LR[i, k, l] + Int[k, l] + Int[l, j]: If dashed edge exists: All the edges from l into (k, j] must choose i as their Pt. The interval decomposes into S[e ik ] + Int[i, l] + L[l, k, i] + N [k, j, l]: If no edges like the dashed edge exist: All edges from l may choose k as their Pt. The interval decomposes into S[e ik ] + R[i, l, k] + Int[l, k] + L[k, j, l]: Decomposing an Int[i, j] sub-problem, with Pt(e ik ) = l",
"uris": null
},
"FIGREF7": {
"num": null,
"type_str": "figure",
"text": "If dashed edge exists: All the edges from i into (k, j] must choose x as their Pt. The interval decomposes into S[e xk ] + L[i, k, x] + N [k, j, i]: If no edges like the dashed edge exist: Edges from i into (k, j] may choose k as their Pt. The interval decomposes into S[e xk ] + Int[i, k] + L[k, j, i]:",
"uris": null
},
"FIGREF8": {
"num": null,
"type_str": "figure",
"text": "An L sub-problem over [i, j] \u222a {x}, k is the neighbor of x furthest from i in the interval.",
"uris": null
},
"FIGREF9": {
"num": null,
"type_str": "figure",
"text": ": 2-planar but not 1-Endpoint-Crossing lated crossing region, as must [k, j] \u222a {i}.",
"uris": null
},
"FIGREF11": {
"num": null,
"type_str": "figure",
"text": "bi, F, F ] + Int[k, j, F, bj] N [i, j, x, F, bj, T ] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 S[i, x] + N [i, j, x, F, bj, F ] S[x, j] + N _XF romI[i, j, x] if bj = T S[j, x] + N [i, j, x, F, F, F ]ifbj = F S[j, x] + Int[i, j, F, T ] if bj = T max k\u2208(i,j) S[x, k] + N _XF romI[i, k, x] + Int[k, j, F, bj] max k\u2208(i,j) S[k, x]+ Int[i, k, F, T ] + Int[k, j, F, bj] N [i, k, x, F, F, F ] + Int[k, j, T, bj] N [i, j, x, T, F, T ] \u2190 symmetric to N [i, j, x, F, T, T ] N [i, j, x, T, T, T ] \u2190 \u2212\u221e N _XF romI[i, j, x] \u2190 max \uf8f1 x] + N [i, j, x, F, F, F ] max k\u2208(i,j) S[x, k] + N _XF romI[i, k, x] + Int[k, j, F, F ] S[k, x] + Int[i, k, F, T ] + Int[k, j, F, F ] _IF romX[i, j, x] \u2190 max S[x, i] + N [i, j, x, F, F, F ] max k\u2208(i,j) S[x, k] + N [i, k, x, T, F, F ] + Int[k, j, F, F ] N _XF romJ[i, j, x] \u2190 symmetric to N _XF romI[i, j, x] N _JF romX[i, j, x] \u2190 symmetric to N _IF romX[i, j, x] L[i, j, x, bi, bj, F ] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 Int[i, j, bi, bj] S[x, i] + L[i, j, x, F, bj, F ] if bi = T S[x, j] + L[i, j, x, bi, F, F ] if bj = T max k\u2208(i,j),T F (b i ,{b l ,br }) S[x, k]+ L[i, k, x, b l , F, F ] + N [k, j, i, F, bj, br] Int[i, k, b l , F ] + L[k, j, i, F, bj, br] L[i, j, x, F, bj, T ] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 S[i, x] + L[i, j, x, F, bj, F ] S[x, j] + L_XF romI[i, j, x] if bj = T S[j, x] + L[i, j, x, F, F, F ] if bj = F S[j, x] + L_JF romI[i, j, x] if bj = T max k\u2208(i,j) S[x, k] + L_XF romI[i, k, x] + N [k, j, i, F, bj, romI[i, k, x] + N [k, j, i, F, bj, F ] L[i, k, x, F, F, F ] + N [k, j, i, T, bj, F ] max T F (T,{b l ,br }) Int[i, k, F, b l ] + L[k, j, i, br, bj, F ] L[i, j, x, T, bj, T ] \u2190 not reachable L_XF romI[i, j, x] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 S[i, x] + L[i, j, x, F, F, F ] max k\u2208(i,j) S[x, k] + L_XF romI[i, k, x] + N [k, j, i, F, i, k, x] + N [k, j, i, F, F, F ] L[i, k, x, F, F, F ] + N _IF romX[k, j, i] Int[i, k, F, T ] + L[k, j, i, F, F, F ] Int[i, k, F, F ] + L_IF romX[k, j, i] L_IF romX[i, j, x] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f4 \uf8f3 S[x, i] + L[i, j, x, F, F, F ] max k\u2208(i,j) , k, x, T, F, F ] + N [k, j, i, F, F, F ] L[i, k, x, F, F, F ] + N _XF romI[k, j, i] Int[i, k, T, F ] + L[k, j, i, F, F, F ] Int[i, k, F, F ] + L_XF romI[k, j, i] L_JF romX[i, j, x] \u2190 max \uf8f1 k, x, F, F, F ] + Int[k, j, F, T ] Int[i, k, F, F ] + L_JF romI[k, j, i] L_JF romI[i, j, x] \u2190 max \uf8f1 \uf8f4 \uf8f4 \uf8f4 \uf8f2 \uf8f4 \uf8f4 \uf8f4 \uf8f3 Int[i, j, F, T ] max k\u2208(i,j) S[x, k]+ L[i, k, x, F, F, F ] + N _JF romX[k, j, i] Int[i, k, F, F ] + L_JF romX[k, j, i]",
"uris": null
}
}
}
}