Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "E06-1011",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T10:34:52.678982Z"
},
"title": "Online Learning of Approximate Dependency Parsing Algorithms",
"authors": [
{
"first": "Ryan",
"middle": [],
"last": "Mcdonald",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA"
}
},
"email": "[email protected]"
},
{
"first": "Fernando",
"middle": [],
"last": "Pereira",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA"
}
},
"email": "[email protected]"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper we extend the maximum spanning tree (MST) dependency parsing framework of McDonald et al. (2005c) to incorporate higher-order feature representations and allow dependency structures with multiple parents per word. We show that those extensions can make the MST framework computationally intractable, but that the intractability can be circumvented with new approximate parsing algorithms. We conclude with experiments showing that discriminative online learning using those approximate algorithms achieves the best reported parsing accuracy for Czech and Danish.",
"pdf_parse": {
"paper_id": "E06-1011",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper we extend the maximum spanning tree (MST) dependency parsing framework of McDonald et al. (2005c) to incorporate higher-order feature representations and allow dependency structures with multiple parents per word. We show that those extensions can make the MST framework computationally intractable, but that the intractability can be circumvented with new approximate parsing algorithms. We conclude with experiments showing that discriminative online learning using those approximate algorithms achieves the best reported parsing accuracy for Czech and Danish.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Dependency representations of sentences (Hudson, 1984; Me\u013a\u010duk, 1988 ) model head-dependent syntactic relations as edges in a directed graph. Figure 1 displays a dependency representation for the sentence John hit the ball with the bat. This sentence is an example of a projective (or nested) tree representation, in which all edges can be drawn in the plane with none crossing. Sometimes a non-projective representations are preferred, as in the sentence in Figure 2 . 1 In particular, for freer-word order languages, non-projectivity is a common phenomenon since the relative positional constraints on dependents is much less rigid. The dependency structures in Figures 1 and 2 satisfy the tree constraint: they are weakly connected graphs with a unique root node, and each non-root node has a exactly one parent. Though trees are more common, some formalisms allow for words to modify multiple parents (Hudson, 1984) . Recently, McDonald et al. (2005c) have shown that treating dependency parsing as the search for the highest scoring maximum spanning tree (MST) in a graph yields efficient algorithms for both projective and non-projective trees. When combined with a discriminative online learning algorithm and a rich feature set, these models provide state-of-the-art performance across multiple languages. However, the parsing algorithms require that the score of a dependency tree factors as a sum of the scores of its edges. This first-order factorization is very restrictive since it only allows for features to be defined over single attachment decisions. Previous work has shown that conditioning on neighboring decisions can lead to significant improvements in accuracy (Yamada and Matsumoto, 2003; Charniak, 2000) .",
"cite_spans": [
{
"start": 40,
"end": 54,
"text": "(Hudson, 1984;",
"ref_id": "BIBREF12"
},
{
"start": 55,
"end": 67,
"text": "Me\u013a\u010duk, 1988",
"ref_id": "BIBREF18"
},
{
"start": 469,
"end": 470,
"text": "1",
"ref_id": null
},
{
"start": 904,
"end": 918,
"text": "(Hudson, 1984)",
"ref_id": "BIBREF12"
},
{
"start": 921,
"end": 954,
"text": "Recently, McDonald et al. (2005c)",
"ref_id": null
},
{
"start": 1683,
"end": 1711,
"text": "(Yamada and Matsumoto, 2003;",
"ref_id": "BIBREF23"
},
{
"start": 1712,
"end": 1727,
"text": "Charniak, 2000)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [
{
"start": 141,
"end": 149,
"text": "Figure 1",
"ref_id": "FIGREF0"
},
{
"start": 458,
"end": 466,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we extend the MST parsing framework to incorporate higher-order feature representations of bounded-size connected subgraphs. We also present an algorithm for acyclic dependency graphs, that is, dependency graphs in which a word may depend on multiple heads. In both cases parsing is in general intractable and we provide novel approximate algorithms to make these cases tractable. We evaluate these algorithms within an online learning framework, which has been shown to be robust with respect approximate inference, and describe experiments displaying that these new models lead to state-of-the-art accuracy for English and the best accuracy we know of for Czech and Danish.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Dependency-tree parsing as the search for the maximum spanning tree (MST) in a graph was proposed by McDonald et al. (2005c) . This formulation leads to efficient parsing algorithms for both projective and non-projective dependency trees with the Eisner algorithm (Eisner, 1996) and the Chu-Liu-Edmonds algorithm (Chu and Liu, 1965; Edmonds, 1967) respectively. The formulation works by defining the score of a dependency tree to be the sum of edge scores,",
"cite_spans": [
{
"start": 101,
"end": 124,
"text": "McDonald et al. (2005c)",
"ref_id": "BIBREF17"
},
{
"start": 264,
"end": 278,
"text": "(Eisner, 1996)",
"ref_id": "BIBREF9"
},
{
"start": 313,
"end": 332,
"text": "(Chu and Liu, 1965;",
"ref_id": "BIBREF2"
},
{
"start": 333,
"end": 347,
"text": "Edmonds, 1967)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "s(x, y) = (i,j)\u2208y s(i, j)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "where",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "x = x 1 \u2022 \u2022 \u2022",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "x n is an input sentence and y a dependency tree for x. We can view y as a set of tree edges and write (i, j) \u2208 y to indicate an edge in y from word x i to word x j . Consider the example from Figure 1 , where the subscripts index the nodes of the tree. The score of this tree would then be,",
"cite_spans": [],
"ref_spans": [
{
"start": 193,
"end": 201,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "s(0, 2) + s(2, 1) + s(2, 4) + s(2, 5) + s(4, 3) + s(5, 7) + s(7, 6)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "We call this first-order dependency parsing since scores are restricted to a single edge in the dependency tree. The score of an edge is in turn computed as the inner product of a high-dimensional feature representation of the edge with a corresponding weight vector,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "s(i, j) = w \u2022 f(i, j)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "This is a standard linear classifier in which the weight vector w are the parameters to be learned during training. We should note that f(i, j) can be based on arbitrary features of the edge and the input sequence x.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "Given a directed graph G = (V, E), the maximum spanning tree (MST) problem is to find the highest scoring subgraph of G that satisfies the tree constraint over the vertices V . By defining a graph in which the words in a sentence are the vertices and there is a directed edge between all words with a score as calculated above, McDonald et al. (2005c) showed that dependency parsing is equivalent to finding the MST in this graph. Furthermore, it was shown that this formulation can lead to state-of-the-art results when combined with discriminative learning algorithms.",
"cite_spans": [
{
"start": 328,
"end": 351,
"text": "McDonald et al. (2005c)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "Although the MST formulation applies to any directed graph, our feature representations and one of the parsing algorithms (Eisner's) rely on a linear ordering of the vertices, namely the order of the words in the sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Spanning Tree Parsing",
"sec_num": "2"
},
{
"text": "Restricting scores to a single edge in a dependency tree gives a very impoverished view of dependency parsing. Yamada and Matsumoto (2003) showed that keeping a small amount of parsing history was crucial to improving parsing performance for their locally-trained shift-reduce SVM parser. It is reasonable to assume that other parsing models might benefit from features over previous decisions.",
"cite_spans": [
{
"start": 111,
"end": 138,
"text": "Yamada and Matsumoto (2003)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "Here we will focus on methods for parsing second-order spanning trees. These models factor the score of the tree into the sum of adjacent edge pair scores. To quantify this, consider again the example from Figure 1 . In the second-order spanning tree model, the score would be,",
"cite_spans": [],
"ref_spans": [
{
"start": 206,
"end": 214,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "s(0, \u2212, 2) + s(2, \u2212, 1) + s(2, \u2212, 4) + s(2, 4, 5) + s(4, \u2212, 3) + s(5, \u2212, 7) + s(7, \u2212, 6)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "Here we use the second-order score function s(i, k, j), which is the score of creating a pair of adjacent edges, from word x i to words x k and x j . For instance, s(2, 4, 5) is the score of creating the edges from hit to with and from hit to ball. The score functions are relative to the left or right of the parent and we never score adjacent edges that are on different sides of the parent (for instance, there is no s(2, 1, 4) for the adjacent edges from hit to John and ball). This independence between left and right descendants allow us to use a O(n 3 ) second-order projective parsing algorithm, as we will see later. We write s(x i , \u2212, x j ) when x j is the first left or first right dependent of word x i . For example, s(2, \u2212, 4) is the score of creating a dependency from hit to ball, since ball is the first child to the right of hit. More formally, if the word x i 0 has the children shown in this picture,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "x i 0 x i 1 . . . x i j x i j+1 . . . x im",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "the score factors as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "j\u22121 k=1 s(i 0 , i k+1 , i k ) + s(i 0 , \u2212, i j ) + s(i 0 , \u2212, i j+1 ) + m\u22121 k=j+1 s(i 0 , i k , i k+1 )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "This second-order factorization subsumes the first-order factorization, since the score function could just ignore the middle argument to simulate first-order scoring. The score of a tree for secondorder parsing is now",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "s(x, y) = (i,k,j)\u2208y s(i, k, j)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "where k and j are adjacent, same-side children of i in the tree y.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "The second-order model allows us to condition on the most recent parsing decision, that is, the last dependent picked up by a particular word, which is analogous to the the Markov conditioning of in the Charniak parser (Charniak, 2000) .",
"cite_spans": [
{
"start": 219,
"end": 235,
"text": "(Charniak, 2000)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Second-Order MST Parsing",
"sec_num": "2.1"
},
{
"text": "For projective MST parsing, the first-order algorithm can be extended to the second-order case, as was noted by Eisner (1996) . The intuition behind the algorithm is shown graphically in Figure 3 , which displays both the first-order and secondorder algorithms. In the first-order algorithm, a word will gather its left and right dependents independently by gathering each half of the subtree rooted by its dependent in separate stages. By splitting up chart items into left and right components, the Eisner algorithm only requires 3 indices to be maintained at each step, as discussed in detail elsewhere (Eisner, 1996; McDonald et al., 2005b) . For the second-order algorithm, the key insight is to delay the scoring of edges until pairs 2-order-non-proj-approx(x, s)",
"cite_spans": [
{
"start": 112,
"end": 125,
"text": "Eisner (1996)",
"ref_id": "BIBREF9"
},
{
"start": 606,
"end": 620,
"text": "(Eisner, 1996;",
"ref_id": "BIBREF9"
},
{
"start": 621,
"end": 644,
"text": "McDonald et al., 2005b)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 187,
"end": 195,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "Sentence x = x0 . . . xn, x0 = root Weight function s : (i, k, j) \u2192 R 1. Let y = 2-order-proj(x, s) 2. while true 3. m = \u2212\u221e, c = \u22121, p = \u22121 4. for j : 1 \u2022 \u2022 \u2022 n 5. for i : 0 \u2022 \u2022 \u2022 n 6. y = y[i \u2192 j] 7.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "if \u00actree(y ) or \u2203k :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "(i, k, j) \u2208 y continue 8. \u03b4 = s(x, y ) \u2212 s(x, y) 9. if \u03b4 > m 10. m = \u03b4, c = j, p = i 11.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "end for 12. end for 13.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "if m > 0 14.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "y = y[p \u2192 c] 15.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "else return y 16. end while Figure 4 :",
"cite_spans": [],
"ref_spans": [
{
"start": 28,
"end": 36,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "Approximate second-order nonprojective parsing algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "of dependents have been gathered. This allows for the collection of pairs of adjacent dependents in a single stage, which allows for the incorporation of second-order scores, while maintaining cubictime parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "The Eisner algorithm can be extended to an arbitrary m th -order model with a complexity of O(n m+1 ), for m > 1. An m th -order parsing algorithm will work similarly to the second-order algorithm, except that we collect m pairs of adjacent dependents in succession before attaching them to their parent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exact Projective Parsing",
"sec_num": "2.2"
},
{
"text": "Unfortunately, second-order non-projective MST parsing is NP-hard, as shown in appendix A. To circumvent this, we designed an approximate algorithm based on the exact O(n 3 ) second-order projective Eisner algorithm. The approximation works by first finding the highest scoring projective parse. It then rearranges edges in the tree, one at a time, as long as such rearrangements increase the overall score and do not violate the tree constraint. We can easily motivate this approximation by observing that even in non-projective languages like Czech and Danish, most trees are primarily projective with just a few non-projective edges (Nivre and Nilsson, 2005) . Thus, by starting with the highest scoring projective tree, we are typically only a small number of transformations away from the highest scoring non-projective tree.",
"cite_spans": [
{
"start": 636,
"end": 661,
"text": "(Nivre and Nilsson, 2005)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "The algorithm is shown in Figure 4 . The expression y[i \u2192 j] denotes the dependency graph identical to y except that",
"cite_spans": [],
"ref_spans": [
{
"start": 26,
"end": 34,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "x i 's parent is x i instead FIRST-ORDER h1 h3 \u21d2 h1 r r+1 h3 (A) h1 h3 h1 h3 (B) SECOND-ORDER h1 h2 h2 h3 \u21d2 h1 h2 h2 r r+1 h3 (A) h1 h2 h2 h3 \u21d2 h1 h2 h2 h3 (B) h1 h3 h1 h3 (C)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "Figure 3: A O(n 3 ) extension of the Eisner algorithm to second-order dependency parsing. This figure shows how h 1 creates a dependency to h 3 with the second-order knowledge that the last dependent of h 1 was h 2 . This is done through the creation of a sibling item in part (B). In the first-order model, the dependency to h 3 is created after the algorithm has forgotten that h 2 was the last dependent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "of what it was in y. The test tree(y) is true iff the dependency graph y satisfies the tree constraint.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "In more detail, line 1 of the algorithm sets y to the highest scoring second-order projective tree. The loop of lines 2-16 exits only when no further score improvement is possible. Each iteration seeks the single highest-scoring parent change to y that does not break the tree constraint. To that effect, the nested loops starting in lines 4 and 5 enumerate all (i, j) pairs. Line 6 sets y to the dependency graph obtained from y by changing x j 's parent to x i . Line 7 checks that the move from y to y is valid by testing that x j 's parent was not already x i and that y is a tree. Line 8 computes the score change from y to y . If this change is larger than the previous best change, we record how this new tree was created (lines 9-10). After considering all possible valid edge changes to the tree, the algorithm checks to see that the best new tree does have a higher score. If that is the case, we change the tree permanently and re-enter the loop. Otherwise we exit since there are no single edge switches that can improve the score.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "This algorithm allows for the introduction of non-projective edges because we do not restrict any of the edge changes except to maintain the tree property. In fact, if any edge change is ever made, the resulting tree is guaranteed to be nonprojective, otherwise there would have been a higher scoring projective tree that would have already been found by the exact projective parsing algorithm. It is not difficult to find examples for which this approximation will terminate without returning the highest-scoring non-projective parse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "It is clear that this approximation will always terminate -there are only a finite number of dependency trees for any given sentence and each iteration of the loop requires an increase in score to continue. However, the loop could potentially take exponential time, so we will bound the number of edge transformations to a fixed value M . It is easy to argue that this will not hurt performance. Even in freer-word order languages such as Czech, almost all non-projective dependency trees are primarily projective, modulo a few nonprojective edges. Thus, if our inference algorithm starts with the highest scoring projective parse, the best non-projective parse only differs by a small number of edge transformations. Furthermore, it is easy to show that each iteration of the loop takes O(n 2 ) time, resulting in a O(n 3 + M n 2 ) runtime algorithm. In practice, the approximation terminates after a small number of transformations and we do not need to bound the number of iterations in our experiments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "We should note that this is one of many possible approximations we could have made. Another reasonable approach would be to first find the highest scoring first-order non-projective parse, and then re-arrange edges based on second order scores in a similar manner to the algorithm we described. We implemented this method and found that the results were slightly worse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "3 Danish: Parsing Secondary Parents Kromann (2001) argued for a dependency formalism called Discontinuous Grammar and annotated a large set of Danish sentences using this formalism to create the Danish Dependency Treebank (Kromann, 2003) . The formalism allows for a word to have multiple parents. Examples include verb coordination in which the subject or object is an argument of several verbs, and relative clauses in which words must satisfy dependencies both inside and outside the clause. An example is shown in Figure 5 for the sentence He looks for and sees elephants. Here, the pronoun He is the subject for both verbs in the sentence, and the noun elephants the corresponding object. In the Danish Dependency Treebank, roughly 5% of words have more than one parent, which breaks the single parent (or tree) constraint we have previously required on dependency structures. Kromann also allows for cyclic dependencies, though we deal only with acyclic dependency graphs here. Though less common than trees, dependency graphs involving multiple parents are well established in the literature (Hudson, 1984) . Unfortunately, the problem of finding the dependency structure with highest score in this setting is intractable (Chickering et al., 1994) .",
"cite_spans": [
{
"start": 36,
"end": 50,
"text": "Kromann (2001)",
"ref_id": "BIBREF13"
},
{
"start": 222,
"end": 237,
"text": "(Kromann, 2003)",
"ref_id": "BIBREF14"
},
{
"start": 1099,
"end": 1113,
"text": "(Hudson, 1984)",
"ref_id": "BIBREF12"
},
{
"start": 1229,
"end": 1254,
"text": "(Chickering et al., 1994)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [
{
"start": 518,
"end": 526,
"text": "Figure 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "To create an approximate parsing algorithm for dependency structures with multiple parents, we start with our approximate second-order nonprojective algorithm outlined in Figure 4 . We use the non-projective algorithm since the Danish Dependency Treebank contains a small number of non-projective arcs. We then modify lines 7-10 of this algorithm so that it looks for the change in parent or the addition of a new parent that causes the highest change in overall score and does not create a cycle 2 . Like before, we make one change per iteration and that change will depend on the resulting score of the new tree. Using this simple new approximate parsing algorithm, we train a new parser that can produce multiple parents.",
"cite_spans": [],
"ref_spans": [
{
"start": 171,
"end": 179,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Approximate Non-projective Parsing",
"sec_num": "2.3"
},
{
"text": "In this section, we review the work of McDonald et al. (2005b) for online large-margin dependency parsing. As usual for supervised learning, we assume a training set T = {(x t , y t )} T t=1 , consisting of pairs of a sentence x t and its correct dependency representation y t .",
"cite_spans": [
{
"start": 39,
"end": 62,
"text": "McDonald et al. (2005b)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Online Learning and Approximate Inference",
"sec_num": "4"
},
{
"text": "The algorithm is an extension of the Margin Infused Relaxed Algorithm (MIRA) (Crammer and Singer, 2003) to learning with structured outputs, in the present case dependency structures. Figure 6 gives pseudo-code for the algorithm. An online learning algorithm considers a single training instance for each update to the weight vector w. We use the common method of setting the final weight vector as the average of the weight vectors after each iteration (Collins, 2002) , which has been shown to alleviate overfitting.",
"cite_spans": [
{
"start": 77,
"end": 103,
"text": "(Crammer and Singer, 2003)",
"ref_id": "BIBREF6"
},
{
"start": 454,
"end": 469,
"text": "(Collins, 2002)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 184,
"end": 192,
"text": "Figure 6",
"ref_id": null
}
],
"eq_spans": [],
"section": "Online Learning and Approximate Inference",
"sec_num": "4"
},
{
"text": "On each iteration, the algorithm considers a single training instance. We parse this instance to obtain a predicted dependency graph, and find the smallest-norm update to the weight vector w that ensures that the training graph outscores the predicted graph by a margin proportional to the loss of the predicted graph relative to the training graph, which is the number of words with incorrect parents in the predicted tree (McDonald et al., 2005b) . Note that we only impose margin constraints between the single highest-scoring graph and the correct graph relative to the current weight setting. Past work on tree-structured outputs has used constraints for the k-best scoring tree (Mc-Donald et al., 2005b) or even all possible trees by using factored representations (Taskar et al., 2004; McDonald et al., 2005c) . However, we have found that a single margin constraint per example leads to much faster training with a negligible degradation in performance. Furthermore, this formulation relates learning directly to inference, which is important, since we want the model to set weights relative to the errors made by an approximate inference algorithm. This algorithm can thus be viewed as a large-margin version of the perceptron algorithm for structured outputs Collins (2002) .",
"cite_spans": [
{
"start": 424,
"end": 448,
"text": "(McDonald et al., 2005b)",
"ref_id": "BIBREF16"
},
{
"start": 684,
"end": 709,
"text": "(Mc-Donald et al., 2005b)",
"ref_id": null
},
{
"start": 771,
"end": 792,
"text": "(Taskar et al., 2004;",
"ref_id": "BIBREF22"
},
{
"start": 793,
"end": 816,
"text": "McDonald et al., 2005c)",
"ref_id": "BIBREF17"
},
{
"start": 1269,
"end": 1283,
"text": "Collins (2002)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Online Learning and Approximate Inference",
"sec_num": "4"
},
{
"text": "Online learning algorithms have been shown to be robust even with approximate rather than exact inference in problems such as word alignment (Moore, 2005) , sequence analysis (Daum\u00e9 and Marcu, 2005; McDonald et al., 2005a) and phrase-structure parsing (Collins and Roark, 2004) . This robustness to approximations comes from the fact that the online framework sets weights with respect to inference. In other words, the learning method sees common errors due to Training data: T = {(xt, yt)} T t=1 1. w (0) = 0; v = 0; i = 0 2. for n : 1..N 3. for t : 1..T",
"cite_spans": [
{
"start": 141,
"end": 154,
"text": "(Moore, 2005)",
"ref_id": "BIBREF19"
},
{
"start": 175,
"end": 198,
"text": "(Daum\u00e9 and Marcu, 2005;",
"ref_id": null
},
{
"start": 199,
"end": 222,
"text": "McDonald et al., 2005a)",
"ref_id": "BIBREF15"
},
{
"start": 252,
"end": 277,
"text": "(Collins and Roark, 2004)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Online Learning and Approximate Inference",
"sec_num": "4"
},
{
"text": "min",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "\u201a \u201a \u201aw (i+1) \u2212 w (i) \u201a \u201a \u201a s.t. s(xt, yt; w (i+1) ) \u2212s(xt, y ; w (i+1) ) \u2265 L(yt, y )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "where y = arg max y s(xt, y ; i+1) 6.",
"cite_spans": [
{
"start": 30,
"end": 34,
"text": "i+1)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "w (i) ) 5. v = v + w (",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "i = i + 1 7. w = v/(N * T )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "Figure 6: MIRA learning algorithm. We write s(x, y; w (i) ) to mean the score of tree y using weight vector w (i) . approximate inference and adjusts weights to correct for them. The work of Daum\u00e9 and Marcu (2005) formalizes this intuition by presenting an online learning framework in which parameter updates are made directly with respect to errors in the inference algorithm. We show in the next section that this robustness extends to approximate dependency parsing.",
"cite_spans": [
{
"start": 110,
"end": 113,
"text": "(i)",
"ref_id": null
},
{
"start": 191,
"end": 213,
"text": "Daum\u00e9 and Marcu (2005)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "4.",
"sec_num": null
},
{
"text": "The score of adjacent edges relies on the definition of a feature representation f(i, k, j). As noted earlier, this representation subsumes the first-order representation of McDonald et al. (2005b) , so we can incorporate all of their features as well as the new second-order features we now describe. The old first-order features are built from the parent and child words, their POS tags, and the POS tags of surrounding words and those of words between the child and the parent, as well as the direction and distance from the parent to the child. The second-order features are built from the following conjunctions of word and POS identity predicates",
"cite_spans": [
{
"start": 174,
"end": 197,
"text": "McDonald et al. (2005b)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "xi-pos, x k -pos, xj-pos x k -pos, xj-pos x k -word, xj-word x k -word, xj-pos x k -pos, xj-word",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "where x i -pos is the part-of-speech of the i th word in the sentence. We also include conjunctions between these features and the direction and distance from sibling j to sibling k. We determined the usefulness of these features on the development set, which also helped us find out that features such as the POS tags of words between the two siblings would not improve accuracy. We also ignored fea- tures over triples of words since this would explode the size of the feature space. We evaluate dependencies on per word accuracy, which is the percentage of words in the sentence with the correct parent in the tree, and on complete dependency analysis. In our evaluation we exclude punctuation for English and include it for Czech and Danish, which is the standard.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "To create data sets for English, we used the Yamada and Matsumoto (2003) head rules to extract dependency trees from the WSJ, setting sections 2-21 as training, section 22 for development and section 23 for evaluation. The models rely on part-of-speech tags as input and we used the Ratnaparkhi (1996) tagger to provide these for the development and evaluation set. These data sets are exclusively projective so we only compare the projective parsers using the exact projective parsing algorithms. The purpose of these experiments is to gauge the overall benefit from including second-order features with exact parsing algorithms, which can be attained in the projective setting. Results are shown in Table 1 . We can see that there is clearly an advantage in introducing second-order features. In particular, the complete tree metric is improved considerably.",
"cite_spans": [
{
"start": 45,
"end": 72,
"text": "Yamada and Matsumoto (2003)",
"ref_id": "BIBREF23"
},
{
"start": 283,
"end": 301,
"text": "Ratnaparkhi (1996)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [
{
"start": 701,
"end": 708,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "English Results",
"sec_num": "5.1"
},
{
"text": "For the Czech data, we used the predefined training, development and testing split of the Prague Dependency Treebank (Haji\u010d et al., 2001) , and the automatically generated POS tags supplied with the data, which we reduce to the POS tag set from Collins et al. (1999) . On average, 23% of the sentences in the training, development and test sets have at least one non-projective dependency, though, less than 2% of total edges are ac- McDonald et al. (2005c) showed a substantial improvement in accuracy by modeling nonprojective edges in Czech, shown by the difference between two first-order models. Table 2 shows that a second-order model provides a comparable accuracy boost, even using an approximate non-projective algorithm. The second-order nonprojective model accuracy of 85.2% is the highest reported accuracy for a single parser for these data. Similar results were obtained by Hall and N\u00f3v\u00e1k (2005) (85.1% accuracy) who take the best output of the Charniak parser extended to Czech and rerank slight variations on this output that introduce non-projective edges. However, this system relies on a much slower phrase-structure parser as its base model as well as an auxiliary reranking module. Indeed, our second-order projective parser analyzes the test set in 16m32s, and the non-projective approximate parser needs 17m03s to parse the entire evaluation set, showing that runtime for the approximation is completely dominated by the initial call to the second-order projective algorithm and that the post-process edge transformation loop typically only iterates a few times per sentence.",
"cite_spans": [
{
"start": 117,
"end": 137,
"text": "(Haji\u010d et al., 2001)",
"ref_id": "BIBREF10"
},
{
"start": 245,
"end": 266,
"text": "Collins et al. (1999)",
"ref_id": "BIBREF4"
},
{
"start": 434,
"end": 457,
"text": "McDonald et al. (2005c)",
"ref_id": "BIBREF17"
},
{
"start": 888,
"end": 926,
"text": "Hall and N\u00f3v\u00e1k (2005) (85.1% accuracy)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 601,
"end": 608,
"text": "Table 2",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Czech Results",
"sec_num": "5.2"
},
{
"text": "For our experiments we used the Danish Dependency Treebank v1.0. The treebank contains a small number of inter-sentence and cyclic dependencies and we removed all sentences that contained such structures. The resulting data set contained 5384 sentences. We partitioned the data into contiguous 80/20 training/testing splits. We held out a subset of the training data for development purposes. We compared three systems, the standard second-order projective and non-projective parsing models, as well as our modified second-order non-projective model that allows for the introduction of multiple parents (Section 3). All systems use gold-standard part-of-speech since no trained tagger is readily available for Danish. Results are shown in Figure 3 . As might be expected, the non-projective parser does slightly better than the projective parser because around 1% of the edges are non-projective. Since each word may have an arbitrary number of parents, we must use precision and recall rather than accuracy to measure performance. This also means that the correct training loss is no longer the Hamming loss. Instead, we use false positives plus false negatives over edge decisions, which balances precision and recall as our ultimate performance metric.",
"cite_spans": [],
"ref_spans": [
{
"start": 739,
"end": 747,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Danish Results",
"sec_num": "5.3"
},
{
"text": "As expected, for the basic projective and nonprojective parsers, recall is roughly 5% lower than precision since these models can only pick up at most one parent per word. For the parser that can introduce multiple parents, we see an increase in recall of nearly 3% absolute with a slight drop in precision. These results are very promising and further show the robustness of discriminative online learning with approximate parsing algorithms.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Danish Results",
"sec_num": "5.3"
},
{
"text": "We described approximate dependency parsing algorithms that support higher-order features and multiple parents. We showed that these approximations can be combined with online learning to achieve fast parsing with competitive parsing accuracy. These results show that the gain from allowing richer representations outweighs the loss from approximate parsing and further shows the robustness of online learning algorithms with approximate inference.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "6"
},
{
"text": "The approximations we have presented are very simple. They start with a reasonably good baseline and make small transformations until the score of the structure converges. These approximations work because freer-word order languages we studied are still primarily projective, making the approximate starting point close to the goal parse. However, we would like to investigate the benefits for parsing of more principled approaches to approximate learning and inference techniques such as the learning as search optimization framework of (Daum\u00e9 and Marcu, 2005) . This framework will possibly allow us to include effectively more global features over the dependency structure than those in our current second-order model.",
"cite_spans": [
{
"start": 538,
"end": 561,
"text": "(Daum\u00e9 and Marcu, 2005)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "6"
},
{
"text": "Examples are drawn from McDonald et al. (2005c).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We are not concerned with violating the tree constraint.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work was supported by NSF ITR grants 0205448.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
},
{
"text": "Proof by a reduction from 3-D matching (3DM). 3DM: Disjoint sets X, Y, Z each with m distinct elements and a set T \u2286 X \u00d7 Y \u00d7 Z. Question: is there a subset S \u2286 T such that |S| = m and each v \u2208 X \u222a Y \u222a Z occurs in exactly one element of S.Reduction: Given an instance of 3DM we defi ne a graph in which the vertices are the elements from X \u222a Y \u222a Z as well as an artifi cial root node. We insert edges from root to all xi \u2208 X as well as edges from all xi \u2208 X to all yi \u2208 Y and zi \u2208 Z. We order the words s.t. the root is on the left followed by all elements of X, then Y , and fi nally Z. We then defi ne the second-order score function as follows,xi, yj , z k ) \u2208 T All other scores are defi ned to be \u2212\u221e, including for edges pairs that were not defi ned in the original graph.Theorem: There is a 3D matching iff the second-order MST has a score of m. Proof: First we observe that no tree can have a score greater than m since that would require more than m pairs of edges of the form (xi, yj , z k ). This can only happen when some xi has multiple yj \u2208 Y children or multiple z k \u2208 Z children. But if this were true then we would introduce a \u2212\u221e scored edge pair (e.g. s(xi, yj, y j )). Now, if the highest scoring second-order MST has a score of m, that means that every xi must have found a unique pair of children yj and z k which represents the 3D matching, since there would be m such triples. Furthermore, yj and z k could not match with any other x i since they can only have one incoming edge in the tree. On the other hand, if there is a 3DM, then there must be a tree of weight m consisting of second-order edges (xi, yj, z k ) for each element of the matching S. Since no tree can have a weight greater than m, this must be the highest scoring second-order MST. Thus if we can fi nd the highest scoring second-order MST in polynomial time, then 3DM would also be solvable.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A 2nd-Order Non-projective MST Parsing is NP-hard",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A maximum-entropy-inspired parser",
"authors": [
{
"first": "E",
"middle": [],
"last": "Charniak",
"suffix": ""
}
],
"year": 2000,
"venue": "Proc. NAACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E. Charniak. 2000. A maximum-entropy-inspired parser. In Proc. NAACL.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Learning bayesian networks: The combination of knowledge and statistical data",
"authors": [
{
"first": "D",
"middle": [
"M"
],
"last": "Chickering",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Geiger",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Heckerman",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D.M. Chickering, D. Geiger, and D. Heckerman. 1994. Learning bayesian networks: The combination of knowledge and statistical data. Technical Report MSR-TR-94-09, Microsoft Research.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"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
},
"BIBREF3": {
"ref_id": "b3",
"title": "Incremental parsing with the perceptron algorithm",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Roark",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins and B. Roark. 2004. Incremental parsing with the perceptron algorithm. In Proc. ACL.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "A statistical parser for Czech",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Haji\u010d",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Ramshaw",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Tillmann",
"suffix": ""
}
],
"year": 1999,
"venue": "Proc. ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins, J. Haji\u010d, L. Ramshaw, and C. Tillmann. 1999. A statistical parser for Czech. In Proc. ACL.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Discriminative training methods for hidden Markov models: Theory and experiments with perceptron algorithms",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins. 2002. Discriminative training methods for hidden Markov models: Theory and experiments with perceptron algorithms. In Proc. EMNLP.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Ultraconservative online algorithms for multiclass problems",
"authors": [
{
"first": "K",
"middle": [],
"last": "Crammer",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Singer",
"suffix": ""
}
],
"year": 2003,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Crammer and Y. Singer. 2003. Ultraconservative online algorithms for multiclass problems. JMLR.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Learning as search optimization: Approximate large margin methods for structured prediction",
"authors": [
{
"first": "H",
"middle": [],
"last": "Daum\u00b4e",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Marcu",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. ICML",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Daum\u00b4e and D. Marcu. 2005. Learning as search op- timization: Approximate large margin methods for structured prediction. In Proc. ICML.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Optimum branchings",
"authors": [
{
"first": "J",
"middle": [],
"last": "Edmonds",
"suffix": ""
}
],
"year": 1967,
"venue": "Journal of Research of the National Bureau of Standards",
"volume": "71",
"issue": "",
"pages": "233--240",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Edmonds. 1967. Optimum branchings. Journal of Research of the National Bureau of Standards, 71B:233-240.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Three new probabilistic models for dependency parsing: An exploration",
"authors": [
{
"first": "J",
"middle": [],
"last": "Eisner",
"suffix": ""
}
],
"year": 1996,
"venue": "Proc. COL-ING",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Eisner. 1996. Three new probabilistic models for dependency parsing: An exploration. In Proc. COL- ING.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "The Prague Dependency Treebank 1.0 CDROM. Linguistics Data Consortium Cat. No. LDC2001T10",
"authors": [
{
"first": "J",
"middle": [],
"last": "Haji\u010d",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Hajicova",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Pajas",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Panevova",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Sgall",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Vidova Hladka",
"suffix": ""
}
],
"year": 2001,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Haji\u010d, E. Hajicova, P. Pajas, J. Panevova, P. Sgall, and B. Vidova Hladka. 2001. The Prague Dependency Treebank 1.0 CDROM. Linguistics Data Consor- tium Cat. No. LDC2001T10.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Corrective modeling for non-projective dependency parsing",
"authors": [
{
"first": "K",
"middle": [],
"last": "Hall",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "N\u00b4ov\u00b4ak",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. IWPT",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Hall and V. N\u00b4ov\u00b4ak. 2005. Corrective modeling for non-projective dependency parsing. In Proc. IWPT.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Word Grammar",
"authors": [
{
"first": "R",
"middle": [],
"last": "Hudson",
"suffix": ""
}
],
"year": 1984,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Hudson. 1984. Word Grammar. Blackwell.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Optimaility parsing and local cost functions in discontinuous grammars",
"authors": [
{
"first": "M",
"middle": [
"T"
],
"last": "Kromann",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. FG-MOL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. T. Kromann. 2001. Optimaility parsing and local cost functions in discontinuous grammars. In Proc. FG-MOL.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The danish dependency treebank and the dtag treebank tool",
"authors": [
{
"first": "M",
"middle": [
"T"
],
"last": "Kromann",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. TLT",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. T. Kromann. 2003. The danish dependency tree- bank and the dtag treebank tool. In Proc. TLT.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Flexible text segmentation with structured multilabel classifi cation",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Crammer",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. HLT-EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald, K. Crammer, and F. Pereira. 2005a. Flexible text segmentation with structured multil- abel classifi cation. In Proc. HLT-EMNLP.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Online large-margin training of dependency parsers",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Crammer",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald, K. Crammer, and F. Pereira. 2005b. On- line large-margin training of dependency parsers. In Proc. ACL.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"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": "Proc. HLT-EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald, F. Pereira, K. Ribarov, and J. Haji\u010d. 2005c. Non-projective dependency parsing using spanning tree algorithms. In Proc. HLT-EMNLP.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Dependency Syntax: Theory and Practice",
"authors": [
{
"first": "I",
"middle": [
"A"
],
"last": "Me\u013a\u010duk",
"suffix": ""
}
],
"year": 1988,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "I.A. Me\u013a\u010duk. 1988. Dependency Syntax: Theory and Practice. State University of New York Press.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "A discriminative framework for bilingual word alignment",
"authors": [
{
"first": "R",
"middle": [],
"last": "Moore",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. HLT-EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Moore. 2005. A discriminative framework for bilin- gual word alignment. In Proc. HLT-EMNLP.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Pseudo-projective dependency parsing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nilsson",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre and J. Nilsson. 2005. Pseudo-projective de- pendency parsing. In Proc. ACL.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "A maximum entropy model for part-of-speech tagging",
"authors": [
{
"first": "A",
"middle": [],
"last": "Ratnaparkhi",
"suffix": ""
}
],
"year": 1996,
"venue": "Proc. EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Ratnaparkhi. 1996. A maximum entropy model for part-of-speech tagging. In Proc. EMNLP.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Max-margin parsing",
"authors": [
{
"first": "B",
"middle": [],
"last": "Taskar",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Koller",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B. Taskar, D. Klein, M. Collins, D. Koller, and C. Man- ning. 2004. Max-margin parsing. In Proc. EMNLP.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Statistical dependency analysis with support vector machines",
"authors": [
{
"first": "H",
"middle": [],
"last": "Yamada",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. IWPT",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Yamada and Y. Matsumoto. 2003. Statistical de- pendency analysis with support vector machines. In Proc. IWPT.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"text": "An example dependency structure.",
"type_str": "figure",
"uris": null
},
"FIGREF1": {
"num": null,
"text": "Figure 5: An example dependency tree from the Danish Dependency Treebank (from Kromann (2003)).",
"type_str": "figure",
"uris": null
},
"TABREF1": {
"html": null,
"text": "Dependency parsing results for English.",
"num": null,
"content": "<table><tr><td/><td>Czech</td><td/></tr><tr><td/><td colspan=\"2\">Accuracy Complete</td></tr><tr><td>1st-order-projective</td><td>83.0</td><td>30.6</td></tr><tr><td>2nd-order-projective</td><td>84.2</td><td>33.1</td></tr><tr><td>1st-order-non-projective</td><td>84.1</td><td>32.2</td></tr><tr><td>2nd-order-non-projective</td><td>85.2</td><td>35.9</td></tr></table>",
"type_str": "table"
},
"TABREF2": {
"html": null,
"text": "Dependency parsing results for Czech.",
"num": null,
"content": "<table/>",
"type_str": "table"
},
"TABREF4": {
"html": null,
"text": "Dependency parsing results for Danish.",
"num": null,
"content": "<table><tr><td>tually non-projective. Results are shown in Ta-</td></tr><tr><td>ble 2.</td></tr></table>",
"type_str": "table"
}
}
}
}