| { |
| "paper_id": "R09-1033", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:00:24.780136Z" |
| }, |
| "title": "Co-Parsing with Competitive Models", |
| "authors": [ |
| { |
| "first": "Lidia", |
| "middle": [], |
| "last": "Khmylko", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "Natural Language Systems Group", |
| "institution": "University of Hamburg", |
| "location": { |
| "country": "Germany" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Kilian", |
| "middle": [ |
| "A" |
| ], |
| "last": "Foth", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "kilian.foth@smartspeed.com" |
| }, |
| { |
| "first": "Wolfgang", |
| "middle": [], |
| "last": "Menzel", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "Natural Language Systems Group", |
| "institution": "University of Hamburg", |
| "location": { |
| "country": "Germany" |
| } |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "We present an asymmetric approach to a runtime combination of two parsers where one component serves as a predictor to the other one. Predictions are integrated by means of weighted constraints and therefore are subject to preferential decisions. Previously, the same architecture has been successfully used with predictors providing partial or inferior information about the parsing problem. It has now been applied to a situation where the predictor produces exactly the same type of information at a fully competitive quality level. Results show that the combined system outperforms its individual components, even though their performance in isolation is already fairly high.", |
| "pdf_parse": { |
| "paper_id": "R09-1033", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "We present an asymmetric approach to a runtime combination of two parsers where one component serves as a predictor to the other one. Predictions are integrated by means of weighted constraints and therefore are subject to preferential decisions. Previously, the same architecture has been successfully used with predictors providing partial or inferior information about the parsing problem. It has now been applied to a situation where the predictor produces exactly the same type of information at a fully competitive quality level. Results show that the combined system outperforms its individual components, even though their performance in isolation is already fairly high.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Machine learning techniques for automatically acquiring processing models from a data collection and traditional methods of eliciting linguistic knowledge from human experts are usually considered as two alternative roadmaps towards natural language processing solutions. Since the resulting components exhibit quite different performance characteristics with respect to coverage, robustness and output quality, they might be able to provide some kind of complementary information, which could even lead to a notable degree of synergy between them when combined within a single system solution.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "For the task of dependency parsing the high potential for such a synergy has indeed been demonstrated already.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "A popular approach for combining alternative decision procedures is voting [18] . It makes use of a symmetric architecture, where a meta component chooses from among the available candidate hypotheses by means of a (weighted) voting scheme. Such an approach not only requires the target structures of all components to be of the same kind, but in case of complex structures like parse trees also requires sophisticated decision procedures which are able to select the optimal hypotheses with respect to additional global constraints (e.g. the tree property). Since this optimization problem has to be solved by the individual parser anyhow, an asymmetric architecture suggests itself as an alternative.", |
| "cite_spans": [ |
| { |
| "start": 75, |
| "end": 79, |
| "text": "[18]", |
| "ref_id": "BIBREF17" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In asymmetric architectures, a master component, i.e. a full fledged parser, is solely in charge of deciding on the target structure, whilst the others (so called helper or predictor components) provide additional evidence which is integrated into the global decision by suitable means. Such a scheme has been extensively investigated for the Weighted Constraint Dependency Grammar, WCDG [3] . External evidence from the predictor components is integrated by means of constraints, which check for compatibility between a local structure and a prediction, and penalize this hypothesis in case of a conflict. So far, however, all the additional information sources which have been considered in this research differed considerably from the master component: They either focused on particular aspects of the parsing problem (e.g. POS tagging, chunking, PP attachment), or used a simplified scheme for structural annotation (e.g. projective instead of non-projective trees).", |
| "cite_spans": [ |
| { |
| "start": 388, |
| "end": 391, |
| "text": "[3]", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "This paper takes one step further by investigating the same architecture under the additional condition that (1) the helper component provides the very same kind of target structure as the master, and (2) the quality levels are considered in isolation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "As a helper component MSTParser [9] , a stateof-the-art dependency parser for non-projective structures based on a discriminative learning paradigm, is considered. The accuracy of MSTParser differs insignificatly from that of WCDG with all the previously used helper components active.", |
| "cite_spans": [ |
| { |
| "start": 32, |
| "end": 35, |
| "text": "[9]", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Section two introduces WCDG with a special emphasis on the soft integration of external evidence while section three describes MSTParser which is used as a new predictor component. Since parsing results for these systems have been reported in quite different experimental settings we first evaluate them under comparable conditions and provide the results of using MSTParser as a guiding predictor for WCDG in section four and discuss whether the expected synergies have really materialized. Section five concentrates on a comparative error analysis.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "The formalism of a Constraint Dependency Grammar was first introduced by H. Maruyama [8] and suggests modeling natural language with the help of constraints. I. Schr\u00f6der [17] has extended the approach to Weighted Constraint Dependency Grammar, WCDG, where weights are used to further disambiguate between competing structural alternatives. A WCDG models natural language as labeled dependency trees and is entirely declarative. It has no derivation rules -instead, constraints license well-formed tree structures. The reference implementation of WCDG for the German language used for the experiments described below contains about 1, 000 manually compiled constraints. 1 The values of weights of the WCDG constraints have to be determined by the grammar writer experimentally. They lie in the interval from zero to one, a lower value of the weight reflects its greater importance. Constraints having zero weights are referred to as hard and are used for prohibitive rules. Constraints with a weight greater than zero, also called defeasible, may express universal principles or vague preferences for language phenomena. Empirically, the absolute values of defeasible constraints usually do not matter greatly as long as the relative importance of the rules remains preserved.", |
| "cite_spans": [ |
| { |
| "start": 85, |
| "end": 88, |
| "text": "[8]", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 170, |
| "end": 174, |
| "text": "[17]", |
| "ref_id": "BIBREF16" |
| }, |
| { |
| "start": 669, |
| "end": 670, |
| "text": "1", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "WCDG", |
| "sec_num": "2" |
| }, |
| { |
| "text": "If a set of dependency edges in a parse found by the system violates any of the constraints, it is registered as a constraint violation between the structure and the rules of the language. The score of an analysis is the product of all the weights for constraint violations occurring in the structure. Therefore, it becomes possible to differentiate between the quality of different parse results: the analysis with a higher score is considered preferable. Under these conditions, an analysis having only a few grave conflicts may be preferred by the system against another one with a great number of smaller constraint violations. However, an analysis which violates any of the hard constraints always receives the lowest possible score.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "WCDG", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The parsing problem is being treated in the WCDG system as a Constraint Satisfaction Problem. While a complete search is intractable for such a problem, transformation-based solution methods provide a reliable heuristic alternative. Starting with an initial guess about the optimal tree, changes of labels, subordinations, or lexical variants are applied, with constraint violations used as a control mechanism guiding the transformation process [5] .", |
| "cite_spans": [ |
| { |
| "start": 446, |
| "end": 449, |
| "text": "[5]", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "WCDG", |
| "sec_num": "2" |
| }, |
| { |
| "text": "A transformation-based search cannot guarantee to find the best solution to the constraint satisfaction problem. Compared to the resource requirements of a complete search, however, it is not only more efficient, but can also be interrupted at any time. Even if interrupted, it will always return an analysis, together with a list of constraint violations it was not able to remove. The algorithm terminates on its own if no violated constraints with a weight above a predefined threshold remain. Alternatively, a timeout condition can be imposed. 1 Freely available from http://nats-www.informatik. uni-hamburg.de/view/CDG/DownloadPage", |
| "cite_spans": [ |
| { |
| "start": 548, |
| "end": 549, |
| "text": "1", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "WCDG", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The same kind of constraints that describe grammar rules, can also be used as an interface to external predictor components. Thus, the formalism turned out to be flexible enough to incorporate other sources of knowledge into the decision process on the optimal structural interpretation. Previously, five additional statistical components have been successfully integrated into WCDG: POS tagger, chunker, supertagger, PP attacher and a shift-reduce oracle parser [4] . This study has shown that the accuracy also improves if multiple components interact and consistent predictions no longer can be guaranteed. Even though the predictor components have an accuracy that is mostly -with the exception of the tagger -below that of the parser itself, WCDG not only avoids error propagation successfully, it also improves consistently by slight, but noticeable margins.", |
| "cite_spans": [ |
| { |
| "start": 463, |
| "end": 466, |
| "text": "[4]", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "WCDG", |
| "sec_num": "2" |
| }, |
| { |
| "text": "MSTParser [9] is a state-of-the-art language independent data-driven parser. It processes the input in two separate stages. In the first, the dependency structure is determined, labeling is applied to it successively in the second. The reasons of its efficiency lie in the successful combination of discriminative learning with graph-based solution methods for the parsing problem.", |
| "cite_spans": [ |
| { |
| "start": 10, |
| "end": 13, |
| "text": "[9]", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "In this edge-factored graph-based model, each edge of the dependency graph is assigned a real-valued score that expresses the likelihood of creating a dependency edge between two words. The score of the graph is defined as the sum of its edge scores.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "If a scoring function for edges is known, the parsing problem becomes equivalent to finding the highest scoring directed spanning tree in the complete graph over the given sentence, and the correct parse can be obtained by searching the space of valid dependency graphs for a tree with a maximum score.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "This formalism allows to find efficient solutions for both projective and non-projective trees. When only features over single edges are taken into account, the complexity falls to unprecedented O(n 2 ) [12] .", |
| "cite_spans": [ |
| { |
| "start": 203, |
| "end": 207, |
| "text": "[12]", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Not only a single edge, but also adjacent edges may be included into the scoring function. As a result, intractability problems arise for the non-projective algorithm, but an efficient approximate algorithm based on exhaustive search is provided for this case [10] . This algorithm was also used for our experiments. 2 The parsing model of MSTParser has the advantage that it can be trained globally and eventually be applied with an exact inference algorithm. On the other hand, the parser has only limited access to the history of parsing decisions. To avoid complexity problems, the scores (and the feature representations) are restricted to a single edge or adjacent edges. Outsourcing labeling into a separate stage comes at the price of not being able to combine knowledge about the label and the structure it is attached to. Such combined evidence, however, might be helpful for some disambiguation problems.", |
| "cite_spans": [ |
| { |
| "start": 260, |
| "end": 264, |
| "text": "[10]", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 317, |
| "end": 318, |
| "text": "2", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "MSTParser predictions are integrated into the decision procedure of WCDG by means of two additional constraints, which monitor each dependency hypothesis for being in accord with the prediction and penalize it if a mismatch has been found. One of the constraints checks the attachment point being the same, while the other takes care of the dependency label.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Guiding WCDG by Predictions of MSTParser", |
| "sec_num": "4" |
| }, |
| { |
| "text": "To properly adjust the weights of these constraints, it has to be determined how valuable the information of the predictor is relative to the information already present in the system. This gradation is needed to establish a balance between the influence of the grammar and the predictor. According to the scoring principles of WCDG, a low weight strongly deprecates all deviations from the prediction, thus forcing the system to follow them almost without exception. Higher weights, on the other hand, enable the grammar to override a prediction. This, however, also means that predictions have less guiding effect of the transformation process. Typically for WCDG, the best suitable weights have to be tuned on development data.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Guiding WCDG by Predictions of MSTParser", |
| "sec_num": "4" |
| }, |
| { |
| "text": "To determine the best constraint weights the WCDG grammar is extended with three additional constraints similar to those used for the shift-reduce predictor in the previous experiments [3] : The first two constraints advise WCDG on the structural information, whereby the second deals with the elements modifying the root and the first with all the others; the third fetches the edge label predicted. W , 0 \u2264 W \u2264 1, stands for the constraint weight chosen for the experiment. As a result of these experiments, the optimum weight for the attachment predictions has been adjusted to 0.75. Compared to a weight of 0.9 for the shift-reduce parser, this is a rather strong influence, which also reflects the differences in the reliability of these two information sources. With a weight of 0.9, the integration of the label predictions is considerably weaker, which is consistent with their lower degree of accuracy.", |
| "cite_spans": [ |
| { |
| "start": 185, |
| "end": 188, |
| "text": "[3]", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Guiding WCDG by Predictions of MSTParser", |
| "sec_num": "4" |
| }, |
| { |
| "text": "#pragma predict MST 'mst.pl -v", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Guiding WCDG by Predictions of MSTParser", |
| "sec_num": "4" |
| }, |
| { |
| "text": "The most common general measures for the quality of dependency trees are structural accuracy that points out the percentage of words correctly attached to their regent, and labeled accuracy which is the ratio of the correctly attached words which also have the correct label. Still, it is difficult to directly compare the results reported for different parsers, as the evaluation results are influenced by the data used during the experiment, the domain of the data, and different annotation guidelines. Moreover, the particular kind of POS information might be relevant, which either can be obtained from the manual annotations or be provided by a real tagger. Even such a condition as the treatment of punctuation has not yet become a standard. Following the evaluation procedure in the CoNLL-X shared task [2], we will not include punctuation into the performance measures, as was done in previous WCDG experiments [4] . The source of POS tagging information will need to be specified in each individual case.", |
| "cite_spans": [ |
| { |
| "start": 919, |
| "end": 922, |
| "text": "[4]", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "All the evaluations were performed on a thousand sentences (18, 602 -19, 601 ) from the NEGRA treebank, the same data set that was previously used in the performance evaluations of WCDG, e.g. in [3] . The NEGRA treebank is a collection of newspaper articles; in the original, it stores phrase structure annotations. These have been automatically translated into dependency trees and then manually corrected to bring them in accord with the annotation guidelines of WCDG. The major difference consists in a different treatment of non-projectivity, where WCDG only allows non-projectivity in the attachment of verbal arguments, relative clauses and coordinations, i.e., the cases where it helps to decrease ambiguity. Furthermore, corrections were applied when the annotations of NEGRA itself turned out to be inconsistent (usually in connection with co-ordinated or elliptical structures, adverbs and subclauses).", |
| "cite_spans": [ |
| { |
| "start": 59, |
| "end": 76, |
| "text": "(18, 602 -19, 601", |
| "ref_id": null |
| }, |
| { |
| "start": 195, |
| "end": 198, |
| "text": "[3]", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "Unfortunately, these manually corrected data were only available for a small part (3, 000 sentences) of the NEGRA corpus, which is not sufficient for training MSTParser on WCDG-conforming tree structures. Previous evaluations of the MSTParser have used much larger training sets. E.g., during the CoNLL-X shared task 39,216 sentences from the TIGER Treebank [1] were used.", |
| "cite_spans": [ |
| { |
| "start": 358, |
| "end": 361, |
| "text": "[1]", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "Therefore, we used 20, 000 sentences from the online archive of www.heise.de as an alternative training set. They have been manually annotated according to the WCDG guidelines (called heiseticker in the following). The texts in this corpus are all from roughly the same domain as NEGRA, and although very many technical terms and proper nouns are used, the sentences have only a slightly longer mean length compared to the NEGRA corpus.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "Using POS tags from the gold annotations, MSTParser achieves 90.5% structural and 87.5% labeled accuracy on the aforementioned NEGRA test set (Table 1 ). Even a model trained on the inconsistent NEGRA data excluding the test set reaches stateof-the-art 90.5 and 87.3% for structural and labeled accuracy respectively, despite the obvious mismatch between training and test data. This performance is almost the same as the 90.4%/87.3% reported on the TIGER data during the CoNLL-X 2006 shared task. Another MSTParser experiment has been conducted with a real POS tagger [6] . Generally, in ambiguous cases, it can predict several POS tags per word sorted by the predicted POS category probabilities in descending order. But only the first of these predictions was used for the experiments with MSTParser as, contrary to WCDG, it does not provide an interface to use POS tag variants by default. As is to be expected, if a real POS tagger is used, the accuracy is The combined experiments in which MSTParser was used as a predictor for WCDG have achieved higher accuracy than each of the combined components in isolation: the structural accuracy rises to 92.0% while the labeled accuracy also gets over the 90%-boundary (WCDG + MST experiment in Table 2 (C)) . Finally, the MSTParser predictor was evaluated in combination with the other predictors available for WCDG. The results of the experiments are shown in Table 2 (C). Every combination of MSTParser with other predictors (first four experiments) improves the accuracy. The increase is highest (0.4%) for the combination with the supertagger. This confirms earlier experiments with WCDG, in which the supertagger also contributed the largest gains.", |
| "cite_spans": [ |
| { |
| "start": 569, |
| "end": 572, |
| "text": "[6]", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 142, |
| "end": 150, |
| "text": "(Table 1", |
| "ref_id": null |
| }, |
| { |
| "start": 1244, |
| "end": 1256, |
| "text": "Table 2 (C))", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 1411, |
| "end": 1418, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "The experimental results again confirm that WCDG is a reliable platform for information integration. Although the use of multiple predictors does not lead to an accumulation of the individual improvements, the performance of predictor combinations is always higher that using them separately. A maximum performance of 92.9%/91.4% is reached with all the six available predictors active. For comparison, the same experiment with POS tags from the gold standard has achieved even better results of 93.3%/92.0% (Table 1) .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 508, |
| "end": 517, |
| "text": "(Table 1)", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "Unfortunately, the PP attacher brings accuracy reductions when it is working parallel to the shift-reduce predictor (experiment PP + CP + SR in Table 2 (C)) . This effect has already been observed in the experiments that combined the two alone (experiment PP + SR in Table 2 (A)). When MST was combined with the PP attacher (experiment PP in Table 2 (C)), the increase of the performance was also below a tenth of a percent. The possible reasons why the use of an additional information source does not improve the performance in this case may be the disadvantages of the PP attacher compared to a full parser.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 144, |
| "end": 156, |
| "text": "Table 2 (C))", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 267, |
| "end": 274, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 342, |
| "end": 349, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": null |
| }, |
| { |
| "text": "A very useful property of WCDG is that it not only can be used as a parser, but also as a diagnostic tool for dependency structures. Applied to a given dependency tree, any constraint violation reported by the constraint solver indicates an inconsistency between the structure and the WCDG constraint grammar.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Among the most frequent hard constraint violations found in the MSTParser results are double subjects, double objects and direct objects in passive, projectivity violations, conjunctions without a clause as well as subordinate clause without conjunction.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "These findings are in line with the analysis of [11] . For example, the errors in distinguishing noun complements of the verb may be due to the fact that MSTParser is more precise for longer dependency arcs and has no access to the parsing history.", |
| "cite_spans": [ |
| { |
| "start": 48, |
| "end": 52, |
| "text": "[11]", |
| "ref_id": "BIBREF10" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "In absolute figures, MSTParser commits 1509 attachment errors of which 902 are corrected by WCDG. On the other hand, WCDG adds another 542 errors of its own, so that the final result still contains 1149 errors.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "For most labels, accuracy of the predictor combination is higher than in each of the parsers alone. A particularly large gain has been observed for coordinated elements (KON and CJ), subordinate (NEB) ( (Table 3) . Here, the measures of structural precision, the ratio of the number of correct attachment of a given label to the number of all the predictions for that label made by the parser, and label recall, the ratio between the number of correct labeling decisions and desired labeling are used. In this respect, the increase in the structural precision of the PP attachment seems worth mentioning. MSTParser attaches 79.3% of PPs correctly on the used test set. Although MSTParser does not use any special PP-attachment resolution mechanisms, it is comparable with the result of WCDG combined with the PP attacher that achieves 78.7% structural precision for PP edges.", |
| "cite_spans": [ |
| { |
| "start": 201, |
| "end": 202, |
| "text": "(", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 203, |
| "end": 212, |
| "text": "(Table 3)", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "If MSTParser is trained on NEGRA excluding the test set -the rest of NEGRA lacking consistence mentioned above -it performs even better, attaching 80.4% of PP-s correctly. Thus, MSTParser as a statistical parser trained on a full corpus becomes a strong competitor for a PP attacher that has been trained on restricted four-tuples input.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "As for the errors in the MSTParser output that are most often corrected in the hybrid experiment, this happens for both the structural precision and label recall of most verb complements, such as direct and indirect objects, or clausal objects as well as for subordinate and relative clauses for such subordinate clauses.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "It even comes to one case in which the synergy took place in spite of the incorrect predictions. Although MSTParser has predicted possessive modifiers more seldom than WCDG alone (the label recall of MSTParser for possessive modification was over 5% below that of WCDG) its structural precision and label recall in the combined experiment are by around 6% greater than WCDG result.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Cases in which WCDG performs worse with the predictor than its predictor alone can hardly be found. Still, one may observe many cases in which the predictor has a negative influence on the performance of WCDG, such as for different kinds of objects (indirect objects, object clauses and infinitive objects) and parenthetic matrix clauses. For all, the result of MSTParser was below that of the baseline WCDG with only the POS tagger active. Same can be said about the labeled accuracy for split verb prefixes and nominal time expressions. This worsening effect can be attributed to the lower values of the WCDG constraints for the corresponding labels and edges than for the MSTParser predictor. Thus, the search could not find a decision scoring better than that when the MSTParser prediction has been followed.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Around 15% of the sentences in the test set are not projective. The accuracy of MSTParser on the projective sentences of the test set is higher than that on the non-projective sentences by more than 3 percent (Table 4) Table 4 : Structural accuracy, (%), for different parsing runs for non-projective vs. projective sentences.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 209, |
| "end": 218, |
| "text": "(Table 4)", |
| "ref_id": null |
| }, |
| { |
| "start": 219, |
| "end": 226, |
| "text": "Table 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "MSTParser generally tends to find many more nonprojective edges than the data has, while the precision remains restricted. The number of non-projective edges was determined by counting how often an edge crosses some other edge. Thus, if a non-projective edge crossed three other edges the number of non-projective edges equals three. For MSTParser experiments with a real POS tagger (MSTParser POS-experiment in Table 5), the non-projective edge recall, the ratio of the non-projective edges found in the experiment to the corresponding value in the gold standard, is at 23% and non-projective edge precision, the ratio of the correctly found non-projective edges to all non-projective edges found, is also only 36% (second column in Table 5 ). Precision and recall of non-projective sentences is a less rigid measure. If at least one edge-crossing is correctly identified in a non-projective sentence, it is added to the correctly identified non-projective sentences, even if the identified edge-crossing is not the one annotated in the gold standard and the ratios are calculated respectively (right column of Table 5 ). Under these relaxed conditions, MSTParser correctly identifies slightly less than a half of the non-projective sentences and over a third of non-projective edges. Table 5 : Recall ( r, %) and precision ( p, %) of the non-projective edges and sentences for different parsing runs.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 734, |
| "end": 741, |
| "text": "Table 5", |
| "ref_id": null |
| }, |
| { |
| "start": 1112, |
| "end": 1119, |
| "text": "Table 5", |
| "ref_id": null |
| }, |
| { |
| "start": 1286, |
| "end": 1293, |
| "text": "Table 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "In fact, WCDG under the same conditions (WCDG POS-experiment in Table 5 ) has a non-projective sentence precision of 63% and a non-projective edge precision of 53%. Still, WCDG misses a considerable amount of non-projectivities. More importantly, as the present shift-reduce predictor has not been designed for non-projective parsing, its inclusion reduces the non-projective sentence and edge precision of WCDG -to 55% and 47% respectively -WCDG (POS+SR) in Table 5 .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 64, |
| "end": 71, |
| "text": "Table 5", |
| "ref_id": null |
| }, |
| { |
| "start": 459, |
| "end": 466, |
| "text": "Table 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The expected benefits for the non-projective sentences have not yet been observed to the full extent. The precision of the combined system to find non-projective sentences and edges remained limited by the performance that WCDG was able to achieve alone (WCDG (POS+MST) in Table 5 ). While MSTParser in many cases predicts non-projectivity correctly WCDG is seldom capable of accepting this external evidence. On the contrary, WCDG often accepts an incorrect projective solution of the predictor instead of relying on its own cues. In its interaction with external predictors WCDG should typically decide about the alternatives.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 273, |
| "end": 280, |
| "text": "Table 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Error Analysis", |
| "sec_num": "5" |
| }, |
| { |
| "text": "So far, approaches to hybrid parsing have been mainly based on the idea of a post-hoc selection which can be carried out for either complete parses, or individual constituents and dependency edges, respectively. The selection component itself can be based on heuristics, like a majority vote. Alternatively, a second-level classifier is trained to decide which component to trust under which conditions and therefore the approach is often referred to as classifier stacking.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "In a series of experiments, J. C. Henderson and E. Brill [7] combined three constituency-based parsers by a selection mechanism for either complete parsing results (parser switching) or individual constituents (parse hybridization), using both a heuristic decision rule as well as a na\u00efve Bayesian classifier in each case. Among the heuristics considered were majority votes for constituents and a similarity-based measure for complete trees. Tests on Penn Treebank data showed a clear improvement of the combined results over the best individual parser. Constituent selection outperformed the complete parse selection scheme, and Bayesian selection was slightly superior.", |
| "cite_spans": [ |
| { |
| "start": 57, |
| "end": 60, |
| "text": "[7]", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Instead of coupling different data-driven parsers which all provide comparable analyses for complete sentences, C. G. Rupp etal. [15] combined differently elaborated structural descriptions (namely chunks and phrase structure trees) obtained by data-driven components with the output of a HPSG-parser. Driven by the requirements of the particular application (speechto-speech translation), the focus was not only on parse selection, but also on combining incomplete results. However, no quantitative evaluation of the results has been published.", |
| "cite_spans": [ |
| { |
| "start": 129, |
| "end": 133, |
| "text": "[15]", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "D. Zeman and Z.\u017dabokrtsk\u00fd [18] applied the selection idea to dependency structures and extended it by using more context features. They combined seven different parsers for Czech, among them also a system based on a manually compiled rule set. Some of the individual parsers had a fairly poor performance, but even a simple voting scheme on single edges contributed a significant improvement while the best results have been obtained for a combination that did not include the worst components. Alternatively the authors experimented with a trained selection component which not only had access to the alternative local parsing results, but also to their structural context. Neither a memory-based approach nor a model based on decision trees did result in further gains.", |
| "cite_spans": [ |
| { |
| "start": 26, |
| "end": 30, |
| "text": "[18]", |
| "ref_id": "BIBREF17" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "In two separate experiments, K. Sagae and A. Lavie [16] combined a number of dependency and constituent parsers, respectively. They created a new weighted search space from the results of the individual component parsers using different weighting schemes for the candidates. They then reparsed this search space and found a consistent improvement for the dependency structures, but not for the constituentbased ones.", |
| "cite_spans": [ |
| { |
| "start": 51, |
| "end": 55, |
| "text": "[16]", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "While all these approaches attempt to integrate the available evidence at parse time, J. Nivre and R. Mc-Donald [14] pursued an alternative architecture, where integration is achieved already at training time. They combined the two state-of-the-art data-driven dependency parsers, MaltParser [13] and MSTParser [10] , by integrating the features of each of the classifiers into the parsing model of the other one at training time. Since the two parsers are based on quite different model types (namely a history-based vs. a structurebased one), they exhibit a remarkable complementary behavior [11] . Accordingly, significant mutual benefits have been observed. Note, however, that one of the major benefits of MaltParser, its incremental left-toright processing, is sacrificed under such a combination scheme.", |
| "cite_spans": [ |
| { |
| "start": 112, |
| "end": 116, |
| "text": "[14]", |
| "ref_id": "BIBREF13" |
| }, |
| { |
| "start": 292, |
| "end": 296, |
| "text": "[13]", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 311, |
| "end": 315, |
| "text": "[10]", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 594, |
| "end": 598, |
| "text": "[11]", |
| "ref_id": "BIBREF10" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Integrating MSTParser as a full predictor with WCDG is beneficial for both of them. Since these systems take their decisions based on completely different sources of knowledge, combining both helps avoid many mistakes each of them commits in isolation. Altogether, with a real POS tagger, an accuracy level of 92.9%/91.3% has been reached (the last row in Table 2 (C)), which is higher than what any of the parsers achieved alone. With POS tagging from the gold standard, the accuracy has been at 93.3%/92.0% (the last row in Table 1). To the knowledge of the authors, these accuracy values are also better than any previous parsing results on the NEGRA test set.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 356, |
| "end": 363, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "WCDG can profit from the combination not only with ancillary predictors for specific parsing subtasks, but also with another full parser. This result was achieved even though the second parser is very similar to WCDG with respect to both the richness and the accuracy of its target structures. The probable reason lies in the considerable difference in the error profiles of both systems as regards specific linguistic phenomena. WCDG was also used as a diagnostic tool for the errors of MSTParser.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "Possibly, a higher degree of synergy could be achieved if a stronger coupling of the components is established by also using the scores of MSTParser as additional information for WCDG, reflecting the intuitive notion of preference or plausibility of the predictions. This could be done for the optimal parse tree alone as well as for the complete hypothesis space. Alternatively, the output of MSTParser can be used as a initial state for the transformation procedure of WCDG. Vice versa, MSTParser could be enriched with additional features based on the output of WCDG, similar to the feature-based integration of data-driven parsers evaluated by J. Nivre and R. Mc-Donald [14] .", |
| "cite_spans": [ |
| { |
| "start": 674, |
| "end": 678, |
| "text": "[14]", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "At the moment, the integration constraints treats all attachment and label predictions as being uniformly reliable. To individualize them with respect to their type or origin could not only make the system sensitive to qualitative differences between predictions (for instance, with respect to different labels). It would also allow the parser to accommodate multiple oracle predictors and to carefully distinguish between typical configurations in which one prediction should be preferred over an alternative one. MaltParser [13] is certainly a good candidate for carrying out such experiments.", |
| "cite_spans": [ |
| { |
| "start": 526, |
| "end": 530, |
| "text": "[13]", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "MSTParser is freely available from http:// sourceforge.net/projects/mstparser", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "The TIGER treebank", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Brants", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Dipper", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Hansen", |
| "suffix": "" |
| }, |
| { |
| "first": "W", |
| "middle": [], |
| "last": "Lezius", |
| "suffix": "" |
| }, |
| { |
| "first": "G", |
| "middle": [], |
| "last": "Smith", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the Workshop on Treebanks and Linguistic Theories", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Brants, S. Dipper, S. Hansen, W. Lezius, and G. Smith. The TIGER treebank. In Proceedings of the Workshop on Treebanks and Linguistic Theories, Sozopol, 2002.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "CoNLL-X shared task on multilingual dependency parsing", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Buchholz", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Marsi", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proc. CoNLL", |
| "volume": "", |
| "issue": "", |
| "pages": "149--164", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Buchholz and E. Marsi. CoNLL-X shared task on multilin- gual dependency parsing. In Proc. CoNLL, pages 149 -164, 2006.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Hybrid Methods of Natural Language Analysis. Doctoral thesis", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "A" |
| ], |
| "last": "Foth", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. A. Foth. Hybrid Methods of Natural Language Analysis. Doctoral thesis, Hamburg University, 2006.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Hybrid parsing: using probabilistic models as predictors for a symbolic parser", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "A" |
| ], |
| "last": "Foth", |
| "suffix": "" |
| }, |
| { |
| "first": "W", |
| "middle": [], |
| "last": "Menzel", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proc. 21st Int. Conference on Computational Linguistics and ACL-44", |
| "volume": "", |
| "issue": "", |
| "pages": "321--328", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. A. Foth and W. Menzel. Hybrid parsing: using probabilistic models as predictors for a symbolic parser. In Proc. 21st Int. Conference on Computational Linguistics and ACL-44, pages 321-328, 2006.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "A Transformationbased Parsing Technique with Anytime Properties", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "A" |
| ], |
| "last": "Foth", |
| "suffix": "" |
| }, |
| { |
| "first": "W", |
| "middle": [], |
| "last": "Menzel", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Schr\u00f6der", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "4th Int. Workshop on Parsing Technologies, IWPT-2000", |
| "volume": "", |
| "issue": "", |
| "pages": "89--100", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. A. Foth, W. Menzel, and I. Schr\u00f6der. A Transformation- based Parsing Technique with Anytime Properties. In 4th Int. Workshop on Parsing Technologies, IWPT-2000, pages 89 - 100, 2000.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Tagging for robust parsers", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Hagenstr\u00f6m", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [ |
| "A" |
| ], |
| "last": "Foth", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proc. 2nd. Int. Workshop, Robust Methods in Analysis of Natural Language Data", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Hagenstr\u00f6m and K. A. Foth. Tagging for robust parsers. In Proc. 2nd. Int. Workshop, Robust Methods in Analysis of Natural Language Data, ROMAND-2002, 2002.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Exploiting diversity in natural language processing: Combining parsers", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [ |
| "C" |
| ], |
| "last": "Henderson", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Brill", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "Proc. 4th Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "187--194", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. C. Henderson and E. Brill. Exploiting diversity in natural language processing: Combining parsers. In Proc. 4th Confer- ence on Empirical Methods in Natural Language Processing, pages 187-194, 1999.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Structural disambiguation with constraint propagation", |
| "authors": [ |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Maruyama", |
| "suffix": "" |
| } |
| ], |
| "year": 1990, |
| "venue": "Proc. 28th Annual Meeting of the ACL (ACL-90)", |
| "volume": "", |
| "issue": "", |
| "pages": "31--38", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "H. Maruyama. Structural disambiguation with constraint prop- agation. In Proc. 28th Annual Meeting of the ACL (ACL-90), pages 31-38, 1990.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Discriminative Learning and Spanning Tree Algorithms for Dependency Parsing", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Mcdonald", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. McDonald. Discriminative Learning and Spanning Tree Algorithms for Dependency Parsing. PhD dissertation, Uni- versity of Pennsylvania, 2006.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Multilingual dependency analysis with a two-stage discriminative parser", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Mcdonald", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Lerman", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Pereira", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proc. CoNLL", |
| "volume": "", |
| "issue": "", |
| "pages": "216--220", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. McDonald, K. Lerman, and F. Pereira. Multilingual depen- dency analysis with a two-stage discriminative parser. In Proc. CoNLL, pages 216 -220, 2006.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Characterizing the errors of datadriven dependency parsing models", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Mcdonald", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Proc. EMNLP-CoNLL", |
| "volume": "", |
| "issue": "", |
| "pages": "122--131", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. McDonald and J. Nivre. Characterizing the errors of data- driven dependency parsing models. In Proc. EMNLP-CoNLL, pages 122 -131, 2007.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Nonprojective 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": "Hajic", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proc. HLT/EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "523--530", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. McDonald, F. Pereira, K. Ribarov, and J. Hajic. Non- projective dependency parsing using spanning tree algorithms. In Proc. HLT/EMNLP, pages 523 -530, 2005.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Labelled pseudo-projective dependency parsing with support vector machines", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Hall", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Nilsson", |
| "suffix": "" |
| }, |
| { |
| "first": "G", |
| "middle": [], |
| "last": "Eryi\u01e7it", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Marinov", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proc. CoNLL-2006", |
| "volume": "", |
| "issue": "", |
| "pages": "221--225", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Nivre, J. Hall, J. Nilsson, G. Eryi\u01e7it, and S. Marinov. La- belled pseudo-projective dependency parsing with support vec- tor machines. In Proc. CoNLL-2006, pages 221-225, 2006.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "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": "Proc. ACL-08: HLT", |
| "volume": "", |
| "issue": "", |
| "pages": "950--958", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Nivre and R. McDonald. Integrating graph-based and transition-based dependency parsers. In Proc. ACL-08: HLT, pages 950-958, 2008.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Combining analyses from various parsers", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [ |
| "G" |
| ], |
| "last": "Rupp", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Spilker", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Klarner", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [ |
| "L" |
| ], |
| "last": "Worm", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "Verbmobil: Foundations of Speech-to-Speech Translation", |
| "volume": "", |
| "issue": "", |
| "pages": "311--320", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. G. Rupp, J. Spilker, M. Klarner, and K. L. Worm. Com- bining analyses from various parsers. In W. Wahlster, edi- tor, Verbmobil: Foundations of Speech-to-Speech Translation, pages 311-320. Springer-Verlag, Berlin etc., 2000.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Parser combinations by reparsing", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Sagae", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Lavie", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proc. HLT/NAACL", |
| "volume": "", |
| "issue": "", |
| "pages": "129--132", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. Sagae and A. Lavie. Parser combinations by reparsing. In Proc. HLT/NAACL, pages 129-132, 2006.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Natural Language Parsing with Graded Constraints", |
| "authors": [ |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Schr\u00f6der", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "I. Schr\u00f6der. Natural Language Parsing with Graded Con- straints. PhD thesis, Dept. of Computer Science, University of Hamburg, Germany, 2002.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Improving parsing accuracy by combining diverse dependency parsers", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Zeman", |
| "suffix": "" |
| }, |
| { |
| "first": "Z", |
| "middle": [], |
| "last": "\u017dabokrtsk\u00fd", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proc. 9th International Workshop on Parsing Technologies (IWPT-2005)", |
| "volume": "", |
| "issue": "", |
| "pages": "171--178", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. Zeman and Z.\u017dabokrtsk\u00fd. Improving parsing accuracy by combining diverse dependency parsers. In Proc. 9th Inter- national Workshop on Parsing Technologies (IWPT-2005), pages 171-178, Vancouver, B.C., 2005.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "text": "3 -' cat {X!SYN} : 'MST:regent' : stat : W : predict(X@id, MST, gov) = X^to; {X|SYN} : 'MST:null' : stat : W : predict(X@id, MST, gov) = 0; {X:SYN} : 'MST:label' : stat : W : predict(X@id, MST, lab) = X.label;", |
| "uris": null, |
| "type_str": "figure", |
| "num": null |
| }, |
| "TABREF1": { |
| "text": "Structural", |
| "type_str": "table", |
| "num": null, |
| "content": "<table><tr><td>/labeled accuracy results with a</td></tr><tr><td>real POS tagger. (A) WCDG experiments with dif-</td></tr><tr><td>ferent statistical enhancements (B) MSTParser exper-</td></tr><tr><td>iment with a real POS tagger. (C) Combined experi-</td></tr><tr><td>ments of WCDG and MSTParser with other statistical</td></tr><tr><td>enhancements of WCDG. CP -chunker, ST -su-</td></tr><tr><td>pertagger, PP -prepositional attacher, SR -shift-</td></tr><tr><td>reduce oracle parser, 5P -POS + CP + PP + ST +</td></tr><tr><td>SR.</td></tr></table>", |
| "html": null |
| }, |
| "TABREF3": { |
| "text": "Per", |
| "type_str": "table", |
| "num": null, |
| "content": "<table><tr><td>label structural precision ( p, %) and</td></tr><tr><td>label recal ( r, %) in comparison for the experiments</td></tr><tr><td>with the real POS tagger (1) WCDG, (2) MSTParser,</td></tr><tr><td>(3) WCDG combined with MSTParser</td></tr><tr><td>and relative (REL) clauses, indirect accusative objects</td></tr><tr><td>(OBJA), genitive modifiers (GMOD) and apposition</td></tr><tr><td>(APP),</td></tr></table>", |
| "html": null |
| }, |
| "TABREF4": { |
| "text": ", although these values cannot be compared directly as the mean length of non-projective sentences is longer (25.0 vs. 15.3 words).", |
| "type_str": "table", |
| "num": null, |
| "content": "<table><tr><td>Experiment</td><td colspan=\"2\">Non-proj. Proj.</td></tr><tr><td>MSTParser (POS)</td><td>88.2</td><td>91.7</td></tr><tr><td>WCDG (POS)</td><td>87.2</td><td>90.2</td></tr><tr><td>WCDG (POS + SR)</td><td>88.7</td><td>92.2</td></tr><tr><td>WCDG (POS + MST)</td><td>91.3</td><td>93.6</td></tr></table>", |
| "html": null |
| } |
| } |
| } |
| } |