<?xml version="1.0"?><!DOCTYPE article SYSTEM "/project/take/software/searchbench_offline_processing/paperxml_generator/aclextractor/src/python/../resource/dtd/paperxml.dtd"><article><header><firstpageheader><page local="1" global="446"/><title>USYD: WSD and Lexical Substitution using the Web1T corpus</title><pubinfo>Proceedings of the 4th International Workshop on Semantic Evaluations (SemEval-2007),pages 446-453, Prague, June 2007. ©2007 Association for Computational Linguistics</pubinfo><author surname="Hawker" givenname="Tobias"><org  name="University of Sydney" country="Australia" city="Sydney"/></author></firstpageheader><frontmatter><p><b>USYD: WSD and Lexical Substitution using the WeblT Corpus</b></p><p><b>Tobias Hawker</b></p><p>School of Information Technologies University of Sydney NSW 2006, Australia toby@it.usyd.edu.au</p></frontmatter><abstract>This paper describes the University of Syd­ney's WSD and Lexical Substitution sys­tems for SemEval-2007. These systems are principally based on evaluating the substi-tutability of potential synonyms in the con­text of the target word. Substitutability is measured using Pointwise Mutual Informa­tion as obtained from the WeblT corpus. The WSD systems are supervised, while the Lexical Substitution system is unsuper-vised. The lexical sample sub-task also used syntactic category information given from a CCG-based parse to assist in verb disam­biguation, while both WSD tasks also make use of more traditional features. These related systems participated in the Coarse-Grained English All-Words WSD task (task 7), the Lexical Substitution Task (task 10) and the English Lexical Sample WSD sub-task (task l7). </abstract></header><body><section title="l Introduction"><p>This paper describes closely related systems that were applied to three tasks of the SemEval-2007 workshop. The unifying characteristic of these sys­tems is that they use the same measure of 'substi-tutability' for a given word and a surrounding con­text to perform the tasks. This measure is based on frequencies involving the word and the context from n-gram counts derived from one trillion words of Web text.</p><p>These systems participated in the English Coarse­Grained All Words and English Lexical Sample Word Sense Disambiguation (WSD) tasks, and in the Lexical Substitution task.</p><p>The Lexical Substitution system relies entirely on the substitutability measure to rank potential syn­onyms, and only uses manual sense inventories to preferentially select words which have been iden­tified by lexicographers as being synonyms for the original word in some contexts. It does not make use of any machine learning, and is thus unsupervised.</p><p>The WSD systems are supervised, using a Sup­port Vector Machine (SVM) to learn from sense-tagged examples of ambiguous words and predict the class of the test instances. Classifiers for both systems use a small number of additional feature types beyond those derived from the n-gram counts, including Bag of Words (BOW) and local context features. A single separate model was trained for each ambiguous lemma.</p><p>For verbs in the lexical sample, the classifier also uses the syntactic category assigned to the target verb by a parser as additional information for dis­ambiguation.</p><p>The remainder of this paper is organised as fol­lows. Relevant background for the ideas employed is briefly discussed, as is the nature of the WeblT corpus. Descriptions of the particular systems used for each of the tasks are described in ascending or­der of task number. Details of particular sources of information and the methods used to capture them are introduced along with the task they are used in. A presentation of results and discussion follows the description of each system, and overall conclusions are presented at the end of the paper.<page local="2" global="447"/></p></section><section number="2" title="Background"><p>Algorithms making use of unannotated data for WSD and similar tasks are not particularly new. One strategy which resembles the substitutability technique employed by our systems is relatives-in-context (Martinez et al., 2006), an unsupervised ap­proach which uses a web search engine to find the 'best' match for the current context, according to heuristic criteria. Monosemous relatives (Leacock et al., 1998) increase the amount of training data for supervised learners by recruiting the contexts of synonyms in unannotated data, with the caveat that those synonyms are not themselves ambiguous. As substantial gold-standard data sets for lexical sub­stitution have not previously been available, the Se-mEval data presents a promising opportunity to ex­amine the behaviour of our method.</p><p>Gomez (2001) argues that the syntactic roles of ambiguous verbs in particular are interlinked with their semantic class, and thus knowledge about the syntactic function of a verb can provide information to help identify its sense. Syntactic relationships have been used to resolve ambiguity (Lin, 1997) and a reduction of ambiguity has been shown to assist in the acquisition of verb subcategorization frames (Korhonen and Preiss, 2003).</p></section><section number="3" title="The Substitutability Measure"><p>As an example to demonstrate the basic mechanism underlying the measure of substitutability, consider the sentence fragments around the verb <i>ruled </i>in: the court ruled it was clear that</p><doubt alpha="100.0" length="3" tooSmall="False" monospace="0.0">and</doubt><p>a republic ruled by the people Two possible synonyms, pertaining to different senses for the verb <i>ruled, </i>are <i>found </i>and <i>governed. </i>It is clear that in a sufficiently large quantity of text, the fragments:</p><p>the court found it was clear that</p><p>a republic governed by the people would be substantially more common than the se­quences:</p><p>the court governed it was clear that</p><doubt alpha="100.0" length="2" tooSmall="False" monospace="0.0">or</doubt><p>a republic found by the people and thus <i>found </i>should be considered more substi-tutable in the context of the first fragment, and <i>gov­erned </i>in the second.</p><p>Church et al. (1994) show that Pointwise Mutual Information (PMI) is a suitable measure to capture the degree to which a given word may substitute for another; we have adopted PMI as the quantified measure of substitutability in the systems used for these tasks.</p><p>While previous WSD systems have made use of counts obtained from Internet search engines, for example Martinez et al. (2006), to our knowledge WSD using <i>corpus </i>data at the scale of the Web1T resource has not previously been published. Our WSD systems combine our novel PMI-Web1T fea­tures and CCG category features with additional fea­tures described in the literature. While the Web1T corpus consists only of counts, and thus is some­what similar to the direct use of counts from Internet search engines, it is also of a known size and thus it is straightforward to determine useful quantities such as PMI, and to exhaustively catalog potential matches as for the lexical substitution task.</p><subsection number="3.1" title="WeblT Corpus"><p>The Web1T corpus (Brants and Franz, 2006) is a dataset consisting of the counts for n-grams obtained from 1 trillion (10<footnote anchor="12"/> ) words of English Web text, subject to a minimum occurrence threshold (200 in­stances for unigrams, 40 for others). The Web1T corpus contains counts for 1, 2, 3, 4 and 5-grams, and is large enough to present serious processing dif­ficulties: it is 25 GB in compressed form.</p><p>The systems presented here thus use custom high­performance software to extract only the n-gram counts of interest from the Web1T data, includ­ing simple wildcard pattern-matching. The scale of the data rules out attempting to perform arbitrary queries — even though the counts are lexicographi­cally ordered, disk access times and decompression overheads are severe, and case-insensitive queries are not possible. This software will be released for community use. A limitation in the implementation is that the number of tokens that can be matched in a wildcard expression is fixed at one. This limita­tion precluded the testing of substitutability of multi­word-expressions (MWEs) in the systems applied to the SemEval tasks.<page local="3" global="448"/></p></subsection></section><section number="4" title="Task 7: Coarse Grained-English All-Words WSD"><p>The system for Coarse-Grained All-Words WSD was supervised, but only attempted classification for a subset of words. These words were chosen ac­cording to the amount of sense-tagged training data available, drawn from SemCor (Miller et al., 1993) and the SenseEval-3 lexical sample (Mihalcea et al., 2004) task. Features were extracted and a classifier trained for each ambiguous content word that was either present in the SenseEval-3 lexical sample, or occurred at least 100 times in SemCor. These crite­ria yielded classifiers for 183 words.</p><p>For ambiguous words without sufficient available training data, the first sense baseline (determined from WordNet version 2.1 (Fellbaum, 1998)) was assigned to every instance. No manual augmentation of the information from WordNet was performed. For those words where models were being trained, the sense clusterings provided by the task organis­ers were used to completely unify all senses belong­ing to a cluster, thus attempting disambiguation at the level of the coarse senses. As the system does not attempt to disambiguate words not selected for modeling, the exclusion of the most frequent sense (MFS) baseline would be likely to have a severe ad­verse impact on this type of supervised approach. Extension of the substitutability measure to directly select a sense related to good substitutes, similar to the approach outlined in Lin (1997) would be one possible approach to resolve this consistently.</p><p>The classifier used for the system was an SVM (libsvm) (Chang and Lin, 2001). Linear kernels were used, as previous experiments using similar features with other data sets for WSD had shown that these kernels outperformed radial basis func­tion and polynomial kernels; this disparity became particularly pronounced with larger number of fea­tures compared to training instances, and with the combination of different feature types. The num­ber of unique features for each lemma was, on av­erage, more than an order of magnitude higher than the number of training instances: 4475 compared to 289.</p><p>The features used to train the selected lemmas included the substitutability measurement, all content words within 3 sentences of the target, and imme­diate local context features. These are detailed be­low. There is no in-principle reason why CCG cate­gory features used for the Lexical Sample task (see Section 6.2) could not also be used for verbs in the all-words task. Sentences containing target verbs could have been selectively parsed and redundancy among disambiguated running text in SemCor ex­ploited. However, the system architecture was not amenable to small modifications along these lines, and time constraints prevented implementation be­fore the close of the evaluation period. The impact of this additional useful feature would be an inter­esting subject for future study.</p><subsection number="4.1" title="Features"><subsubsection number="4.1.1" title="Substitutability: Pointwise Mutual Information"><p>To transform the notion of substitutability into a set of features suitable for WSD, a set of poten­tial substitute words was chosen for each modeled lemma. These words were taken from WordNet 2.1 (Fellbaum, 1998). For nouns, all synonyms, imme­diate hypernyms and immediate hyponyms for all senses were included. For verbs, synonyms for all senses were used. The selection of potential sub­stitutes was stricter for verbs as the number of syn­onyms tended to be greater than for nouns, and these criteria kept the number of substitutes manageable.</p><p>A sliding window was used to maximise the infor­mation extracted from the Web1T corpus. All win­dows at all sizes covered by the Web1T corpus that included the target word were used to determine the overall substitutability.</p><p>The counts of interest for determining the PMI for a single substitute in a single window position in­clude the unigram frequency of the substitute itself the overall frequency of the context, irrespective of the word in the target position; and crucially, the fre­quency of the substitute in that context. For a given substitute and context, an overall PMI is determined as a single quantity, obtained by simply adding the PMI together from each window position of each size covered in the data:</p><page local="4" global="449"/><doubt alpha="50.0" length="2" tooSmall="False" monospace="0.0">5n</doubt><doubt alpha="30.0" length="10" tooSmall="False" monospace="0.0">n=2 i=1 5n</doubt><p>expectationni</p><doubt alpha="63.2" length="19" tooSmall="False" monospace="0.0">#(sub + contextn&gt;i)</doubt><doubt alpha="55.2" length="29" tooSmall="False" monospace="0.0">n=2 i=i^(sub) • p(contextn,i)</doubt><doubt alpha="100.0" length="2" tooSmall="False" monospace="0.0">Nn</doubt><p>Here n represents the window size (varying from 2 to 5), <i>i </i>is the position within the window, and <i>Nn</i><i> </i>indicates the total number of n-grams present in the corpus for a given value of n. Following Church et al. (1994) the Maximum Likelihood Es­timate (MLE) is used for both probabilities in the denominator. p(sub) is estimated from the unigram frequency of the substitute word, while p(context) is derived from the counts of the context ignoring the token in the target location.</p><p>Features were also created that harnessed the idea that it is not only the level of substitutability for each candidate word that is useful, but also that it may be informative to recognise that some words are better substitutes than others. This information was cap­tured by adding additional features consisting of the pairwise differences between PMI values for all can­didate substitute words. To further draw the dif­fering levels of substitutability into relief, features representing the rank of each pair's PMI difference were also included.</p><p>Finally, each of the above feature types yields real-valued features. Before being used in clas­sification, these features were converted to binary features using supervised Entropy-Based Discretisa­tion (Fayyad and Irani, 1993). This process char­acterises the partition selection as a message cod­ing problem: the class labels in the training data are a message to be encoded given that the value of the feature is known for each instance, and the pro­cess aims to minimise the length of that message. This is achieved by recursively bifurcating each fea­ture's values at the partition point that would result in the shortest message. Useful boundaries are those where knowing which side of the partition the fea­ture value falls on can be used to reduce the mes­sage length beyond any increase required to specify the partition. The algorithm terminates when the ex­isting partitions cannot be divided further and still satisfy this condition. If this occurs when attempting to find the first partition, the feature is dropped altogether.</p></subsubsection><subsubsection number="4.1.2" title="Bag of Words in broad context"><p>Bag of words (BOW) features were introduced to represent the presence or absence of almost all words within a window of three sentences of the target word. A small stop list (approximately 50 words) was used to remove common closed-class words such as prepositions and conjunctions. The words were lemmatised before being transformed into features, and were not weighted for their dis­tance from the target word. No attribute subset se­lection was performed on the BOW features.</p></subsubsection><subsubsection number="4.1.3" title="Local Context Features"><p>The sentence containing the target word was tagged for Part of Speech (POS) using the POS tag­ger in the C&amp;C parser tools. For four tokens either side of the target lemma, features were formed from the displacement of the token concatenated with:</p><p>• The POS tag</p><p>• The lemmatised word</p><p>• The POS and lemma together</p><p>Also included were features combining the above information for pairs of tokens before, after, and ei­ther side of the target word. Finally, a feature rep­resenting the POS tag of the target word was added, providing such information as number and tense.</p><p>The portion of the context used to form these fea­tures is identical with that used to determine substi-tutability of potential synonyms using the Web1T-based features. Combining the abstract substi-tutability features with features that use the particu­lar tokens in the local context helps to maximise the utility of information present near the target word by approaching it from multiple perspectives.</p></subsubsection></subsection><subsection number="4.2" title="Results and Discussion"><p>The results of the system are shown in Table 1</p><p>The first-sense baseline achieves scores of 0.788 for precision, recall and F1, and thus outperforms our system for all documents.</p><p>Unfortunately we are currently unable to explain this relatively poor performance. It is possible that an error of a similar nature to the one which af­fected the initial results for the lexical sample system</p><p><b><i>Tiii^T </i></b><b><i>ST^sr^i </i></b>observation^<page local="5" global="450"/></p><doubt alpha="50.0" length="14" tooSmall="False" monospace="0.0">PMI  =}^l^log2</doubt><p>(see Section 6.3) was also present in this system, al­though we have not yet been unable to identify such a problem. It is also possible that the current highly supervised and lexicalised approach employed is not well-suited to the all-words task, and may require extension to achieve broad coverage.</p></subsection></section><section number="5" title="Task 10: English Lexical Substitution 5.1 Methodology"><p>As for the WSD systems, the Lexical Substitution system concentrated on words whose occurrence in local contexts similar to that of the target was more frequent than expected in the Web1T corpus.</p><p>Aside from preferring sets of potential syn­onyms obtained from lexical resources, the system is entirely unsupervised. Consequently, no sense-annotated corpus resources were used.</p><p>The lexical resources used were WordNet ver­sion 2.1 (Fellbaum, 1998) and the Macquarie The­saurus (Bernard, 1985), a pre-defined, manually constructed Thesaurus. The only information used from these resources was a list of potential syn­onyms for all listed senses that matched the target word's part-of-speech. These synonyms were used to preferentially choose potential substitutes ob­tained from the corpus data, as described below. The union of potential synonyms from both resources was used, although MWEs were not included due to limitations with the corpus. Although these lex­ical resources were not augmented, the system was capable of producing substitutes not present in these resources by using high-scoring words found in the corpus. The ordering of synonyms in these resources was not used directly, nor was their association with particular senses.</p><p>The PMI for potential substitutes that occurred in the target position of each local context window was determined using the Web1T corpus, as for coarse WSD above. The strategy differed slightly from the supervised process employed for WSD however, in that rather than testing a fixed set of potential substi­tutes, every word that occurred in the correct loca­tion in a matching context was considered as a sub­stitute. This introduced an additional computational burden which restricted the set of n-grams used to 4 and 5 grams. In particular, this is because the set of words occurring in the target position grew pro­hibitively large for 2 and 3 grams.</p><p>As for WSD, the PMI for each potential substi­tute was combined by summing the individual PMIs over all locations and size of n-gram where it oc­curred. This sum was used to rank the substitutes. After the production of the ranked list, the set of syn­onyms obtained from the lexical resources was used for preferential selection. Substitutes in the ranked list that also occurred in the synonym pool were cho­sen first. The exact manner of the preferential se­lection differed for the two evaluation measures the system participated in.</p><p>For the best measure, the highest PMI-ranked substitute that occurred in the synonym pool was given as the only substitute. If no substitutes from the synonym pool were present in the ranked list, the top three substitutes from the list were given.</p><p>For the out-of-ten (oot) measure, the ten highest-ranked substitutes that were in the synonym pool were given. If fewer than 10 substitutes were present in the list, the remaining best ranked substitutes not in the synonym pool were used to make up the ten answers.</p><p>As with the Coarse-Grained All Word WSD, lim­itations in the current implementation of the Web1T processing software meant that it was not possible to examine MWEs, and there was thus no provision to detect or handle MWEs in the system. For this reason, the mw measure was not produced by the system.</p><subsection number="5.2" title="Results and Discussion"><p>The results for the best and oot measures are given in tables 2 and 3 respectively. While the results for the other tasks are reported as a decimal fraction of 1, the results here are percentage scores, in line with the results provided by the task organisers.</p><table caption="Table 1: Coarse-Grained WSD results" class="main" frame="box" rules="all" border="1" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Doc.</p></td><td class="cell"><p>Attempted</p></td><td class="cell"><p>Precision</p></td><td class="cell"><p>Recall</p></td><td class="cell"><p>F1</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>d001</p></td><td class="cell"><p>0.986</p></td><td class="cell"><p>0.625</p></td><td class="cell"><p>0.617</p></td><td class="cell"><p>0.621</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>d002</p></td><td class="cell"><p>0.958</p></td><td class="cell"><p>0.598</p></td><td class="cell"><p>0.573</p></td><td class="cell"><p>0.585</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>d003</p></td><td class="cell"><p>0.948</p></td><td class="cell"><p>0.610</p></td><td class="cell"><p>0.578</p></td><td class="cell"><p>0.593</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>d004</p></td><td class="cell"><p>0.929</p></td><td class="cell"><p>0.606</p></td><td class="cell"><p>0.563</p></td><td class="cell"><p>0.583</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>d005</p></td><td class="cell"><p>0.965</p></td><td class="cell"><p>0.471</p></td><td class="cell"><p>0.455</p></td><td class="cell"><p>0.463</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Total</p></td><td class="cell"><p>0.953</p></td><td class="cell"><p>0.588</p></td><td class="cell"><p>0.560</p></td><td class="cell"><p>0.574</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><page local="6" global="451"/><p>Table 3: oot results</p><p>Notably, recall is always lower than precision. If no substitutes were found to have finite PMI at any position, no substitute was rendered by the system. This meant a small number of examples in the sub­mitted system had no answer provided. The sys­tem's design meant that no attempt was made to provide any answer when counts were zero for all Web1T queries. This was the case for around 3% of the evaluation set. As the query retrieval soft­ware was limited to single word substitutions, this should be expected to occur for MWEs more fre­quently than for single word substitutions. The re­sults for both best and oot confirm this, show­ing that the system's performance is uniformly better when MWEs are excluded.</p><p>As a consequence of the properties of the Web1T corpus, the system chooses substitutes on the ba­sis of information that is derived from at most four words either side of the target word. It is thus en­couraging that it is able to outperform the baselines on each evaluation measure.</p><p>Interestingly, for the best evaluation the perfor­mance on the randomly selected (rand) examples outperforms that on the manually selected (man) examples. For the oot evaluation the situation is reversed. This could indicate that, depending on the motivation for the manual selections, the system is not particularly well-suited to selecting an obvious singular substitution, but is quite capable of ranking reasonably acceptable ones near the top of the list.</p></subsection></section><section number="6" title="Task 17: Coarse Grained English Lexical Sample sub-task"><subsection number="6.1" title="Approach"><p>The Lexical Sample system used features identical to those described for the Coarse-Grained All-Words task, with the addition of the CCG supertag feature, discussed below. Labeled data used for training the classifier models in this system consisted of only the instances in the training data supplied for the task, although the Web1T corpus was of course used to provide extensive information in the form of features for those instances. As for the All-Words system, an individual SVM model was trained using linear ker­nels for each lemma being disambiguated. The con­textual BoW features were not selected from within a window as for the All-Words system; instead the entire context provided in the training and test data was used.</p><p>Unlike the other systems, the Lexical Sample sys­tem produced a prediction for every instance in the test data, as the MWE limitation of the Web1T pro­cessing software did not present an impediment.</p></subsection><subsection number="6.2" title="CCG Verb Categories"><p>The Lexical sample data was parsed using the Clark and Curran CCG parser (Clark and Curran, 2004). Existing tagging and parsing models, derived from CCGBank are included with the parser package, and were used without adjustment. Gold-standard parses available for the source data were not used.</p><p>The syntactic combination category ("supertags") assigned to target verbs by the parser were used as features. This category label encodes information about the types of the other sentential components used when building a parse. A forward slash indi­cates that the current token requires a component of the specified type to the right; a backwards slash re­quires one to the left. The C&amp;C parser includes a supertagger, but this supertagger assigns multiple la­bels with varying degrees of confidence, and when the parse is performed, the supertag labels are sub­ject to revision in determining the most likely parse. The feature used for the Lexical Sample system uses the final, parser-determined supertag.<page local="7" global="452"/></p><table caption="Table 3: oot results" class="main" frame="box" rules="all" border="1" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>P R</p></td><td class="cell"><p>ModeP</p></td><td class="cell"><p>ModeR</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>all</p></td><td class="cell"><p>11.23 10.88</p></td><td class="cell"><p>18.22</p></td><td class="cell"><p>17.64</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Further Analysis</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>nmwt</p></td><td class="cell"><p>11.68 11.34</p></td><td class="cell"><p>18.46</p></td><td class="cell"><p>17.90</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>nmws</p></td><td class="cell"><p>12.48 12.10</p></td><td class="cell"><p>19.25</p></td><td class="cell"><p>18.63</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>rand</p></td><td class="cell"><p>11.47 11.01</p></td><td class="cell"><p>19.14</p></td><td class="cell"><p>18.35</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>man</p></td><td class="cell"><p>10.95 10.73</p></td><td class="cell"><p>17.20</p></td><td class="cell"><p>16.84</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Table 2: best results</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>P R</p></td><td class="cell"><p>ModeP</p></td><td class="cell"><p>ModeR</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>all</p></td><td class="cell"><p>36.07 34.96</p></td><td class="cell"><p>43.66</p></td><td class="cell"><p>42.28</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Further Analysis</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>nmwt</p></td><td class="cell"><p>37.62 36.17</p></td><td class="cell"><p>44.71</p></td><td class="cell"><p>43.35</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>nmws</p></td><td class="cell"><p>40.13 38.89</p></td><td class="cell"><p>46.25</p></td><td class="cell"><p>44.77</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>rand</p></td><td class="cell"><p>35.67 34.26</p></td><td class="cell"><p>42.90</p></td><td class="cell"><p>41.13</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>man</p></td><td class="cell"><p>36.52 35.78</p></td><td class="cell"><p>44.50</p></td><td class="cell"><p>43.58</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><p>As an example, consider the occur­rence of the verb <i>find </i>in the following two fragments   where   it   has   different senses:</p><p>managers did not find out about questionable billing and</p><p>or new revenues are found by Congress In the first fragment <i>find </i>has a (simplified) supertag of (S\NP)/PP, while in the second it is playing a different grammatical role, and hence has a different supertag: S\NP. While these supertags are gener­ally not exclusively associated with a single sense in particular, their distribution is sufficiently distinct over different senses that features derived from them are informative for the WSD task. To form features, the system uses the supertags obtained from the parser as binary features, with a slight simplification: by removing distinctions between the argument types of the main S component, generalisation is facilitated among instances of verbs which differ slightly on a local level but combine with other parts of the sentence similarly.</p></subsection><subsection number="6.3" title="Results and Discussion"><p>Unfortunately, the component of the lexical sample system responsible for assigning identifiers for eval­uation contained a systematic error, resulting in a mismatch between the predictions of the system and the correct labels as used in evaluation. The system assumed that for each lemma in the test set, the in­stances in the test data file would have lexicographi­cally ascending identifiers, and matched predictions to identifiers using this assumption. This was not the case in the task data, and yielded a result for the submission that severely underestimated the per­formance of the system. We calculated a baseline of 0.788 for the Lexical Sample sub-task, using the Most Frequent Sense for each lemma in the training data. The result for the systems initial submission was 0.743 (precision, recall, accuracy and F1 are all identical, as the system provides an answer for every instance).</p><p>However, as the mismatch is systematic, and only occurred after the classifier had made its predictions, it was possible to correct almost all of the alignment by post-processing the erroneous answer file. By holding the order of predictions constant, but lexico­graphically sorting instance identifiers within each lemma, predictions were re-matched with their in­tended identifiers. Using the test labels provided by the task organisers, the accuracy of the system after repairing the mismatch was 0.891.</p><p>As the parser does not have 100% coverage, the parse of the test sentence did not succeed in every instance. This in turn caused some supertag features to be misaligned with other feature types before the error was rectified. This meant that a small frac­tion of instances were given predictions in the sub­mitted data that differed from those produced by the corrected system. When the already-trained models were used to re-predict the classes of the correctly aligned test instances, a further small improvement to a result of 0.893 was achieved.</p><p>It is encouraging that the results (after correcting the misaligned identifiers) for the patched system are approaching the Inter Tagger Agreement (ITA) level reported for ontoNotes sense tags by the task or­ganisers - 90%. This could be seen as an positive outcome of the movement towards coarser-grained sense inventories for the WSD tasks, it is difficult for automated systems to agree with humans more often than they agree with each other.</p></subsection></section><section number="7" title="Conclusion"><p>Substantially similar information in the form of a PMI-based substitutability measure from the Web1T corpus was used in all USYD systems. That this information yielded positive results in different semantic-ambiguity related tasks, both supervised and unsupervised, demonstrates the usefulness of the data at the scale of the Web1T corpus, either alone or in concert with other information sources, and there are still many more approaches to using this resource for semantic processing that could be explored.</p><p>The systems demonstrated outstanding perfor­mance on the Lexical Sample WSD task - nearly at the level of the reported ITA. Good unsupervised performance above the baseline was also achieved on the Lexical Substitution task.</p></section><section number="8" title="Acknowledgements"><p>Many thanks to Jon Patrick, James Curran, and Matthew Honnibal for their invaluable assistance, insights and advice.</p><page local="8" global="453"/></section><references><p>J. R. L. Bernard, editor. 1985. <i>The Macquarie The­saurus. </i>The Macquarie Library, Sydney.</p><p>Thorsten Brants and Alex Franz. 2006. Web 1T 5-gram corpus version 1.1. Technical report, Google Research.</p><p>Chih-Chung Chang and Chih-Jen Lin. 2001. <i>LIB-SVM: A Library for Support Vector Machines. </i>Software available at http://www.csie. ntu.edu.tw/~cjlin/libsvm.</p><p>Kenneth Ward Church, Willam Gale, Patrick Hanks, Donald Hindle, and Rosamund Moon. 1994. Lex­ical substitutability. In B. T. S. Atkins and A. Zampolli, editors, <i>Computational Approaches to the Lexicon, </i>pages 153-177. Oxford University Press.</p><p>Stephen Clark and James R. Curran. 2004. Parsing the WSJ using CCG and log-linear models. In <i>Proceedings of the 42nd Annual Meeting of the Association for Computational Linguistics (ACL-04), </i>pages 104-111. Barcelona, Spain.</p><p>Usama M. Fayyad and Keki. B. Irani. 1993. Multi-interval discretization of continuous-valued at­tributes for classification learning. In <i>Proceed­ings of the Thirteenth International Joint Confer­ence on Artificial Intelligence, </i>pages 1022-1029. Chambery, France.</p><p>Christiane Fellbaum, editor. 1998. <i>Wordnet: An Electronic Lexical Database. </i>MIT Press.</p><p>Fernando Gomez. 2001. An algorithm for aspects of semantic interpretation using an enhanced word­net. In <i>Proceedings ofNAACL-2001, </i>pages 1-8.</p><p>Anna Korhonen and Judita Preiss. 2003. Improving subcategorization acquisition using word sense disambiguation. In <i>ACL '03: Proceedings of the 41st Annual Meeting on Association for Compu­tational Linguistics, </i>pages 48-55.</p><p>Claudia Leacock, Martin Chodorow, and George A. Miller. 1998. Using corpus statistics and WordNet relations for sense identification. <i>Computational Linguistics, </i>24:147-165.</p><p>Dekang Lin. 1997. Using syntactic dependency as local context to resolve word sense ambiguity. In <i>Proceedings of the 35th Annual Meeting of the As­sociation for Computational Linguistics.</i></p><p>David Martinez, Eneko Agirre, and Xinglong Wang. 2006. Word relatives in context for word sense disambiguation. In <i>Proceedings of the 2006 2006 Australasian Language Technology Work­shop (ALTW 2006), </i>pages 42-50.</p><p>Rada Mihalcea, Timothy Chklovski, and Adam Kil-garriff. 2004. The senseval-3 english lexical sam­ple task. In Rada Mihalcea and Phil Edmonds, editors, <i>Senseval-3: Third International Work­shop on the Evaluation of Systems for the Seman­tic Analysis ofText, </i>pages 25-28. Association for Computational Linguistics.</p><p>George. A. Miller, Claudia. Leacock, Tengi Randee, and Ross Bunker. 1993. A semantic concordance. In <i>Proceedings of the 3rd DARPA Workshop on Human Language Technology, </i>pages 303-308.</p></references></body></article>