| { |
| "paper_id": "U09-1009", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T03:08:11.623579Z" |
| }, |
| "title": "Faster parsing and supertagging model estimation", |
| "authors": [ |
| { |
| "first": "Jonathan", |
| "middle": [ |
| "K" |
| ], |
| "last": "Kummerfeld", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "James", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Jessika", |
| "middle": [], |
| "last": "Roesner", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of Sydney University of Texas at Austin NSW 2006", |
| "location": { |
| "settlement": "Austin", |
| "region": "TX", |
| "country": "Australia, USA" |
| } |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Parsers are often the bottleneck for data acquisition, processing text too slowly to be widely applied. One way to improve the efficiency of parsers is to construct more confident statistical models. More training data would enable the use of more sophisticated features and also provide more evidence for current features, but gold standard annotated data is limited and expensive to produce. We demonstrate faster methods for training a supertagger using hundreds of millions of automatically annotated words, constructing statistical models that further constrain the number of derivations the parser must consider. By introducing new features and using an automatically annotated corpus we are able to double parsing speed on Wikipedia and the Wall Street Journal, and gain accuracy slightly when parsing Section 00 of the Wall Street Journal.", |
| "pdf_parse": { |
| "paper_id": "U09-1009", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Parsers are often the bottleneck for data acquisition, processing text too slowly to be widely applied. One way to improve the efficiency of parsers is to construct more confident statistical models. More training data would enable the use of more sophisticated features and also provide more evidence for current features, but gold standard annotated data is limited and expensive to produce. We demonstrate faster methods for training a supertagger using hundreds of millions of automatically annotated words, constructing statistical models that further constrain the number of derivations the parser must consider. By introducing new features and using an automatically annotated corpus we are able to double parsing speed on Wikipedia and the Wall Street Journal, and gain accuracy slightly when parsing Section 00 of the Wall Street Journal.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Many systems in NLP for tasks such as Question-Answering rely on large volumes of data. Parsers are a useful means of extracting extra information about text, providing the syntactic structure of sentences. However, when they are the bottleneck in the data acquisition phase of a system simple solutions are to use less data, or not use a parser at all. If we can improve the speed of parsers this will be unnecessary.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "For lexicalised grammars such as Combinatory Categorial Grammar (CCG) (Steedman, 2000) the step in which words are labelled with lexical categories has great influence on parsing speed and accuracy. In these formalisms, the labels chosen constrain the set of possible derivations so much that the process of choosing them, supertagging, is described as 'almost parsing' (Joshi and Bangalore, 1994) . If the supertagger is more accurate it can further constrain the set of possible derivations by supplying fewer categories, leaving the parser with less to do.", |
| "cite_spans": [ |
| { |
| "start": 70, |
| "end": 86, |
| "text": "(Steedman, 2000)", |
| "ref_id": "BIBREF32" |
| }, |
| { |
| "start": 370, |
| "end": 397, |
| "text": "(Joshi and Bangalore, 1994)", |
| "ref_id": "BIBREF23" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "One means of improving the supertagger's statistical model of language is to provide more evidence, in this case, more annotated text. However, creating a significant amount of extra gold standard annotated text is not feasible. An alternative approach is 'semi-supervised training', in which a small set of annotated data and a much larger set of unannotated data is used. Training a system directly on its own output, 'self-training', is not normally effective , but recently McClosky et al. (2006) demonstrated that parser output can be made useful for retraining by the application of a reranker.", |
| "cite_spans": [ |
| { |
| "start": 478, |
| "end": 500, |
| "text": "McClosky et al. (2006)", |
| "ref_id": "BIBREF26" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "To enable the use of more training data we have parallelised the C&C parser's supertagger training process and implemented perceptron-based algorithms for parameter estimation. In the process of this work we also modified the C&C parser's use of a particular CCG rule, based on observations of its behaviour. Our unlabeled training data was part of the English section of Wikipedia, consisting of 47 million sentences. We used the C&C parser to label the data with supertags, producing training data that could then be used to retrain its supertagger. The reasoning behind the use of this data is that the supertagger will provide categories that the parser is most likely to use in a spanning analysis.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Models trained on WSJ and Wikipedia data parsed sentences up to twice as fast, without decreasing accuracy. And the perceptron-based algorithms enabled the use of much larger data sets, without loss in parsing speed or accuracy.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Parsing is the process of analysing a set of tokens and extracting syntactic structure. In the context of natural language we are faced with several challenges, including ambiguous sentences that are context sensitive and a grammar that is unknown and constantly changing.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Background", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Two main classes of grammars have been used to try to understand and model natural language, phrasal and lexicalised grammars. Phrasal grammars generally define a small set of labels that capture the syntactic behaviour of a word in a sentence, such as noun and adverb, and then use a large set of rules to construct a phrase structure tree in which the leaves are the words and the internal nodes are applications of rules. Lexicalised grammars provide a much larger set of categories for lexical items and only a few rules. The categories provide a more detailed description of a word's purpose in a sentence, while the rules are simple descriptions of how pairs of categories can combine to form the parse tree.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Background", |
| "sec_num": "2" |
| }, |
| { |
| "text": "We use the lexicalised grammar formalism Combinatory Categorial Grammar (CCG) (Steedman, 2000) . In CCG, there are two types of categories, atomic, which are one of S, N, NP and PP, and complex, which contain two parts, an argument and a result, denoted by either 'Result / Argument' or 'Result \\ Argument', where the slashes indicate whether the Argument is expected to lie to the right or left respectively, and the result and argument are categories themselves. To form a derivation for English sentences these categories are combined according to seven rules, forward and backward application, forward and backward composition, backward crossed composition, type raising and coordination. Figure 1 presents two example CCG derivations. In both examples, the line directly beneath the words contains the category that was assigned to each word, NP for 'I', (S\\NP)/NP for 'ate' and so on. The lines that follow show a series of rule applications, building up the parse tree.", |
| "cite_spans": [ |
| { |
| "start": 78, |
| "end": 94, |
| "text": "(Steedman, 2000)", |
| "ref_id": "BIBREF32" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 693, |
| "end": 701, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Background", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The lines with a > sign at the end indicate forward application, which occurs when a complex category is of the form 'Result / Argument' and its argument is the same as the category to its right. The lines with a < sign at the end are instances of backward application, which works in the same way, but in the opposite direction.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Background", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Note in particular the change of tag for 'with' in the two examples and its affect on the subsequent rule applications. The decision made by the supertagger effectively decides which analysis will be found, or if both are provided the parser must consider more possible derivations. The CCG parser and associated supertagger we have used is the C&C parser Clark and Curran, 2007b) . The supertagger applies categories to words using the forward backward algorithm, and the parser forms a derivation by applying the Cocke-Younger-Kasami (CKY) chart parsing algorithm (Younger, 1967; Kasami, 1967) and dynamic programming.", |
| "cite_spans": [ |
| { |
| "start": 356, |
| "end": 380, |
| "text": "Clark and Curran, 2007b)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 566, |
| "end": 581, |
| "text": "(Younger, 1967;", |
| "ref_id": "BIBREF34" |
| }, |
| { |
| "start": 582, |
| "end": 595, |
| "text": "Kasami, 1967)", |
| "ref_id": "BIBREF24" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Background", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Supertags were first proposed by Joshi and Bangalore (1994) for Lexicalized Tree-Adjoining Grammar (LTAG). Like POS tags, supertags are assigned to each word in the sentence prior to parsing, but supertags contain much more detailed syntactic information. This leads to tag sets that are up to two orders of magnitude larger. The first supertaggers gave each word a single tag based only on the POS tags in the local context and had an accuracy below 90% (Chandrasekar and Bangalore, 1997b) . While this is not accurate enough for incorporation into a wide-coverage parser, it was enough to be useful in an information retrieval system (Chandrasekar and Bangalore, 1997a) , attaining an F-score of 92% for filtering out irrelevant documents. Accuracy was improved by the use of multitaggers (Chen et al., 1999) , but as more tags are supplied the parsing efficiency decreases (Chen et al., 2002) , demon-strating that lexical ambiguity is an important factor in parsing complexity (Sarkar et al., 2000) .", |
| "cite_spans": [ |
| { |
| "start": 33, |
| "end": 59, |
| "text": "Joshi and Bangalore (1994)", |
| "ref_id": "BIBREF23" |
| }, |
| { |
| "start": 455, |
| "end": 490, |
| "text": "(Chandrasekar and Bangalore, 1997b)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 636, |
| "end": 671, |
| "text": "(Chandrasekar and Bangalore, 1997a)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 791, |
| "end": 810, |
| "text": "(Chen et al., 1999)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 876, |
| "end": 895, |
| "text": "(Chen et al., 2002)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 981, |
| "end": 1002, |
| "text": "(Sarkar et al., 2000)", |
| "ref_id": "BIBREF28" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Supertagging", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Supertagging was first applied to CCG by Clark (2002) . Rather than defining a fixed number of tags to be produced per word, the CCG supertagger includes all tags with probabilities within some factor, \u03b2, of the most probable tag. Also, during parsing the \u03b2 value starts high, and if a derivation is not found it is progressively decreased. This provides similar speed benefits to a single tagger, but without a loss in coverage. Previous attempts to expand the feature set used by the CCG supertagger were unsuccessful because of data sparseness issues (Cooper, 2007) .", |
| "cite_spans": [ |
| { |
| "start": 41, |
| "end": 53, |
| "text": "Clark (2002)", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 554, |
| "end": 568, |
| "text": "(Cooper, 2007)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Supertagging", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Perhaps the closest previous work was by (Sarkar, 2007) , who incorporated a supertagger with a full LTAG parser, and demonstrated improved efficiency through the use of training data annotated by the parser. This led to higher performance than entirely supervised training methods.", |
| "cite_spans": [ |
| { |
| "start": 41, |
| "end": 55, |
| "text": "(Sarkar, 2007)", |
| "ref_id": "BIBREF30" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Supertagging", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "One of the first demonstrations of semisupervised training in NLP was the use of a 'co-training' method by Yarowsky (1995) , who achieved 96% accuracy on a word sense disambiguation task. A similar method was subsequently applied to statistical parsing by Sarkar (2001) , leading to a 9% increase in F-score for an LTAG parser.", |
| "cite_spans": [ |
| { |
| "start": 107, |
| "end": 122, |
| "text": "Yarowsky (1995)", |
| "ref_id": "BIBREF33" |
| }, |
| { |
| "start": 256, |
| "end": 269, |
| "text": "Sarkar (2001)", |
| "ref_id": "BIBREF29" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Semi-supervised training", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "Co-training relies upon two independent views of the data to construct models that can inform each other. Another method of semi-supervised training is to apply a re-ranker to the output of a system to generate new training data. By applying a re-ranker to the output of a parser McClosky et al. (2006) were able to improve on the best result for Wall Street Journal parsing by 0.8%, but with no significant change in efficiency.", |
| "cite_spans": [ |
| { |
| "start": 280, |
| "end": 302, |
| "text": "McClosky et al. (2006)", |
| "ref_id": "BIBREF26" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Semi-supervised training", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "The perceptron is an online classification method that was proposed by Rosenblatt (1958) . However, the algorithm only converges for linearly separable datasets. Recently Freund and Schapire (1999) developed the Averaged Perceptron (AP), which stores all weight vectors during training and combines them in a weighted majority vote to create the final weight vector. This variation led to performance competitive with modern techniques, such as Support Vector Machines, on a handwritten digit classification task.", |
| "cite_spans": [ |
| { |
| "start": 71, |
| "end": 88, |
| "text": "Rosenblatt (1958)", |
| "ref_id": "BIBREF27" |
| }, |
| { |
| "start": 171, |
| "end": 197, |
| "text": "Freund and Schapire (1999)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Perceptron Algorithms", |
| "sec_num": "2.3" |
| }, |
| { |
| "text": "Another recent variation is the Margin Infused Relaxed Algorithm (MIRA) (Crammer and Singer, 2003) , which adjusts the weight vector only enough to cause the current instance to be correctly classified with a specified margin. This method generally has a lower relative error than the standard perceptron but makes more updates. Collins (2002) showed that applying these methods to tasks in NLP produced better performance than maximum entropy models. Specifically, using a voted perceptron and trigram features for training, a Viterbi based system achieved an F-score of 93.53% for NP Chunking and an error rate of 2.93% for POS tagging, compared to 92.65% and 3.28% respectively for a similar system trained with a maximum entropy model. Collins and Roark (2004) applied these methods to parsing, using an incremental beam search parser. The parser performed similarly to another based on a generative model, with an F-score of 87.8% for data with gold standard POS tags, and 86.6% for tags generated by a tagger. Similar methods were recently applied to the C&C parser (Clark and Curran, 2007a) , leading to similar performance to a log-linear model, but with much lower system requirements. used the averaged perceptron algorithm to train an HPSG supertagger, with similar improvements to training time as described here.", |
| "cite_spans": [ |
| { |
| "start": 72, |
| "end": 98, |
| "text": "(Crammer and Singer, 2003)", |
| "ref_id": "BIBREF16" |
| }, |
| { |
| "start": 329, |
| "end": 343, |
| "text": "Collins (2002)", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 740, |
| "end": 764, |
| "text": "Collins and Roark (2004)", |
| "ref_id": "BIBREF13" |
| }, |
| { |
| "start": 1072, |
| "end": 1097, |
| "text": "(Clark and Curran, 2007a)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Perceptron Algorithms", |
| "sec_num": "2.3" |
| }, |
| { |
| "text": "The parser uses the CKY algorithm to construct the 'chart', an efficient representation of all possible analyses for a sentence. The most probable derivation is found using the Viterbi algorithm and probabilities are calculated based on a conditional log-linear model.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Implementation", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The supertagger uses a maximum entropy based model to assign a set of possible lexical categories to each word in the sentence. The main aspect of the tagging process relevant to this work is the role of beta levels.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Implementation", |
| "sec_num": "3" |
| }, |
| { |
| "text": "If the supertagger assigns only one category to each word its accuracy is too low to be effectively incorporated into a parser. By multitagging we can make the supertagger more accurate, but at the cost of speed as the parser must consider larger sets of possible categories. The beta levels define cutoffs for multitagging based on the probabilities from the maximum entropy model. If the parser is unable to form a spanning analysis the beta level is decreased and the supertagger is rerun to retrieve larger sets of supertags.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Implementation", |
| "sec_num": "3" |
| }, |
| { |
| "text": "These levels have a large influence on parsing accuracy and speed. Accuracy varies because the set of possible derivations increases as more tags are supplied, leading the parser to choose different derivations at different levels. Speed varies as the time spent attempting to form a parse increases as more tags are supplied. Also, for sentences that are not parsed at the first level each attempt at another level requires more time.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Implementation", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The initial feature set used for tagging included unigrams of POS tags and words and bigrams of POS tags, all in a five word window surrounding the word being tagged. The weights for these features were estimated on a single CPU using either Generalised Iterative Scaling (GIS) (Darroch and Ratcliff, 1972) or the Broyden-Fletcher-Goldfarb-Shanno method (BFGS) (Broyden, 1970; Fletcher, 1970; Goldfarb, 1970; Shanno, 1970 ). Here we consider two other algorithms, a parallelised form of the process, and a range of extra features.", |
| "cite_spans": [ |
| { |
| "start": 278, |
| "end": 306, |
| "text": "(Darroch and Ratcliff, 1972)", |
| "ref_id": "BIBREF17" |
| }, |
| { |
| "start": 361, |
| "end": 376, |
| "text": "(Broyden, 1970;", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 377, |
| "end": 392, |
| "text": "Fletcher, 1970;", |
| "ref_id": "BIBREF19" |
| }, |
| { |
| "start": 393, |
| "end": 408, |
| "text": "Goldfarb, 1970;", |
| "ref_id": "BIBREF21" |
| }, |
| { |
| "start": 409, |
| "end": 421, |
| "text": "Shanno, 1970", |
| "ref_id": "BIBREF31" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Implementation", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The standard multi-class perceptron maintains a matrix of weights, containing a row for each attribute and a column for each class. When all attributes are binary valued the class is assigned by ignoring all rows for attributes that do not occur and determining which column has the greatest sum. During training the class that corresponds to the column with the greatest sum is compared to the true class and if it is correct no change is made. If the predicted class is incorrect the weights are updated by subtracting 1.0 from all weights for the predicted class and adding 1.0 to all weights for the true class. The averaged perceptron follows the same algorithm, but returns the average of the weight matrix over the course of training, rather than its final state.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Averaged Perceptron", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "MIRA also follows the standard multi-class perceptron algorithm, but applies a different update method. The intention is to make the smallest change to the weights such that the correct class is produced by a given margin. We use a slight variation of the update function defined by Crammer and Singer (2003) , expressed as follows:", |
| "cite_spans": [ |
| { |
| "start": 283, |
| "end": 308, |
| "text": "Crammer and Singer (2003)", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Margin Infused Relaxed Algorithm", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "min max, margin+ f pw\u2212tw |features|(1+ 1 n above )", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Margin Infused Relaxed Algorithm", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "where margin is the absolute difference that will be created between the true classification and those that previously ranked above it, the sum is over all features, p w and t w are the weights associated with the feature f for the predicted and true classes respectively, |f eatures| is the number of active features, and n above is the number of categories that had higher sums than the correct category. The constant max is introduced to prevent a single event causing extremely large changes to the model.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Margin Infused Relaxed Algorithm", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "We have also applied shuffling between iterations of the algorithm to prevents the model from overfitting to the particular order of training instances.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Margin Infused Relaxed Algorithm", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "To enable the use of more data and features we increased the amount of accessible RAM and processing power by parallelising the supertagger training using the Message Passing Interface (MPI) and the MapReduce library MRMPI 1 .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Parallelisation", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "The first stages of supertagging are feature extraction and aggregation. Extraction was parallelised by dividing the data amongst a set of computers and having each one extract the features in its set. Aggregation is necessary to determine overall frequencies for features, and to reorder the features to maximise efficiency. For the aggregation process we used the MRMPI library.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Parallelisation", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "For weight estimation using maximum entropy methods the main calculations are sums of weights across all training instances. The parallel versions of GIS and BFGS differ in three main ways. First, the data is divided between a set of computers. Second, sums are calculated across all computers to determine necessary changes to weights. And third, after each update the changes are distributed to all nodes.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Parallelisation", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "The perceptron methods adjust the weights based on each training instance individually and so the parallelisation above was not applicable. The training instances are still distributed across a cluster of computers, but only one computer is working at a time, adjusting the weights based on each of its instances and then passing the weights to the next node. This saves time by removing the cost of loading the training instances from disk when there are too many to fit in RAM.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Parallelisation", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "In the process of debugging the parser, we investigated the number of times particular pairs of categories were combined. We were surprised to discover that a very large number of backward compositions were being performed in the chart, even though backward composition rarely occurred in the parser output (or in the gold standard itself).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Blocking Excess Backward Composition", |
| "sec_num": "3.4" |
| }, |
| { |
| "text": "Backward composition is normally used for non-constituent coordination between pairs of type-raised categories, but the parser was also using it for combining non-type-raised and typeraised categories. This is an instance where the Eisner (1996) normal form constraints have failed to stop non-normal form derivations, because Eisner's constraints were not designed to work with type-raising. We added a constraint that only allows backward composition to occur if both children are type-raised.", |
| "cite_spans": [ |
| { |
| "start": 232, |
| "end": 245, |
| "text": "Eisner (1996)", |
| "ref_id": "BIBREF18" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Blocking Excess Backward Composition", |
| "sec_num": "3.4" |
| }, |
| { |
| "text": "Evaluation has been performed using Section 00 of CCGBank, a translation of the Penn Treebank to CCG (Hockenmaier, 2003) . Sections 02-21 were used as training data and are simply referred to as WSJ in the following section. The raw Wikipedia data was tokenised using Punkt (Kiss and Strunk, 2006) and the NLTK tokeniser (Bird et al., 2009) , and parsed using the C&C parser and models version 1.02 2 . The WSJ sentences had an average length of 23.5 words and a variance of 122.0 while the Wikipedia sentences had an average length of 21.7 words and a variance of 151.0.", |
| "cite_spans": [ |
| { |
| "start": 101, |
| "end": 120, |
| "text": "(Hockenmaier, 2003)", |
| "ref_id": "BIBREF22" |
| }, |
| { |
| "start": 274, |
| "end": 297, |
| "text": "(Kiss and Strunk, 2006)", |
| "ref_id": "BIBREF25" |
| }, |
| { |
| "start": 321, |
| "end": 340, |
| "text": "(Bird et al., 2009)", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Data", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "2 http://svn.ask.it.usyd.edu.au/trac/candc", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Data", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "For a given beta level the number of categories assigned to each word by the supertagger will vary greatly between models. This presents a problem because as described in Section 3 the number of categories assigned has a large influence on parsing speed and accuracy. To fairly compare the models presented here we have tuned all five beta levels on the test set to ensure all models assign the same number of categories per word on average. When testing on Wikipedia text we have used the same beta levels as for WSJ and included the ambiguity this leads to in the tables of results.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "F-scores are calculated based on comparisons with gold standard labelled dependencies for Section 00. Category accuracies (Cat.) are for the first beta level only, and are the percentage of words in the sentence that were assigned a tagset that includes the correct category. Category accuracy for Wikipedia was measured over three hundred Wikipedia sentences that were hand-annotated with supertags and grammatical relations, containing 6696 word-category pairs (Clark et al., 2009) .", |
| "cite_spans": [ |
| { |
| "start": 463, |
| "end": 483, |
| "text": "(Clark et al., 2009)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "Statistical significance testing was used to determine if changes in performance were meaningful. The test applied reports whether two sets of responses are drawn from the same distribution, where scores of 0.05 and lower are considered significant (Chinchor, 1992) .", |
| "cite_spans": [ |
| { |
| "start": 249, |
| "end": 265, |
| "text": "(Chinchor, 1992)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "To measure parsing speed we used ten thousand unseen WSJ sentences from 1988 and ten thousand unseen Wikipedia sentences. The WSJ set was chosen as it is similar to the CCGBank WSJ evaluation set, but much larger and so the per sentence speed should be more accurate. The Wikipedia set is used as the two domains contain different writing styles, meaning the use of Wikipedia based self-training data should lead to particular improvement in speed on that form of text. The datasets only contain sentences of at least six and at most two hundred and fifty tokens.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "As the amount of training data scales up, so too does the time it takes to train models. To demonstrate the benefits of perceptron based techniques we measured the amount of time models take to train. These measurements were performed using a 3GHz Intel Core 2 Duo CPU, and 4Gb of RAM. Table 1 : The effect of introducing extra constraints on the use of backward composition on speed and accuracy. The supertagging model was constructed using BFGS and sections 02-21 of the WSJ.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 286, |
| "end": 293, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "In this section we present four sets of experiments. First, the change in backward composition handling is evaluated, comparing the speed and accuracy of the standard model before and after the change. Second we consider the benefits of larger data sets, training models using the same algorithm but a range of training sets. Next we compare the new estimation algorithms described above with GIS and BFGS. Finally we explore the impact of introducing extra features.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The influence of the change to backward composition handling is shown in Table 1 . A clear speed increase of more than 45% is achieved, and a statistically significant increase in F-score occurred.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 73, |
| "end": 80, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Modified Backward Composition", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "To investigate the effectiveness of semisupervised training we constructed a series of models using the GIS algorithm and a selection of datasets. In Table 5 .2 we can see that the use of Wikipedia data labelled by the parser causes a clear improvement in parsing speed on Wikipedia. We also observe that when the WSJ accounts for less than 10% of the training set, parsing speed on the WSJ decreases.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 150, |
| "end": 157, |
| "text": "Table 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Training Data Type and Volume", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "It is interesting to compare the baseline model and the models trained on Wikipedia. The model trained on forty thousand Wikipedia sentences only, approximately the same amount of text as in section 02-21 of the WSJ, has much lower supertagging accuracy, but much higher parsing speed. This makes sense as the text the model is trained on is not the true derivation, but rather the derivation that the parser chose. This means that the supertagging model is trained to produce the set of tags that the parser is most likely to com- Table 2 : The effect of self-training on supertagging accuracy and parsing F-score. Numbers in the 'Data' column indicate how much Wikipedia text was used.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 532, |
| "end": 539, |
| "text": "Table 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Training Data Type and Volume", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "bine into its final analysis. As a result, the set assigned at the first beta level is less accurate, but more likely to form a spanning analysis.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Training Data Type and Volume", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "The decreases in F-score when training on only Wikipedia are statistically significant, while the changes when training on a combination of the WSJ and Wikipedia are not. Interestingly, the models trained on only Wikipedia are also slower when parsing the WSJ than the baseline, and the models trained on a mixture of data are progressively slower as more Wikipedia data is used.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Training Data Type and Volume", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "Using larger datasets for training can take a prohibitive amount of time for the GIS and BFGS algorithms. However, any time benefits provided by other algorithms need to be balanced with their influence on accuracy. Table 3 shows the results of experiments investigating this trade-off.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 216, |
| "end": 223, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Algorithm Comparison", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "It is clear from the training speed column that the perceptron based algorithms, AP and MIRA, train approximately two orders of magnitude faster than GIS and BFGS.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm Comparison", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "It is also interesting to note the change in the average number of categories assigned for Wikipedia sentences. As expected, the ambiguity level is decreasing as more Wikipedia text is used, but at the same time the tagging accuracy remains fairly constant or improves slightly. This indicates that the automatically labelled data is useful in adapting the supertagger to the Wikipedia domain.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm Comparison", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "Importantly, the changes in F-score between ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm Comparison", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "The final set of experiments involved the exploration of extra features. Using the MIRA training method we were able to quickly construct a large set of models, as shown in Table 4 . The standard features used by the supertagger are unigrams of words and unigrams and bigrams of POS tags in a five word window. We considered expansions of this set to include bigrams of words and trigrams of POS tags, and all of the features extended to consider a seven word window, which are indicated by the word 'far'.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 173, |
| "end": 180, |
| "text": "Table 4", |
| "ref_id": "TABREF5" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Feature Extension", |
| "sec_num": "5.4" |
| }, |
| { |
| "text": "The results in the first section of the table, training on the WSJ only, are unsurprising. With such a small amount of data these features are too rare to have a significant impact, and it is likely that they lead the model to over-fit. The best result in this section does not produce a statistically significant improvement over the baseline. However, in the second and third sections of the table the differences between the best models and the baseline are statistically significant. Also, the model with the best result in the table produces a statistically significant improvement in recall over the models in Table 3 constructed using the same data.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 616, |
| "end": 623, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Feature Extension", |
| "sec_num": "5.4" |
| }, |
| { |
| "text": "A wide range of directions exist for extension of this work. The most direct extensions would be to perform experiments using more of Wikipedia, particularly for the feature exploration. As well as the simple extensions of current features that are described here, extra data may enable the use of more complex features. For example, a feature to encode the presence of one attribute and the absence of another.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Future Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Now that we have a range of different algorithms for model estimation it may be possible to perform co-training style experiments. Even a simpler method, such as using the set of weights found by one algorithm as the initial weights for another, may lead to improved results. Additionally, the current system takes the weights produced by the perceptron algorithms, normalises them and treats them as a probability distribution in the same way as the weights from GIS and BFGS are treated. It would be interesting to explore the possibility of multi-tagging with a perceptron instead. The perceptron based algorithms can also be adjusted at run time, making it feasible to learn continuously.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Future Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Here we have presented results for training on automatically labelled Wikipedia text, but we could perform the same experiments on effectively any corpus. It would be interesting to explore the ability of the system to adapt to new domains through semi-supervised training.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Future Work", |
| "sec_num": "6" |
| }, |
| { |
| "text": "This work has shown that semi-supervised supertagger training can boost parsing speed considerably and demonstrated that perceptron based algorithms can effectively estimate supertagger model parameters. To achieve this we adjusted the C&C parser's handling of backward composition, parallelised the supertagger training process, and implemented the MIRA and AP algorithms for feature weight estimation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "The change in backward composition handling provided a 50% speed boost and a further 30% was gained for parsing Wikipedia by using parsed Wikipedia as extra training data. As more Wikipedia data was used speed on the WSJ fell below the baseline, indicating that domain adaptation was occurring.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "Models trained using perceptron based algorithms performed just as well, but were trained two orders of magnitude faster. Extending the feature set led to small but statistically significant improvements, including two models that achieve an F-score of 84.17% for labelled dependencies on Section 00 of the WSJ.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "Initially the system produced an F-score of 83.22% on Section 00 of the WSJ, could parse the WSJ and Wikipedia at 31.7 and 30.8 sentences per second respectively, and took two hours to train the supertagging model, using only forty thousand sentences for training. Our changes enabled the construction of a model in under four minutes that achieves an F-score of 83.79 on WSJ, and speeds of 62.8 and 69.7 sentences per second for WSJ and Wikipedia respectively, ie. 2.0 times faster for WSJ, and 2.3 times faster for Wikipedia.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "8 Acknowledgements", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "7" |
| }, |
| { |
| "text": "http://www.sandia.gov/ sjplimp/mapreduce.html", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "We thank the reviewers for helpful feedback. This work was supported by the Capital Markets Cooperative Research Centre Limited and a University of Sydney Merit Scholarship and aspects of the work were completed at the Summer Research Workshop on Machine Learning for Language Engineering at the Center for Language and Speech Processing, Johns Hopkins University.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "acknowledgement", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Natural Language Processing with Python", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bird", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Loper", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Bird, E. Loper, and E. Klein. 2009. Natural Lan- guage Processing with Python. O'Reilly Media Inc.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "The convergence of a class of double-rank minimization algorithms", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [ |
| "G" |
| ], |
| "last": "Broyden", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Journal of the Institute of Mathematics and Its Applications", |
| "volume": "6", |
| "issue": "", |
| "pages": "76--90", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. G. Broyden. 1970. The convergence of a class of double-rank minimization algorithms. Journal of the Institute of Mathematics and Its Applications, 6:76-90.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Gleaning information from the web: Using syntax to filter out irrelevant information", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Chandrasekar", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bangalore", |
| "suffix": "" |
| } |
| ], |
| "year": 1997, |
| "venue": "World Wide Web", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Chandrasekar and S. Bangalore. 1997a. Gleaning information from the web: Using syntax to filter out irrelevant information. In World Wide Web, Stan- ford University.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Using supertags in document filtering: The effect of increased context on information retrieval effectiveness", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Chandrasekar", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bangalore", |
| "suffix": "" |
| } |
| ], |
| "year": 1997, |
| "venue": "Proceedings of RANLP '97", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Chandrasekar and S. Bangalore. 1997b. Using supertags in document filtering: The effect of in- creased context on information retrieval effective- ness. In Proceedings of RANLP '97.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "New models for improving supertag disambiguation", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bangalore", |
| "suffix": "" |
| }, |
| { |
| "first": "V", |
| "middle": [ |
| "K" |
| ], |
| "last": "Shanker", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "Proceedings of the 9th Meeting of EACL", |
| "volume": "", |
| "issue": "", |
| "pages": "188--195", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Chen, S. Bangalore, and V. K. Shanker. 1999. New models for improving supertag disambiguation. In Proceedings of the 9th Meeting of EACL, pages 188-195, Bergen, Norway, June.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Reranking an n-gram supertagger", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bangalore", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Collins", |
| "suffix": "" |
| }, |
| { |
| "first": "O", |
| "middle": [], |
| "last": "Rambow", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the TAG+ Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "259--268", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Chen, S. Bangalore, M. Collins, and O. Rambow. 2002. Reranking an n-gram supertagger. In Pro- ceedings of the TAG+ Workshop, pages 259-268, Venice, Italy, May.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Statistical significance of muc-6 results", |
| "authors": [ |
| { |
| "first": "N", |
| "middle": [], |
| "last": "Chinchor", |
| "suffix": "" |
| } |
| ], |
| "year": 1992, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "N. Chinchor. 1992. Statistical significance of muc-6 results.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Log-linear models for wide-coverage ccg parsing", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of the Conf. on EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "97--104", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark and J. R. Curran. 2003. Log-linear models for wide-coverage ccg parsing. In Proceedings of the Conf. on EMNLP, pages 97-104. ACL.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Perceptron training for a wide-coverage lexicalized-grammar parser", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "ACL 2007 Workshop on Deep Linguistic Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "9--16", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark and J. R. Curran. 2007a. Perceptron training for a wide-coverage lexicalized-grammar parser. In ACL 2007 Workshop on Deep Linguistic Process- ing, pages 9-16, Prague, Czech Republic, June. ACL.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Wide-coverage eficient statistical parsing with ccg and log-linear models", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Comp. Ling", |
| "volume": "33", |
| "issue": "4", |
| "pages": "493--552", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark and J. R. Curran. 2007b. Wide-coverage eficient statistical parsing with ccg and log-linear models. Comp. Ling., 33(4):493-552.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Boostrapping pos-taggers using unlabelled data", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Curran", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Osborne", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of CoNLL", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark, J. Curran, and M. Osborne. 2003. Boostrap- ping pos-taggers using unlabelled data. In Proceed- ings of CoNLL.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Largescale syntactic processing: Parsing the web", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Copestake", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Herbelot", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Haggerty", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Ahn", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Van Wyk", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Roesner", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "K" |
| ], |
| "last": "Kummerfeld", |
| "suffix": "" |
| }, |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Dawborn", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "JHU CLSP Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark, A. Copestake, J. R. Curran, Y. Zhang, A. Her- belot, J. Haggerty, B. Ahn, C. Van Wyk, J. Roesner, J. K. Kummerfeld, and T. Dawborn. 2009. Large- scale syntactic processing: Parsing the web. Tech- nical report, JHU CLSP Workshop.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Supertagging for combinatory categorial grammar", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of TAG+6", |
| "volume": "", |
| "issue": "", |
| "pages": "19--24", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Clark. 2002. Supertagging for combinatory cate- gorial grammar. In Proceedings of TAG+6, pages 19-24, Venice, Italy, May.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Incremental parsing with the perceptron algorithm", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Collins", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Roark", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Proceedings of the 42nd Meeting of the ACL", |
| "volume": "", |
| "issue": "", |
| "pages": "111--118", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. Collins and B. Roark. 2004. Incremental pars- ing with the perceptron algorithm. In Proceedings of the 42nd Meeting of the ACL, pages 111-118, Barcelona, Spain.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Discriminative training methods for hidden markov models: Theory and experiments with perceptron algorithms", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Collins", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the Conf. on EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "1--8", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. Collins. 2002. Discriminative training methods for hidden markov models: Theory and experiments with perceptron algorithms. In Proceedings of the Conf. on EMNLP, pages 1-8. ACL, July.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Improved statistical models for supertagging", |
| "authors": [ |
| { |
| "first": "N", |
| "middle": [], |
| "last": "Cooper", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "N. Cooper. 2007. Improved statistical models for su- pertagging.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Ultraconservative online algorithms for multiclass problems", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Crammer", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Singer", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Journal of Machine Learning Research", |
| "volume": "3", |
| "issue": "", |
| "pages": "951--991", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. Crammer and Y. Singer. 2003. Ultraconservative online algorithms for multiclass problems. Journal of Machine Learning Research, 3:951-991.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Generalized iterative scaling for log-linear models", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [ |
| "N" |
| ], |
| "last": "Darroch", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Ratcliff", |
| "suffix": "" |
| } |
| ], |
| "year": 1972, |
| "venue": "The Annals of Mathematical Statistics", |
| "volume": "43", |
| "issue": "5", |
| "pages": "1470--1480", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. N. Darroch and D. Ratcliff. 1972. Generalized it- erative scaling for log-linear models. The Annals of Mathematical Statistics, 43(5):1470-1480.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Efficient normal-form parsing for Combinatory Categorial Grammar", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Eisner", |
| "suffix": "" |
| } |
| ], |
| "year": 1996, |
| "venue": "Proceedings of the 34th Meeting of the ACL", |
| "volume": "", |
| "issue": "", |
| "pages": "79--86", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Eisner. 1996. Efficient normal-form parsing for Combinatory Categorial Grammar. In Proceedings of the 34th Meeting of the ACL, pages 79-86, Santa Cruz, CA.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "A new approach to variable metric algorithms", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Fletcher", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Computer Journal", |
| "volume": "13", |
| "issue": "", |
| "pages": "317--322", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Fletcher. 1970. A new approach to variable metric algorithms. Computer Journal, 13:317-322,.", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Large margin classification using the perceptron algorithm. Machine Learning", |
| "authors": [ |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Freund", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [ |
| "E" |
| ], |
| "last": "Schapire", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "", |
| "volume": "37", |
| "issue": "", |
| "pages": "277--296", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Y. Freund and R. E. Schapire. 1999. Large margin classification using the perceptron algorithm. Ma- chine Learning, 37(3):277-296.", |
| "links": null |
| }, |
| "BIBREF21": { |
| "ref_id": "b21", |
| "title": "A family of variable metric updates derived by variational means", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Goldfarb", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Mathematics of Computation", |
| "volume": "24", |
| "issue": "", |
| "pages": "23--26", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. Goldfarb. 1970. A family of variable metric up- dates derived by variational means. Mathematics of Computation, 24:23-26.", |
| "links": null |
| }, |
| "BIBREF22": { |
| "ref_id": "b22", |
| "title": "Data and Models for Statistical Parsing with Combinatory Categorial Grammar", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Hockenmaier", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Hockenmaier. 2003. Data and Models for Statis- tical Parsing with Combinatory Categorial Gram- mar. Ph.D. thesis, University of Edinburgh.", |
| "links": null |
| }, |
| "BIBREF23": { |
| "ref_id": "b23", |
| "title": "Disambiguation of super parts of speech (or supertags): almost parsing", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [ |
| "K" |
| ], |
| "last": "Joshi", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Bangalore", |
| "suffix": "" |
| } |
| ], |
| "year": 1994, |
| "venue": "Proceedings of the 15th Conf. on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "154--160", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. K. Joshi and S. Bangalore. 1994. Disambiguation of super parts of speech (or supertags): almost pars- ing. In Proceedings of the 15th Conf. on Compu- tational Linguistics, pages 154-160, Kyoto, Japan, August.", |
| "links": null |
| }, |
| "BIBREF24": { |
| "ref_id": "b24", |
| "title": "An efficient recognition and syntax analysis algorithm for context-free languages", |
| "authors": [ |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Kasami", |
| "suffix": "" |
| } |
| ], |
| "year": 1967, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "T. Kasami. 1967. An efficient recognition and syn- tax analysis algorithm for context-free languages. Technical Report AFCRL-65-758, Air Force Cam- bridge Research Laboratory, Bedford, MA.", |
| "links": null |
| }, |
| "BIBREF25": { |
| "ref_id": "b25", |
| "title": "Unsupervised multilingual sentence boundary detection", |
| "authors": [ |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Kiss", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Strunk", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Comp. Ling", |
| "volume": "32", |
| "issue": "4", |
| "pages": "485--525", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "T. Kiss and J. Strunk. 2006. Unsupervised multi- lingual sentence boundary detection. Comp. Ling., 32(4):485-525.", |
| "links": null |
| }, |
| "BIBREF26": { |
| "ref_id": "b26", |
| "title": "Effective self-training for parsing", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Mcclosky", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Charniak", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Johnson", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the NAACL Conf", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. McClosky, E. Charniak, and M. Johnson. 2006. Effective self-training for parsing. In Proceedings of the NAACL Conf.", |
| "links": null |
| }, |
| "BIBREF27": { |
| "ref_id": "b27", |
| "title": "The perceptron -a probabilistic model for information -storage and organization in the brain", |
| "authors": [ |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Rosenblatt", |
| "suffix": "" |
| } |
| ], |
| "year": 1958, |
| "venue": "Psychological Review", |
| "volume": "65", |
| "issue": "6", |
| "pages": "386--408", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "F. Rosenblatt. 1958. The perceptron -a probabilistic model for information -storage and organization in the brain. Psychological Review, 65(6):386-408.", |
| "links": null |
| }, |
| "BIBREF28": { |
| "ref_id": "b28", |
| "title": "Some experiments on indicators of parsing complexity for lexicalized grammars", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Sarkar", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Xia", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [ |
| "K" |
| ], |
| "last": "Joshi", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "Proceedings of COLING", |
| "volume": "", |
| "issue": "", |
| "pages": "37--42", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Sarkar, F. Xia, and A. K. Joshi. 2000. Some ex- periments on indicators of parsing complexity for lexicalized grammars. In Proceedings of COLING, pages 37-42.", |
| "links": null |
| }, |
| "BIBREF29": { |
| "ref_id": "b29", |
| "title": "Applying co-training methods to statistical parsing", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Sarkar", |
| "suffix": "" |
| } |
| ], |
| "year": 2001, |
| "venue": "Proceedings of the NAACL conference", |
| "volume": "", |
| "issue": "", |
| "pages": "1--8", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Sarkar. 2001. Applying co-training methods to sta- tistical parsing. In Proceedings of the NAACL con- ference, pages 1-8, Pittsburgh, Pennsylvania. ACL.", |
| "links": null |
| }, |
| "BIBREF30": { |
| "ref_id": "b30", |
| "title": "Combining Supertagging and Lexicalized Tree-Adjoining Grammar Parsing", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Sarkar", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Sarkar, 2007. Combining Supertagging and Lex- icalized Tree-Adjoining Grammar Parsing. MIT Press.", |
| "links": null |
| }, |
| "BIBREF31": { |
| "ref_id": "b31", |
| "title": "Conditioning of quasi-newton methods for function minimization", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [ |
| "F" |
| ], |
| "last": "Shanno", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Mathematics of Computation", |
| "volume": "24", |
| "issue": "", |
| "pages": "647--656", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. F. Shanno. 1970. Conditioning of quasi-newton methods for function minimization. Mathematics of Computation, 24:647-656.", |
| "links": null |
| }, |
| "BIBREF32": { |
| "ref_id": "b32", |
| "title": "The Syntactic Process", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Steedman", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. Steedman. 2000. The Syntactic Process. MIT Press, Cambridge, MA, USA.", |
| "links": null |
| }, |
| "BIBREF33": { |
| "ref_id": "b33", |
| "title": "Unsupervised word sense disambiguation rivaling supervised methods", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Yarowsky", |
| "suffix": "" |
| } |
| ], |
| "year": 1995, |
| "venue": "Proceedings of the 33rd Meeting of the ACL", |
| "volume": "", |
| "issue": "", |
| "pages": "189--196", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. Yarowsky. 1995. Unsupervised word sense disam- biguation rivaling supervised methods. In Proceed- ings of the 33rd Meeting of the ACL, pages 189- 196. ACL.", |
| "links": null |
| }, |
| "BIBREF34": { |
| "ref_id": "b34", |
| "title": "Recognition and parsing of context-free languages in time n 3", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Younger", |
| "suffix": "" |
| } |
| ], |
| "year": 1967, |
| "venue": "Information and Control", |
| "volume": "10", |
| "issue": "2", |
| "pages": "189--208", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. Younger. 1967. Recognition and parsing of context-free languages in time n 3 . Information and Control, 10(2):189-208.", |
| "links": null |
| }, |
| "BIBREF35": { |
| "ref_id": "b35", |
| "title": "Hpsg supertagging: A sequence labeling view", |
| "authors": [ |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| }, |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Matsuzaki", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Tsujii", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the 11th IWPT", |
| "volume": "", |
| "issue": "", |
| "pages": "210--213", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Y. Zhang, T. Matsuzaki, and J. Tsujii. 2009. Hpsg supertagging: A sequence labeling view. In Pro- ceedings of the 11th IWPT, pages 210-213, Paris, France, October. ACL.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "text": "\\NP )/NP NP ((S \\NP )\\(S \\NP ))/NP NP Two CCG derivations with PP ambiguity.", |
| "type_str": "figure", |
| "uris": null, |
| "num": null |
| }, |
| "TABREF0": { |
| "content": "<table><tr><td colspan=\"2\">Accuracy (%)</td><td>Speed</td></tr><tr><td>WSJ</td><td/><td>WSJ Wiki</td></tr><tr><td>Parser Cat.</td><td>F</td><td>(sent / sec)</td></tr><tr><td>C&C 1</td><td/><td/></tr></table>", |
| "type_str": "table", |
| "html": null, |
| "num": null, |
| "text": ".02 96.07 83.22 31.7 30.8 Modified 96.07 83.41 47.8 45.8" |
| }, |
| "TABREF3": { |
| "content": "<table><tr><td>: Comparison of model estimation algorithms.</td></tr><tr><td>The models missing times were trained on a different</td></tr><tr><td>computer with more RAM and are provided for accu-</td></tr><tr><td>racy comparison.</td></tr><tr><td>models in each section are not statistically sig-</td></tr><tr><td>nificant. This indicates that the perceptron based</td></tr><tr><td>algorithms are just as effective as GIS and BFGS.</td></tr></table>", |
| "type_str": "table", |
| "html": null, |
| "num": null, |
| "text": "" |
| }, |
| "TABREF5": { |
| "content": "<table/>", |
| "type_str": "table", |
| "html": null, |
| "num": null, |
| "text": "Subtractive analysis of various feature sets. In each section the category accuracy values that are lower than those for 'All' have been underlined as removing these features decreases accuracy. The bold values are the best in each column for each section. The baseline model uses the default feature set for the C&C parser." |
| } |
| } |
| } |
| } |