ACL-OCL / Base_JSON /prefixE /json /E12 /E12-1009.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "E12-1009",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T10:36:00.995171Z"
},
"title": "The Best of Both Worlds -A Graph-based Completion Model for Transition-based Parsers",
"authors": [
{
"first": "Bernd",
"middle": [],
"last": "Bohnet",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Stuttgart Institute for Natural Language Processing",
"location": {}
},
"email": "bohnet@ims.uni-stuttgart.de"
},
{
"first": "Jonas",
"middle": [],
"last": "Kuhn",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Stuttgart Institute for Natural Language Processing",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Transition-based dependency parsers are often forced to make attachment decisions at a point when only partial information about the relevant graph configuration is available. In this paper, we describe a model that takes into account complete structures as they become available to rescore the elements of a beam, combining the advantages of transition-based and graph-based approaches. We also propose an efficient implementation that allows for the use of sophisticated features and show that the completion model leads to a substantial increase in accuracy. We apply the new transition-based parser on typologically different languages such as English, Chinese, Czech, and German and report competitive labeled and unlabeled attachment scores.",
"pdf_parse": {
"paper_id": "E12-1009",
"_pdf_hash": "",
"abstract": [
{
"text": "Transition-based dependency parsers are often forced to make attachment decisions at a point when only partial information about the relevant graph configuration is available. In this paper, we describe a model that takes into account complete structures as they become available to rescore the elements of a beam, combining the advantages of transition-based and graph-based approaches. We also propose an efficient implementation that allows for the use of sophisticated features and show that the completion model leads to a substantial increase in accuracy. We apply the new transition-based parser on typologically different languages such as English, Chinese, Czech, and German and report competitive labeled and unlabeled attachment scores.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Background. A considerable amount of recent research has gone into data-driven dependency parsing, and interestingly throughout the continuous process of improvements, two classes of parsing algorithms have stayed at the centre of attention, the transition-based (Nivre, 2003) vs. the graph-based approach (Eisner, 1996; McDonald et al., 2005) . 1 The two approaches apply fundamentally different strategies to solve the task of finding the optimal labeled dependency tree over the words of an input sentence (where supervised machine learning is used to estimate the scoring parameters on a treebank).",
"cite_spans": [
{
"start": 263,
"end": 276,
"text": "(Nivre, 2003)",
"ref_id": "BIBREF30"
},
{
"start": 306,
"end": 320,
"text": "(Eisner, 1996;",
"ref_id": "BIBREF9"
},
{
"start": 321,
"end": 343,
"text": "McDonald et al., 2005)",
"ref_id": "BIBREF26"
},
{
"start": 346,
"end": 347,
"text": "1",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The transition-based approach is based on the conceptually (and cognitively) compelling idea 1 More references will be provided in sec. 2. that machine learning, i.e., a model of linguistic experience, is used in exactly those situations when there is an attachment choice in an otherwise deterministic incremental left-to-right parsing process. As a new word is processed, the parser has to decide on one out of a small number of possible transitions (adding a dependency arc pointing to the left or right and/or pushing or popping a word on/from a stack representation). Obviously, the learning can be based on the feature information available at a particular snapshot in incremental processing, i.e., only surface information for the unparsed material to the right, but full structural information for the parts of the string already processed. For the completely processed parts, there are no principled limitations as regards the types of structural configurations that can be checked in feature functions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The graph-based approach in contrast emphasizes the objective of exhaustive search over all possible trees spanning the input words. Commonly, dynamic programming techniques are used to decide on the optimal tree for each particular word span, considering all candidate splits into subspans, successively building longer spans in a bottom-up fashion (similar to chart-based constituent parsing). Machine learning drives the process of deciding among alternative candidate splits, i.e., feature information can draw on full structural information for the entire material in the span under consideration. However, due to the dynamic programming approach, the features cannot use arbitrarily complex structural configurations: otherwise the dynamic programming chart would have to be split into exponentially many special states. The typical feature models are based on combinations of edges (so-called second-order factors) that closely follow the bottom-up combination of subspans in the parsing algorithm, i.e., the feature functions depend on the presence of two specific dependency edges. Configurations not directly supported by the bottom-up building of larger spans are more cumbersome to integrate into the model (since the combination algorithm has to be adjusted), in particular for third-order factors or higher.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Empirically, i.e., when applied in supervised machine learning experiments based on existing treebanks for various languages, both strategies (and further refinements of them not mentioned here) turn out roughly equal in their capability of picking up most of the relevant patterns well; some subtle strengths and weaknesses are complementary, such that stacking of two parsers representing both strategies yields the best results (Nivre and McDonald, 2008) : in training and application, one of the parsers is run on each sentence prior to the other, providing additional feature information for the other parser. Another successful technique to combine parsers is voting as carried out by Sagae and Lavie (2006) .",
"cite_spans": [
{
"start": 431,
"end": 457,
"text": "(Nivre and McDonald, 2008)",
"ref_id": "BIBREF27"
},
{
"start": 691,
"end": 713,
"text": "Sagae and Lavie (2006)",
"ref_id": "BIBREF32"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The present paper addresses the question if and how a more integrated combination of the strengths of the two strategies can be achieved and implemented efficiently to warrant competitive results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The main issue and solution strategy. In order to preserve the conceptual (and complexity) advantages of the transition-based strategy, the integrated algorithm we are looking for has to be transition-based at the top level. The advantages of the graph-based approach -a more globally informed basis for the decision among different attachment options -have to be included as part of the scoring procedure. As a prerequisite, our algorithm will require a memory for storing alternative analyses among which to choose. This has been previously introduced in transitionbased approaches in the form of a beam (Johansson and Nugues, 2006) : rather than representing only the best-scoring history of transitions, the k best-scoring alternative histories are kept around.",
"cite_spans": [
{
"start": 606,
"end": 634,
"text": "(Johansson and Nugues, 2006)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "As we will indicate in the following, the mere addition of beam search does not help overcome a representational key issue of transition-based parsing: in many situations, a transition-based parser is forced to make an attachment decision for a given input word at a point where no or only partial information about the word's own dependents (and further decendents) is available. Figure 1 illustrates such a case. Figure 1 : The left set of brackets indicates material that has been processed or is under consideration; on the right is the input, still to be processed. Access to information that is yet unavailable would help the parser to decide on the correct transition.",
"cite_spans": [],
"ref_spans": [
{
"start": 381,
"end": 387,
"text": "Figure",
"ref_id": null
},
{
"start": 415,
"end": 423,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Here, the parser has to decide whether to create an edge between house and with or between bought and with (which is technically achieved by first popping house from the stack and then adding the edge). At this time, no information about the object of with is available; with fails to provide what we call a complete factor for the calculation of the scores of the alternative transitions under consideration. In other words, the model cannot make use of any evidence to distinguish between the two examples in Figure 1 , and it is bound to get one of the two cases wrong. Figure 2 illustrates the same case from the perspective of a graph-based parser. Figure 2 : A second order model as used in graph-based parsers has access to the crucial information to build the correct tree. In this case, the parser condsiders the word friend (as opposed to garden, for instance) as it introduces the bold-face edge.",
"cite_spans": [],
"ref_spans": [
{
"start": 511,
"end": 519,
"text": "Figure 1",
"ref_id": null
},
{
"start": 573,
"end": 581,
"text": "Figure 2",
"ref_id": null
},
{
"start": 654,
"end": 662,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Here, the combination of subspans is performed at a point when their internal structure has been finalized, i.e., the attachment of with (to bought or house) is not decided until it is clear that friend is the object of with; hence, the semantically important lexicalization of with's object informs the higher-level attachment decision through a socalled second order factor in the feature model. Given a suitable amount of training data, the model can thus learn to make the correct decision. The dynamic-programming based graphbased parser is designed in such a way that any score calculation is based on complete factors for the subspans that are combined at this point.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Note that the problem for the transition-based parser cannot be remedied by beam search alone. If we were to keep the two options for attaching with around in a beam (say, with a slightly higher score for attachment to house, but with bought following narrowly behind), there would be no point in the further processing of the sentence at which the choice could be corrected: the transition-based parser still needs to make the decision that friend is attached to with, but this will not lead the parser to reconsider the decision made earlier on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The strategy we describe in this paper applies in this very type of situation: whenever information is added in the transition-based parsing process, the scores of all the histories stored in the beam are recalculated based on a scoring model inspired by the graph-based parsing approach, i.e., taking complete factors into account as they become incrementally available. As a consequence the beam is reordered, and hence, the incorrect preference of an attachment of with to house (based on incomplete factors) can later be corrected as friend is processed and the complete second-order factor becomes available. 2 The integrated transition-based parsing strategy has a number of advantages:",
"cite_spans": [
{
"start": 614,
"end": 615,
"text": "2",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(1) We can integrate and investigate a number of third order factors, without the need to implement a more complex parsing model each time anew to explore the properties of such distinct model. (2) The parser with completion model maintains the favorable complexity of transition-based parsers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(3) The completion model compensates for the lower accuracy of cases when only incomplete information is available. (4) The parser combines the two leading parsing paradigms in a single efficient parser without stacking the two approaches. Therefore the parser requires only one training phase (without jackknifing) and it uses only a single transitionbased decoder.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The structure of this paper is as follows. In Section 2, we discuss related work. In Section 3, we introduce our transition-based parser and in Section 4 the completion model as well as the implementation of third order models. In Section 5, we describe experiments and provide evaluation results on selected data sets.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "2 Related Work Kudo and Matsumoto (2002) and Yamada and Matsumoto (2003) carried over the idea for deterministic parsing by chunks from Abney (1991) to dependency parsing. Nivre (2003) describes in a more strict sense the first incremental parser that tries to find the most appropriate dependency tree by a sequence of local transitions. In order to optimize the results towards a more globally optimal solution, Johansson and Nugues (2006) first applied beam search, which leads to a substantial improvment of the results (cf. also (Titov and Henderson, 2007) ). Zhang and Clark (2008) augment the beam-search algorithm, adapting the early update strategy of Collins and Roark (2004) to dependency parsing. In this approach, the parser stops and updates the model when the oracle transition sequence drops out of the beam. In contrast to most other approaches, the training procedure of Zhang and Clark (2008) takes the complete transition sequence into account as it is calculating the update. Zhang and Clark compare aspects of transition-based and graph-based parsing, and end up using a transition-based parser with a combined transition-based/second-order graph-based scoring model (Zhang and Clark, 2008, 567) , which is similar to the approach we describe in this paper. However, their approach does not involve beam rescoring as the partial structures built by the transition-based parser are subsequently augmented; hence, there are cases in which our approach is able to differentiate based on higher-order factors that go unnoticed by the combined model of (Zhang and Clark, 2008, 567) .",
"cite_spans": [
{
"start": 15,
"end": 40,
"text": "Kudo and Matsumoto (2002)",
"ref_id": "BIBREF22"
},
{
"start": 45,
"end": 72,
"text": "Yamada and Matsumoto (2003)",
"ref_id": "BIBREF36"
},
{
"start": 136,
"end": 148,
"text": "Abney (1991)",
"ref_id": "BIBREF0"
},
{
"start": 172,
"end": 184,
"text": "Nivre (2003)",
"ref_id": "BIBREF30"
},
{
"start": 414,
"end": 441,
"text": "Johansson and Nugues (2006)",
"ref_id": "BIBREF17"
},
{
"start": 534,
"end": 561,
"text": "(Titov and Henderson, 2007)",
"ref_id": "BIBREF35"
},
{
"start": 565,
"end": 587,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF37"
},
{
"start": 661,
"end": 685,
"text": "Collins and Roark (2004)",
"ref_id": "BIBREF6"
},
{
"start": 889,
"end": 911,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF37"
},
{
"start": 1189,
"end": 1217,
"text": "(Zhang and Clark, 2008, 567)",
"ref_id": null
},
{
"start": 1570,
"end": 1598,
"text": "(Zhang and Clark, 2008, 567)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "One step beyond the use of a beam is a dynamic programming approach to carry out a full search in the state space, cf. (Huang and Sagae, 2010; Kuhlmann et al., 2011) . However, in this case one has to restrict the employed features to a set which fits to the elements composed by the dy-namic programming approach. This is a trade-off between an exhaustive search and a unrestricted (rich) feature set and the question which provides a higher accuracy is still an open research question, cf. (Kuhlmann et al., 2011) .",
"cite_spans": [
{
"start": 119,
"end": 142,
"text": "(Huang and Sagae, 2010;",
"ref_id": "BIBREF16"
},
{
"start": 143,
"end": 165,
"text": "Kuhlmann et al., 2011)",
"ref_id": "BIBREF23"
},
{
"start": 492,
"end": 515,
"text": "(Kuhlmann et al., 2011)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Parsing of non-projective dependency trees is an important feature for many languages. At first most algorithms were restricted to projective dependency trees and used pseudo-projective parsing (Kahane et al., 1998; Nivre and Nilsson, 2005) . Later, additional transitions were introduced to handle non-projectivity (Attardi, 2006; Nivre, 2009) . The most common strategy uses the swap transition (Nivre, 2009; , an alternative solution uses two planes and a switch transition to switch between the two planes (G\u00f3mez-Rodr\u00edguez and Nivre, 2010).",
"cite_spans": [
{
"start": 194,
"end": 215,
"text": "(Kahane et al., 1998;",
"ref_id": "BIBREF19"
},
{
"start": 216,
"end": 240,
"text": "Nivre and Nilsson, 2005)",
"ref_id": "BIBREF28"
},
{
"start": 316,
"end": 331,
"text": "(Attardi, 2006;",
"ref_id": "BIBREF1"
},
{
"start": 332,
"end": 344,
"text": "Nivre, 2009)",
"ref_id": "BIBREF31"
},
{
"start": 397,
"end": 410,
"text": "(Nivre, 2009;",
"ref_id": "BIBREF31"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Since we use the scoring model of a graphbased parser, we briefly review releated work on graph-based parsing. The most well known graph-based parser is the MST (maximum spanning tree) parser, cf. (McDonald et al., 2005; Mc-Donald and Pereira, 2006) . The idea of the MST parser is to find the highest scoring tree in a graph that contains all possible edges. Eisner (1996) introduced a dynamic programming algorithm to solve this problem efficiently. Carreras (2007) introduced the left-most and right-most grandchild as factors. We use the factor model of Carreras (2007) as starting point for our experiments, cf. Section 4. We extend Carreras (2007) graphbased model with factors involving three edges similar to that of Koo and Collins (2010) .",
"cite_spans": [
{
"start": 197,
"end": 220,
"text": "(McDonald et al., 2005;",
"ref_id": "BIBREF26"
},
{
"start": 221,
"end": 249,
"text": "Mc-Donald and Pereira, 2006)",
"ref_id": null
},
{
"start": 360,
"end": 373,
"text": "Eisner (1996)",
"ref_id": "BIBREF9"
},
{
"start": 452,
"end": 467,
"text": "Carreras (2007)",
"ref_id": "BIBREF5"
},
{
"start": 558,
"end": 573,
"text": "Carreras (2007)",
"ref_id": "BIBREF5"
},
{
"start": 638,
"end": 653,
"text": "Carreras (2007)",
"ref_id": "BIBREF5"
},
{
"start": 725,
"end": 747,
"text": "Koo and Collins (2010)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This section specifies the transition-based beamsearch parser underlying the combined approach more formally. Sec. 4 will discuss the graphbased scoring model that we are adding.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "The input to the parser is a word string x, the goal is to find the optimal set y of labeled edges x i \u2192 l x j forming a dependency tree over x \u222a{root}. We characterize the state of a transitionbased parser as \u03c0 i = \u03c3 i , \u03b2 i , y i , h i , \u03c0 i \u2208 \u03a0, the set of possible states. \u03c3 i is a stack of words from x that are still under consideration; \u03b2 i is the input buffer, the suffix of x yet to be processed; y i the set of labeled edges already assigned (a partial labeled dependency tree); h i is a sequence recording the history of transitions (from the set of operations \u2126 = {shift, left-arc l , right-arc l , reduce, swap}) taken up to this point.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "(1) The initial state \u03c0 0 has an empty stack, the input buffer is the full input string x, and the edge set is empty. (2) The (partial) transition function \u03c4 (\u03c0 i , t) : \u03a0 x \u2126 \u2192 \u03a0 maps a state and an operation t to a new state \u03c0 i+1 . 3Final states \u03c0 f are characterized by an empty input buffer and stack; no further transitions can be taken.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "The transition function is informally defined as follows: The shift transition removes the first element of the input buffer and pushes it to the stack. The left-arc l transition adds an edge with label l from the first word in the buffer to the word on top of the stack, removes the top element from the stack and pushes the first element of the input buffer to the stack. The right-arc l transition adds an edge from word on top of the stack to the first word in the input buffer and removes the top element of the input buffer and pushes that element onto the stack. The reduce transition pops the top word from the stack. The swap changes the order of the two top elements on the stack (possibly generating nonprojkective trees).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "When more than one operation is applicable, a scoring function assigns a numerical value (based on a feature vector and a weight vector trained by supervised machine learning) to each possible continuation. When using a beam search approach with beam size k, the highest-scoring k alternative states with the same length n of transition history h are kept in a set \"beam n \".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "In the beam-based parsing algorithm (cf. the pseudo code in Algorithm 1), all candidate states for the next set \"beam n+1 \" are determined using the transition function \u03c4 , but based on the scoring function, only the best k are preserved. (Final) states to which no more transitions apply are copied to the next state set. This means that once all transition paths have reached a final state, the overall best-scoring states can be read off the final \"beam n \". The y of the top-scoring state is the predicted parse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "Under the plain transition-based scoring regime score T , the score for a state \u03c0 is the sum of the \"local\" scores for the transitions t i in the state's history sequence:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "score T (\u03c0) = |h| i=0 w \u2022 f (\u03c0 i , t i )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "Algorithm 1: Transition-based parser // x is the input sentence, k is the beam size",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "\u03c3 0 = \u2205, \u03b2 0 = x, y 0 = \u2205, h = \u2205 \u03c0 0 \u2190 \u03c3 0 , \u03b2 0 , y 0 , h 0 // initial parts of a state beam 0 \u2190 {\u03c0 0 } // create initial state n \u2190 0 // iteration repeat n \u2190 n + 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "for all \u03c0 j \u2208 beam n\u22121 do transitions \u2190 possible-applicable-transition (\u03c0 j ) // if no transition is applicable keep state \u03c0 j : if transitions = \u2205 then beam n \u2190 beam n \u222a {\u03c0 j } else for all t i \u2208 transitions do // apply the transition i to state j \u03c0 \u2190 \u03c4 (\u03c0 j , t i ) beam n \u2190 beam n \u222a {\u03c0} // end for // end for sort beam n due to the score(\u03c0 j ) beam n \u2190 sublist (beam n , 0, k) until beam n\u22121 = beam n // beam changed?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "w is the weight vector. Note that the features f (\u03c0 i , t i ) can take into account all structural and labeling information available prior to taking transition t i , i.e., the graph built so far, the words (and their part of speech etc.) on the stack and in the input buffer, etc. But if a larger graph configuration involving the next word evolves only later, as in Figure 1 , this information is not taken into account in scoring. For instance, if the feature extraction uses the subcategorization frame of a word under consideration to compute a score, it is quite possible that some dependents are still missing and will only be attached in a future transition.",
"cite_spans": [],
"ref_spans": [
{
"start": 368,
"end": 376,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Transition-based Parser with a Beam",
"sec_num": "3"
},
{
"text": "We define an augmented scoring function which can be used in the same beam-search algorithm in order to ensure that in the scoring of alternative transition paths, larger configurations can be exploited as they are completed in the incremental process. The feature configurations can be largely taken from graph-based approaches. Here, spans from the string are assembled in a bottom-up fashion, and the scoring for an edge can be based on structurally completed subspans (\"factors\").",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "Our completion model for scoring a state \u03c0 n incorporates factors for all configurations (matching the extraction scheme that is applied) that are present in the partial dependency graph y n built up to this point, which is continuously augmented. This means if at a given point n in the transition path, complete information for a particular configuration (e.g., a third-order factor involving a head, its dependent and its grand-child dependent) is unavailable, scoring will ignore this factor at time n, but the configuration will inform the scoring later on, maybe at point n + 4, when the complete information for this factor has entered the partial graph y n+4 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "We present results for a number of different second-order and third-order feature models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "Second Order Factors. We start with the model introduced by Carreras (2007) . Figure 3 illustrates the factors used. Carreras (2007) . We omit the right-headed cases, which are mirror images. The model comprises a factoring into one first order part and three second order factors (2-4): 1) The head (h) and the dependent (c); 2) the head, the dependent and the left-most (or right-most) grandchild in between (cmi); 3) the head, the dependent and the right-most (or left-most) grandchild away from the head (cmo). 4) the head, the dependent and between those words the right-most (or left-most) sibling (ci). Third Order Factors. In addition to the second order factors, we investigate combinations of third order factors. Figure 5 and 6 illustrate the third order factors, which are similar to the factors of Koo and Collins (2010) . They restrict the factor to the innermost sibling pair for the tri-siblings and the outermost pair for the grand-siblings. We use the first two siblings of the dependent from the left side of the head for the tri-siblings and the first two dependents of the child for the grandsiblings. With these factors, we aim to capture non-projective edges and subcategorization information. Figure 7 illustrates a factor of a sequence of four nodes. All the right headed variants are symmetrically and left out for brevity. Integrated approach. To obtain an integrated system for the various feature models, the scoring function of the transition-based parser from Section 3 is augmented by a family of scoring functions score Gm for the completion model, where m is from 2a, 2b, 3a etc., x is the input string, and y is the (partial) dependency tree built so far:",
"cite_spans": [
{
"start": 60,
"end": 75,
"text": "Carreras (2007)",
"ref_id": "BIBREF5"
},
{
"start": 117,
"end": 132,
"text": "Carreras (2007)",
"ref_id": "BIBREF5"
},
{
"start": 811,
"end": 833,
"text": "Koo and Collins (2010)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [
{
"start": 78,
"end": 86,
"text": "Figure 3",
"ref_id": "FIGREF0"
},
{
"start": 724,
"end": 732,
"text": "Figure 5",
"ref_id": "FIGREF3"
},
{
"start": 1217,
"end": 1225,
"text": "Figure 7",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "score Tm (\u03c0) = score T (\u03c0) + score Gm (x, y) The scoring function of the completion model depends on the selected factor model G m . The model G 2a comprises the edge factoring of Figure 3. With this model, we obtain the following scoring function.",
"cite_spans": [],
"ref_spans": [
{
"start": 180,
"end": 186,
"text": "Figure",
"ref_id": null
}
],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "score G2a (x, y) = (h,c)\u2208y w \u2022 f f irst (x,h,c) + (h,c,ci)\u2208y w \u2022 f sib (x,h,c,ci) + (h,c,cmo)\u2208y w \u2022 f gra (x,h,c,cmo) + (h,c,cmi)\u2208y w \u2022 f gra (x,h,c,cmi)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "The function f maps the input sentence x, and a subtree y defined by the indexes to a featurevector. Again, w is the corresponding weight vector. In order to add the factor of Figure 4 to our model, we have to add the scoring function (2a) the sum:",
"cite_spans": [],
"ref_spans": [
{
"start": 176,
"end": 184,
"text": "Figure 4",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "(2b) score G 2b (x, y) = score G2a (x, y) + (h,c,cmi)\u2208y w \u2022 f gra (x,h,c,cmi)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "In order to build a scoring function for combination of the factors shown in Figure 5 to 7, we have to add to the equation 2b one or more of the following sums:",
"cite_spans": [],
"ref_spans": [
{
"start": 77,
"end": 85,
"text": "Figure 5",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "(3a) (h,c,ch1,ch2)\u2208y w \u2022 f gra (x,h,c,ch1,ch2) (3b) (h,c,cm1,cm2)\u2208y w \u2022 f gra (x,h,c,cm1,cm2) (3c) (h,c,cmo,tmo)\u2208y w \u2022 f gra (x,h,c,cmo,tmo)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "Feature Set. The feature set of the transition model is similar to that of Zhang and Nivre (2011) . In addition, we use the cross product of morphologic features between the head and the dependent since we apply also the parser on morphologic rich languages. The feature sets of the completion model described above are mostly based on previous work (McDonald et al., 2005; McDonald and Pereira, 2006; Carreras, 2007; Koo and Collins, 2010) . The models denoted with + use all combinations of words before and after the head, dependent, sibling, grandchilrden, etc. These are respectively three-, and four-grams for the first order and second order. The algorithm includes these features only the words left and right do not overlap with the factor (e.g. the head, dependent, etc.). We use feature extraction procedure for second order, and third order factors. Each feature extracted in this procedure includes information about the position of the nodes relative to the other nodes of the part and a factor identifier.",
"cite_spans": [
{
"start": 75,
"end": 97,
"text": "Zhang and Nivre (2011)",
"ref_id": "BIBREF38"
},
{
"start": 350,
"end": 373,
"text": "(McDonald et al., 2005;",
"ref_id": "BIBREF26"
},
{
"start": 374,
"end": 401,
"text": "McDonald and Pereira, 2006;",
"ref_id": "BIBREF25"
},
{
"start": 402,
"end": 417,
"text": "Carreras, 2007;",
"ref_id": "BIBREF5"
},
{
"start": 418,
"end": 440,
"text": "Koo and Collins, 2010)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "Training. For the training of our parser, we use a variant of the perceptron algorithm that uses the Passive-Aggressive update function, cf. (Freund and Schapire, 1998; Collins, 2002; Crammer et al., 2006) . The Passive-Aggressive perceptron uses an aggressive update strategy by modifying the weight vector by as much as needed to classify correctly the current example, cf. (Crammer et al., 2006) . We apply a random function (hash function) to retrieve the weights from the weight vector instead of a table. Bohnet (2010) showed that the Hash Kernel improves parsing speed and accuracy since the parser uses additionaly negative features. Ganchev and Dredze (2008) used this technique for structured prediction in NLP to reduce the needed space, cf. (Shi et al., 2009) . We use as weight vector size 800 million. After the training, we counted 65 millions non zero weights for English (penn2malt), 83 for Czech and 87 millions for German. The feature vectors are the union of features originating from the transition sequence of a sentence and the features of the factors over all edges of a dependency tree (e.g. G 2a , etc.). To prevent over-fitting, we use averaging to cope with this problem, cf. (Freund and Schapire, 1998; Collins, 2002) . We calculate the error e as the sum of all attachment errors and label errors both weighted by 0.5. We use the following equations to compute the update.",
"cite_spans": [
{
"start": 141,
"end": 168,
"text": "(Freund and Schapire, 1998;",
"ref_id": "BIBREF10"
},
{
"start": 169,
"end": 183,
"text": "Collins, 2002;",
"ref_id": "BIBREF7"
},
{
"start": 184,
"end": 205,
"text": "Crammer et al., 2006)",
"ref_id": "BIBREF8"
},
{
"start": 376,
"end": 398,
"text": "(Crammer et al., 2006)",
"ref_id": "BIBREF8"
},
{
"start": 511,
"end": 524,
"text": "Bohnet (2010)",
"ref_id": "BIBREF3"
},
{
"start": 642,
"end": 672,
"text": "Ganchev and Dredze (2008) used",
"ref_id": null
},
{
"start": 753,
"end": 771,
"text": "(Shi et al., 2009)",
"ref_id": "BIBREF33"
},
{
"start": 1204,
"end": 1231,
"text": "(Freund and Schapire, 1998;",
"ref_id": "BIBREF10"
},
{
"start": 1232,
"end": 1246,
"text": "Collins, 2002)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "loss: l t = e-(score T (x g t , y g t )-score T (x t , y t )) PA-update: \u03c4 t = lt ||fg\u2212fp|| 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "We train the model to select the transitions and the completion model together and therefore, we use one parameter space. In order to compute the weight vector, we employ standard online learning with 25 training iterations, and carry out early updates, cf. Collins and Roark (2004; Zhang and Clark (2008) .",
"cite_spans": [
{
"start": 258,
"end": 282,
"text": "Collins and Roark (2004;",
"ref_id": "BIBREF6"
},
{
"start": 283,
"end": 305,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "Efficient Implementation. Keeping the scoring with the completion model tractable with millions of feature weights and for second-and third-order factors requires careful bookkeeping and a number of specialized techniques from recent work on dependency parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "We use two variables to store the scores (a) for complete factors and (b) for incomplete factors. The complete factors (first-order factors and higher-order factors for which further augmentation is structurally excluded) need to be calculated only once and can then be stored with the tree factors. The incomplete factors (higher-order factors whose node elements may still receive additional descendants) need to be dynamically recomputed while the tree is built.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "The parsing algorithm only has to compute the scores of the factored model when the transitionbased parser selects a left-arc or right-arc transition and the beam has to be sorted. The parser sorts the beam when it exceeds the maximal beam size, in order to discard superfluous parses or when the parsing algorithm terminates in order to select the best parse tree. The complexity of the transition-based parser is quadratic due to swap operation in the worse case, which is rare, and O(n) in the best case, cf. (Nivre, 2009) . The beam size B is constant. Hence, the complexity is in the worst case O(n 2 ).",
"cite_spans": [
{
"start": 512,
"end": 525,
"text": "(Nivre, 2009)",
"ref_id": "BIBREF31"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "The parsing time is to a large degree determined by the feature extraction, the score calculation and the implementation, cf. also (Goldberg and Elhadad, 2010) . The transition-based parser is able to parse 30 sentences per second. The parser with completion model processes about 5 sentences per second with a beam size of 80. Note, we use a rich feature set, a completion model with third order factors, negative features, and a large beam. 3 We implemented the following optimizations: (1) We use a parallel feature extraction for the beam elements. Each process extracts the features, scores the possible transitions and computes the score of the completion model. After the extension step, the beam is sorted and the best elements are selected according to the beam size.",
"cite_spans": [
{
"start": 131,
"end": 159,
"text": "(Goldberg and Elhadad, 2010)",
"ref_id": "BIBREF13"
},
{
"start": 443,
"end": 444,
"text": "3",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "(2) The calculation of each score is optimized (beyond the distinction of a static and a dynamic component): We calculate for each location determined by the last element s l \u2208 \u03c3 i and the first element of b 0 \u2208 \u03b2 i a numeric feature representation. This is kept fix and we add only the numeric value for each of the edge labels plus a value for the transition left-arc or right-arc. In this way, we create the features incrementally. This has some similarity to Goldberg and Elhadad (2010) .",
"cite_spans": [
{
"start": 463,
"end": 490,
"text": "Goldberg and Elhadad (2010)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "(3) We apply edge filtering as it is used in graphbased dependency parsing, cf. (Johansson and Nugues, 2008) , i.e., we calculate the edge weights only for the labels that were found for the part-ofspeech combination of the head and dependent in the training data.",
"cite_spans": [
{
"start": 80,
"end": 108,
"text": "(Johansson and Nugues, 2008)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Completion Model",
"sec_num": "4"
},
{
"text": "The results of different parsing systems are often hard to compare due to differences in phrase structure to dependency conversions, corpus version, and experimental settings. For better comparison, we provide results on English for two commonly used data sets, based on two different conversions of the Penn Treebank. The first uses the Penn2Malt conversion based on the head- (Yamada and Matsumoto, 2003) . The last column shows the accuracy of Part-of-Speech tags.",
"cite_spans": [
{
"start": 378,
"end": 406,
"text": "(Yamada and Matsumoto, 2003)",
"ref_id": "BIBREF36"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "finding rules of Yamada and Matsumoto (2003) . Table 1 gives an overview of the properties of the corpus. The annotation of the corpus does not contain non-projective links. The training data was 10-fold jackknifed with our own tagger. 4 . Table 1 shows the tagging accuracy. Table 2 lists the accuracy of our transitionbased parser with completion model together with results from related work. All results use predicted PoS tags. As a baseline, we present in addition results without the completion model and a graph-based parser with second order features (G 2a ). For the Graph-based parser, we used 10 training iterations. The following rows denoted with T a , T 2a , T 2ab , T 2ab3a , T 2ab3b , T 2ab3bc , and T 2a3abc present the result for the parser with completion model. The subscript letters denote the used factors of the completion model as shown in Figure 3 to 7. The parsers with subscribed plus (e.g. G 2a+ ) in addition use feature templates that contain one word left or right of the head, dependent, siblings, and grandchildren. We left those feature in our previous models out as they may interfere with the second and third order factors. As in previous work, we exclude punctuation marks for the English data converted with Penn2Malt in the evaluation, cf. (McDonald et al., 2005; Koo and Collins, 2010; Zhang and Nivre, 2011) . 5 We optimized the feature model of our parser on section 24 and used section 23 for evaluation. We use a beam size of 80 for our transition-based parser and 25 training iterations.",
"cite_spans": [
{
"start": 17,
"end": 44,
"text": "Yamada and Matsumoto (2003)",
"ref_id": "BIBREF36"
},
{
"start": 236,
"end": 237,
"text": "4",
"ref_id": null
},
{
"start": 1280,
"end": 1303,
"text": "(McDonald et al., 2005;",
"ref_id": "BIBREF26"
},
{
"start": 1304,
"end": 1326,
"text": "Koo and Collins, 2010;",
"ref_id": "BIBREF20"
},
{
"start": 1327,
"end": 1349,
"text": "Zhang and Nivre, 2011)",
"ref_id": "BIBREF38"
},
{
"start": 1352,
"end": 1353,
"text": "5",
"ref_id": null
}
],
"ref_spans": [
{
"start": 47,
"end": 54,
"text": "Table 1",
"ref_id": null
},
{
"start": 276,
"end": 283,
"text": "Table 2",
"ref_id": "TABREF2"
},
{
"start": 864,
"end": 872,
"text": "Figure 3",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "The second English data set was obtained by using the LTH conversion schema as used in the CoNLL Shared Task 2009, cf. (Haji\u010d et al., 2009) . This corpus preserves the non-projectivity of the phrase structure annotation, it has a rich edge label set, and provides automatic assigned PoS Parser UAS LAS (McDonald et al., 2005) 90.9 (McDonald and Pereira, 2006) 91.5 (Huang and Sagae, 2010) 92.1 (Zhang and Nivre, 2011) 92.9 (Koo and Collins, 2010) 93.04 (Martins et al., 2010) 93 tags. From the same data set, we selected the corpora for Czech and German. In all cases, we used the provided training, development, and test data split, cf. (Haji\u010d et al., 2009) . In contrast to the evaluation of the Penn2Malt conversion, we include punctuation marks for these corpora and follow in that the evaluation schema of the CoNLL Shared Task 2009. Table 3 presents the results as obtained for these data set. The transition-based parser obtains higher accuracy scores for Czech but still lower scores for English and German. For Czech, the result of T is 1.59 percentage points higher than the top labeled score in the CoNLL shared task 2009. The reason is that T includes already third order features that are needed to determine some edge labels. The transition-based parser with completion model T 2a has even 2.62 percentage points higher accuracy and it could improve the results of the parser T by additional 1.03 percentage points. The results of the parser T are lower for English and German compared to the results of the graphbased parser G 2a . The completion model T 2a can reach a similar accuracy level for these two languages. The third order features let the transitionbased parser reach higher scores than the graphbased parser. The third order features contribute for each language a relatively small improvement Parser Eng. Czech German (Gesmundo et al., 2009 ) \u2020 88.79/-80.38 87.29 (Bohnet, 2009 Table 3 : Labeled Attachment Scores of parsers that use the data sets of the CoNLL shared task 2009. In line with previous work, punctuation is included. The parsers marked with \u2020 used a joint model for syntactic parsing and semantic role labelling. We provide more parsing results for the languages of CoNLL-X Shared Task at http://code.google.com/p/mate-tools/.",
"cite_spans": [
{
"start": 119,
"end": 139,
"text": "(Haji\u010d et al., 2009)",
"ref_id": "BIBREF15"
},
{
"start": 302,
"end": 325,
"text": "(McDonald et al., 2005)",
"ref_id": "BIBREF26"
},
{
"start": 331,
"end": 359,
"text": "(McDonald and Pereira, 2006)",
"ref_id": "BIBREF25"
},
{
"start": 365,
"end": 388,
"text": "(Huang and Sagae, 2010)",
"ref_id": "BIBREF16"
},
{
"start": 394,
"end": 417,
"text": "(Zhang and Nivre, 2011)",
"ref_id": "BIBREF38"
},
{
"start": 423,
"end": 446,
"text": "(Koo and Collins, 2010)",
"ref_id": "BIBREF20"
},
{
"start": 453,
"end": 475,
"text": "(Martins et al., 2010)",
"ref_id": "BIBREF24"
},
{
"start": 638,
"end": 658,
"text": "(Haji\u010d et al., 2009)",
"ref_id": "BIBREF15"
},
{
"start": 1847,
"end": 1869,
"text": "(Gesmundo et al., 2009",
"ref_id": "BIBREF12"
},
{
"start": 1870,
"end": 1906,
"text": ") \u2020 88.79/-80.38 87.29 (Bohnet, 2009",
"ref_id": null
}
],
"ref_spans": [
{
"start": 839,
"end": 846,
"text": "Table 3",
"ref_id": null
},
{
"start": 1907,
"end": 1914,
"text": "Table 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "Parser UAS LAS (Zhang and Clark, 2008) 84.3 (Huang and Sagae, 2010) 85.2 (Zhang and Nivre, 2011) 86.0 84.4 T 2ab3abc+ 87.5 85.9 Table 4 : Chinese Attachment Scores for the conversion of CTB 5 with head rules of Zhang and Clark (2008) . We take the standard split of CTB 5 and use in line with previous work gold segmentation, POStags and exclude punctuation marks for the evaluation.",
"cite_spans": [
{
"start": 15,
"end": 38,
"text": "(Zhang and Clark, 2008)",
"ref_id": "BIBREF37"
},
{
"start": 44,
"end": 67,
"text": "(Huang and Sagae, 2010)",
"ref_id": "BIBREF16"
},
{
"start": 73,
"end": 96,
"text": "(Zhang and Nivre, 2011)",
"ref_id": "BIBREF38"
},
{
"start": 211,
"end": 233,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [
{
"start": 128,
"end": 135,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "of the score. Small and statistically significant improvements provides the additional second order factor (2b). 6 We tried to determine the best third order factors or set of factors but we cannot denote such a factor which is the best for all languages. For German, we obtained a significant improvement with the factor (3b). We believe that this is due to the flat annotation of PPs in the German corpus. If we combine all third order factors we obtain for the Penn2Malt conversion a small improvement of 0.2 percentage points over the results of (2ab). We think that a more deep feature selection for third order factors may help to improve the actuary further.",
"cite_spans": [
{
"start": 113,
"end": 114,
"text": "6",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "In Table 4 , we present results on the Chinese Treebank. To our knowledge, we obtain the best published results so far. 6 The results of the baseline T compared to T 2ab3abc are statistically significant (p < 0.01).",
"cite_spans": [
{
"start": 120,
"end": 121,
"text": "6",
"ref_id": null
}
],
"ref_spans": [
{
"start": 3,
"end": 10,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Parsing Experiments and Discussion",
"sec_num": "5"
},
{
"text": "The parser introduced in this paper combines advantageous properties from the two major paradigms in data-driven dependency parsing, in particular worst case quadratic complexity of transition-based parsing with a swap operation and the consideration of complete second and third order factors in the scoring of alternatives. While previous work using third order factors, cf. Koo and Collins (2010) , was restricted to unlabeled and projective trees, our parser can produce labeled and non-projective dependency trees.",
"cite_spans": [
{
"start": 377,
"end": 399,
"text": "Koo and Collins (2010)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "6"
},
{
"text": "In contrast to parser stacking, which involves running two parsers in training and application, we use only the feature model of a graph-based parser but not the graph-based parsing algorithm. This is not only conceptually superior, but makes training much simpler, since no jackknifing has to be carried out. Zhang and Clark (2008) proposed a similar combination, without the rescoring procedure. Our implementation allows for the use of rich feature sets in the combined scoring functions, and our experimental results show that the \"graph-based\" completion model leads to an increase of between 0.4 (for English) and about 1 percentage points (for Czech). The scores go beyond the current state of the art results for typologically different languages such as Chinese, Czech, English, and German. For Czech, English (Penn2Malt) and German, these are to our knowlege the highest reported scores of a dependency parser that does not use additional sources of information (such as extra unlabeled training data for clustering). Note that the efficient techniques and implementation such as the Hash Kernel, the incremental calculation of the scores of the completion model, and the parallel feature extraction as well as the parallelized transition-based parsing strategy play an important role in carrying out this idea in practice.",
"cite_spans": [
{
"start": 310,
"end": 332,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "6"
},
{
"text": "Since search is not exhaustive, there is of course a slight danger that the correct history drops out of the beam before complete information becomes available. But as our experiments show, this does not seem to be a serious issue empirically.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "6 core, 3.33 Ghz Intel Nehalem",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://code.google.com/p/mate-tools/5 We followKoo and Collins (2010) and ignore any token whose POS tag is one of the following tokens '' '':,.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Parsing by chunks",
"authors": [
{
"first": "S",
"middle": [],
"last": "Abney",
"suffix": ""
}
],
"year": 1991,
"venue": "Principle-Based Parsing",
"volume": "",
"issue": "",
"pages": "257--278",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Abney. 1991. Parsing by chunks. In Principle- Based Parsing, pages 257-278. Kluwer Academic Publishers.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Experiments with a Multilanguage Non-Projective Dependency Parser",
"authors": [
{
"first": "G",
"middle": [],
"last": "Attardi",
"suffix": ""
}
],
"year": 2006,
"venue": "Tenth Conference on Computational Natural Language Learning (CoNLL-X)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G. Attardi. 2006. Experiments with a Multilan- guage Non-Projective Dependency Parser. In Tenth Conference on Computational Natural Language Learning (CoNLL-X).",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Efficient Parsing of Syntactic and Semantic Dependency Structures",
"authors": [
{
"first": "B",
"middle": [],
"last": "Bohnet",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 13th Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B. Bohnet. 2009. Efficient Parsing of Syntactic and Semantic Dependency Structures. In Proceedings of the 13th Conference on Computational Natural Language Learning (CoNLL-2009).",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Top accuracy and fast dependency parsing is not a contradiction",
"authors": [
{
"first": "B",
"middle": [],
"last": "Bohnet",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 23rd International Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "89--97",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B. Bohnet. 2010. Top accuracy and fast dependency parsing is not a contradiction. In Proceedings of the 23rd International Conference on Computational Linguistics (Coling 2010), pages 89-97, Beijing, China, August. Coling 2010 Organizing Commit- tee.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Tag, dynamic programming, and the perceptron for efficient, feature-rich parsing",
"authors": [
{
"first": "X",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Koo",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Twelfth Conference on Computational Natural Language Learning, CoNLL '08",
"volume": "",
"issue": "",
"pages": "9--16",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "X. Carreras, M. Collins, and T. Koo. 2008. Tag, dynamic programming, and the perceptron for ef- ficient, feature-rich parsing. In Proceedings of the Twelfth Conference on Computational Natural Lan- guage Learning, CoNLL '08, pages 9-16, Strouds- burg, PA, USA. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Experiments with a Higher-order Projective Dependency Parser",
"authors": [
{
"first": "X",
"middle": [],
"last": "Carreras",
"suffix": ""
}
],
"year": 2007,
"venue": "EMNLP/CoNLL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "X. Carreras. 2007. Experiments with a Higher-order Projective Dependency Parser. In EMNLP/CoNLL.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Incremental parsing with the perceptron algorithm",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Roark",
"suffix": ""
}
],
"year": 2004,
"venue": "ACL",
"volume": "",
"issue": "",
"pages": "111--118",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins and B. Roark. 2004. Incremental parsing with the perceptron algorithm. In ACL, pages 111- 118.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Discriminative Training Methods for Hidden Markov Models: Theory and Experiments with Perceptron Algorithms",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2002,
"venue": "EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins. 2002. Discriminative Training Methods for Hidden Markov Models: Theory and Experi- ments with Perceptron Algorithms. In EMNLP.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Online Passive-Aggressive Algorithms",
"authors": [
{
"first": "K",
"middle": [],
"last": "Crammer",
"suffix": ""
},
{
"first": "O",
"middle": [],
"last": "Dekel",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Shalev-Shwartz",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Singer",
"suffix": ""
}
],
"year": 2006,
"venue": "Journal of Machine Learning Research",
"volume": "7",
"issue": "",
"pages": "551--585",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Crammer, O. Dekel, S. Shalev-Shwartz, and Y. Singer. 2006. Online Passive-Aggressive Al- gorithms. Journal of Machine Learning Research, 7:551-585.",
"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": "Proceedings of the 16th International Conference on Computational Linguistics (COLING-96)",
"volume": "",
"issue": "",
"pages": "340--345",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Eisner. 1996. Three New Probabilistic Models for Dependency Parsing: An Exploration. In Proceed- ings of the 16th International Conference on Com- putational Linguistics (COLING-96), pages 340- 345, Copenhaen.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Large margin classification using the perceptron algorithm",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Freund",
"suffix": ""
},
{
"first": "R",
"middle": [
"E"
],
"last": "Schapire",
"suffix": ""
}
],
"year": 1998,
"venue": "11th Annual Conference on Computational Learning Theory",
"volume": "",
"issue": "",
"pages": "209--217",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Freund and R. E. Schapire. 1998. Large margin classification using the perceptron algorithm. In 11th Annual Conference on Computational Learn- ing Theory, pages 209-217, New York, NY. ACM Press.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Small statistical models by random feature mixing",
"authors": [
{
"first": "K",
"middle": [],
"last": "Ganchev",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dredze",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the ACL-2008 Workshop on Mobile Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Ganchev and M. Dredze. 2008. Small statisti- cal models by random feature mixing. In Proceed- ings of the ACL-2008 Workshop on Mobile Lan- guage Processing. Association for Computational Linguistics.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "A Latent Variable Model of Synchronous Syntactic-Semantic Parsing for Multiple Languages",
"authors": [
{
"first": "A",
"middle": [],
"last": "Gesmundo",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Henderson",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Merlo",
"suffix": ""
},
{
"first": "I",
"middle": [],
"last": "Titov",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 13th Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Gesmundo, J. Henderson, P. Merlo, and I. Titov. 2009. A Latent Variable Model of Syn- chronous Syntactic-Semantic Parsing for Multiple Languages. In Proceedings of the 13th Confer- ence on Computational Natural Language Learning (CoNLL-2009), Boulder, Colorado, USA., June 4-5.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "An efficient algorithm for easy-first non-directional dependency parsing",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Goldberg",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Elhadad",
"suffix": ""
}
],
"year": 2010,
"venue": "HLT-NAACL",
"volume": "",
"issue": "",
"pages": "742--750",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Goldberg and M. Elhadad. 2010. An efficient al- gorithm for easy-first non-directional dependency parsing. In HLT-NAACL, pages 742-750.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "A Transition-Based 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": "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 ACL, pages 1492-1501.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "The CoNLL-2009 shared task: Syntactic and semantic dependencies in multiple languages",
"authors": [
{
"first": "J",
"middle": [],
"last": "Haji\u010d",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Ciaramita",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Johansson",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Kawahara",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Mart\u00ed",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "M\u00e0rquez",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Meyers",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Pad\u00f3",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "\u0160t\u011bp\u00e1nek",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Stra\u0148\u00e1k",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Surdeanu",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the Thirteenth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "1--18",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Haji\u010d, M. Ciaramita, R. Johansson, D. Kawahara, M. Ant\u00f2nia Mart\u00ed, L. M\u00e0rquez, A. Meyers, J. Nivre, S. Pad\u00f3, J.\u0160t\u011bp\u00e1nek, P. Stra\u0148\u00e1k, M. Surdeanu, N. Xue, and Y. Zhang. 2009. The CoNLL-2009 shared task: Syntactic and semantic dependencies in multiple languages. In Proceedings of the Thir- teenth Conference on Computational Natural Lan- guage Learning (CoNLL 2009): Shared Task, pages 1-18, Boulder, United States, June.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Dynamic programming for linear-time incremental parsing",
"authors": [
{
"first": "K",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Sagae",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "1077--1086",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huang and K. Sagae. 2010. Dynamic programming for linear-time incremental parsing. In Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics, pages 1077-1086, Up- psala, Sweden, July. Association for Computational Linguistics.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Investigating multilingual dependency parsing",
"authors": [
{
"first": "R",
"middle": [],
"last": "Johansson",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Nugues",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the Shared Task Session of the Tenth Conference on Computational Natural Language Learning (CoNLL-X)",
"volume": "",
"issue": "",
"pages": "206--210",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Johansson and P. Nugues. 2006. Investigating multilingual dependency parsing. In Proceedings of the Shared Task Session of the Tenth Confer- ence on Computational Natural Language Learning (CoNLL-X), pages 206-210, New York City, United States, June 8-9.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Dependencybased Syntactic-Semantic Analysis with PropBank and NomBank",
"authors": [
{
"first": "R",
"middle": [],
"last": "Johansson",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Nugues",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Shared Task Session of CoNLL-2008",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Johansson and P. Nugues. 2008. Dependency- based Syntactic-Semantic Analysis with PropBank and NomBank. In Proceedings of the Shared Task Session of CoNLL-2008, Manchester, UK.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Pseudo-projectivity: A polynomially parsable nonprojective dependency grammar",
"authors": [
{
"first": "A",
"middle": [],
"last": "Kahane",
"suffix": ""
},
{
"first": "O",
"middle": [],
"last": "Nasr",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rambow",
"suffix": ""
}
],
"year": 1998,
"venue": "COLING-ACL",
"volume": "",
"issue": "",
"pages": "646--652",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kahane, A. Nasr, and O. Rambow. 1998. Pseudo-projectivity: A polynomially parsable non- projective dependency grammar. In COLING-ACL, pages 646-652.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Efficient third-order dependency parsers",
"authors": [
{
"first": "T",
"middle": [],
"last": "Koo",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "1--11",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Koo and M. Collins. 2010. Efficient third-order dependency parsers. In Proceedings of the 48th Annual Meeting of the Association for Computa- tional Linguistics, pages 1-11, Uppsala, Sweden, July. Association for Computational Linguistics.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Simple semi-supervised dependency parsing",
"authors": [
{
"first": "Terry",
"middle": [],
"last": "Koo",
"suffix": ""
},
{
"first": "Xavier",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "",
"issue": "",
"pages": "595--603",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Terry Koo, Xavier Carreras, and Michael Collins. 2008. Simple semi-supervised dependency parsing. pages 595-603.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Japanese dependency analysis using cascaded chunking",
"authors": [
{
"first": "T",
"middle": [],
"last": "Kudo",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2002,
"venue": "proceedings of the 6th conference on Natural language learning",
"volume": "20",
"issue": "",
"pages": "1--7",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Kudo and Y. Matsumoto. 2002. Japanese de- pendency analysis using cascaded chunking. In proceedings of the 6th conference on Natural lan- guage learning -Volume 20, COLING-02, pages 1- 7, Stroudsburg, PA, USA. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Dynamic programming algorithms for transition-based dependency parsers",
"authors": [
{
"first": "M",
"middle": [],
"last": "Kuhlmann",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "G\u00f3mez-Rodr\u00edguez",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Satta",
"suffix": ""
}
],
"year": 2011,
"venue": "ACL",
"volume": "",
"issue": "",
"pages": "673--682",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Kuhlmann, C. G\u00f3mez-Rodr\u00edguez, and G. Satta. 2011. Dynamic programming algorithms for transition-based dependency parsers. In ACL, pages 673-682.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Turbo parsers: Dependency parsing by approximate variational inference",
"authors": [
{
"first": "Andre",
"middle": [],
"last": "Martins",
"suffix": ""
},
{
"first": "Noah",
"middle": [],
"last": "Smith",
"suffix": ""
},
{
"first": "Eric",
"middle": [],
"last": "Xing",
"suffix": ""
},
{
"first": "Pedro",
"middle": [],
"last": "Aguiar",
"suffix": ""
},
{
"first": "Mario",
"middle": [],
"last": "Figueiredo",
"suffix": ""
}
],
"year": 2010,
"venue": "",
"volume": "",
"issue": "",
"pages": "34--44",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andre Martins, Noah Smith, Eric Xing, Pedro Aguiar, and Mario Figueiredo. 2010. Turbo parsers: De- pendency parsing by approximate variational infer- ence. pages 34-44.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Online Learning of Approximate Dependency Parsing Algorithms",
"authors": [
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. 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 In Proc. of EACL, pages 81-88.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"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": "91--98",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. McDonald, K. Crammer, and F. Pereira. 2005. On- line Large-margin Training of Dependency Parsers. In Proc. ACL, pages 91-98.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Integrating Graph-Based and Transition-Based Dependency Parsers",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Mcdonald",
"suffix": ""
}
],
"year": 2008,
"venue": "ACL-08",
"volume": "",
"issue": "",
"pages": "950--958",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre and R. McDonald. 2008. Integrating Graph- Based and Transition-Based Dependency Parsers. In ACL-08, pages 950-958, Columbus, Ohio.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Pseudo-projective dependency parsing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nilsson",
"suffix": ""
}
],
"year": 2005,
"venue": "ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre and J. Nilsson. 2005. Pseudo-projective de- pendency parsing. In ACL.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "An improved oracle for dependency parsing with online reordering",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Kuhlmann",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Hall",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 11th International Conference on Parsing Technologies, IWPT '09",
"volume": "",
"issue": "",
"pages": "73--76",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre, M. Kuhlmann, and J. Hall. 2009. An im- proved oracle for dependency parsing with online reordering. In Proceedings of the 11th Interna- tional Conference on Parsing Technologies, IWPT '09, pages 73-76, Stroudsburg, PA, USA. Associa- tion for Computational Linguistics.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "An Efficient Algorithm for Projective Dependency Parsing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2003,
"venue": "8th International Workshop on Parsing Technologies",
"volume": "",
"issue": "",
"pages": "149--160",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre. 2003. An Efficient Algorithm for Pro- jective Dependency Parsing. In 8th International Workshop on Parsing Technologies, pages 149-160, Nancy, France.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Non-Projective Dependency Parsing in Expected Linear Time",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 47th Annual Meeting of the ACL and the 4th IJC-NLP of the AFNLP",
"volume": "",
"issue": "",
"pages": "351--359",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre. 2009. Non-Projective Dependency Parsing in Expected Linear Time. In Proceedings of the 47th Annual Meeting of the ACL and the 4th IJC- NLP of the AFNLP, pages 351-359, Suntec, Singa- pore.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Parser combination by reparsing",
"authors": [
{
"first": "K",
"middle": [],
"last": "Sagae",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Lavie",
"suffix": ""
}
],
"year": 2006,
"venue": "NAACL '06: Proceedings of the Human Language Technology Conference of the NAACL, Companion Volume: Short Papers on XX",
"volume": "",
"issue": "",
"pages": "129--132",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Sagae and A. Lavie. 2006. Parser combina- tion by reparsing. In NAACL '06: Proceedings of the Human Language Technology Conference of the NAACL, Companion Volume: Short Papers on XX, pages 129-132, Morristown, NJ, USA. Association for Computational Linguistics.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Hash Kernels for Structured Data",
"authors": [
{
"first": "J",
"middle": [],
"last": "Shi",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Petterson",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Dror",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Langford",
"suffix": ""
},
{
"first": "S",
"middle": [
"V N"
],
"last": "Smola",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Vishwanathan",
"suffix": ""
}
],
"year": 2009,
"venue": "In Journal of Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shi, J. Petterson, G. Dror, J. Langford, A. Smola, and S.V.N. Vishwanathan. 2009. Hash Kernels for Structured Data. In Journal of Machine Learning.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "An empirical study of semi-supervised structured conditional models for dependency parsing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Suzuki",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Isozaki",
"suffix": ""
},
{
"first": "X",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2009,
"venue": "EMNLP",
"volume": "",
"issue": "",
"pages": "551--560",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Suzuki, H. Isozaki, X. Carreras, and M Collins. 2009. An empirical study of semi-supervised struc- tured conditional models for dependency parsing. In EMNLP, pages 551-560.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "A Latent Variable Model for Generative Dependency Parsing",
"authors": [
{
"first": "I",
"middle": [],
"last": "Titov",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Henderson",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of IWPT",
"volume": "",
"issue": "",
"pages": "144--155",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "I. Titov and J. Henderson. 2007. A Latent Variable Model for Generative Dependency Parsing. In Pro- ceedings of IWPT, pages 144-155.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Statistical Dependency Analysis with Support Vector Machines",
"authors": [
{
"first": "H",
"middle": [],
"last": "Yamada",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of IWPT",
"volume": "",
"issue": "",
"pages": "195--206",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Yamada and Y. Matsumoto. 2003. Statistical De- pendency Analysis with Support Vector Machines. In Proceedings of IWPT, pages 195-206.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "A tale of two parsers: investigating and combining graph-based and transition-based dependency parsing using beam-search",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Clark",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of EMNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Zhang and S. Clark. 2008. A tale of two parsers: investigating and combining graph-based and transition-based dependency parsing using beam-search. In Proceedings of EMNLP, Hawaii, USA.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Transition-based dependency parsing with rich non-local features",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies",
"volume": "",
"issue": "",
"pages": "188--193",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Zhang and J. Nivre. 2011. Transition-based de- pendency parsing with rich non-local features. In Proceedings of the 49th Annual Meeting of the As- sociation for Computational Linguistics: Human Language Technologies, pages 188-193, Portland, Oregon, USA, June. Association for Computational Linguistics.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "Model 2a. Second order factors of"
},
"FIGREF1": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "2b. The left-most dependent of the head or the right-most dependent in the right-headed case."
},
"FIGREF2": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "illustrates a new type of factor we use, which includes the left-most dependent in the leftheaded case and symmetricaly the right-most sibling in the right-head case."
},
"FIGREF3": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "3a. The first two children of the head, which do not include the edge between the head and the dependent."
},
"FIGREF4": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "3b. The first two children of the dependent."
},
"FIGREF5": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "3c. The right-most dependent of the rightmost dependent."
},
"TABREF2": {
"num": null,
"html": null,
"type_str": "table",
"content": "<table/>",
"text": "English Attachment Scores for the Penn2Malt conversion of the Penn Treebank for the test set. Punctuation is excluded from the evaluation. The results marked with \u2020 are not directly comparable to our work as they depend on additional sources of information (Brown Clusters)."
},
"TABREF3": {
"num": null,
"html": null,
"type_str": "table",
"content": "<table><tr><td/><td>89.88/-</td><td>80.11</td><td>87.48</td></tr><tr><td colspan=\"4\">T (Baseline) 89.522ab 90.26/92.56 83.22/88.34 88.31/90.24</td></tr><tr><td>T 2ab3a</td><td colspan=\"3\">90.20/90.51 83.21.88.30 88.14/90.23</td></tr><tr><td>T 2ab3b</td><td colspan=\"3\">90.26/92.57 83.22/88.35 88.50/90.59</td></tr><tr><td>T 2ab3abc</td><td colspan=\"3\">90.31/92.58 83.31/88.30 88.33/90.45</td></tr><tr><td>G2a+</td><td colspan=\"3\">90.39/92.8 81.43/88.0 88.26/90.50</td></tr><tr><td>T 2ab3ab+</td><td colspan=\"3\">90.36/92.66 83.48/88.47 88.51/90.62</td></tr></table>",
"text": "/92.10 81.97/87.26 87.53/89.86 G2a (Baseline) 90.14/92.36 81.13/87.65 87.79/90.12 T2a 90.20/92.55 83.01/88.12 88.22/90.36 T"
}
}
}
}