<?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="207"/><title>KU: Word Sense Disambiguation by Substitution</title><pubinfo>Proceedings of the 4th International Workshop on Semantic Evaluations (SemEval-2007),pages 207-214, Prague, June 2007. ©2007 Association for Computational Linguistics</pubinfo><author surname="Yuret" givenname="Deniz"><org  name="Koc University" country="Turkey" city="Istanbul"/></author></firstpageheader><frontmatter><p><b>KU: Word Sense Disambiguation by Substitution</b></p><p><b>Deniz Yuret</b></p><p>Koç University Istanbul, Turkey dyuret@ku.edu.tr</p></frontmatter><abstract>Data sparsity is one of the main factors that make word sense disambiguation (WSD) difficult. To overcome this problem we need to find effective ways to use resources other than sense labeled data. In this paper I de­scribe a WSD system that uses a statistical language model based on a large unanno-tated corpus. The model is used to evalu­ate the likelihood of various substitutes for a word in a given context. These likelihoods are then used to determine the best sense for the word in novel contexts. The resulting system participated in three tasks in the Se-mEval 2007 workshop. The WSD of prepo­sitions task proved to be challenging for the system, possibly illustrating some of its lim­itations: e.g. not all words have good sub­stitutes. The system achieved promising re­sults for the English lexical sample and En­glish lexical substitution tasks. </abstract></header><body><section number="1" title="Introduction"><p>A typical word sense disambiguation system is trained on a corpus of manually sense tagged text. Machine learning algorithms are then employed to find the best sense for a word in a novel context by generalizing from the training examples. The training data is costly to generate and inter-annotator agreement is difficult to achieve. Thus there is very little training data available: the largest single cor­pus of sense tagged text, SemCor, has 41,497 sense tagged words. (Yuret, 2004) observed that approxi­mately half of the test instances do not match any of the contextual features learned from the training data for an all words disambiguation task. (Yarowsky and Florian, 2002) found that each successive doubling of the training data only leads to a 3-4% error reduc­tion within their experimental range.</p><p>Humans do not seem to be cursed with an expo­nential training data requirement to become profi­cient with the use of a word. Dictionaries typically contain a definition and one or two examples of us­age for each sense. This seems to be sufficient for a human to use the word correctly in contexts that share no surface features with the dictionary exam­ples. The 10<footnote anchor="8"/> waking seconds it takes a person to become proficient in a language does not seem suf­ficient to master all the words and their different senses. We need models that do not require large amounts of annotated text to perform WSD.</p><p>What possible process can explain our proficiency without relying on a lot of labeled data? Let us look at a concrete example: The two most frequent senses of the word "board" according to WordNet 3.0 (Fell­baum, 1998) are the "committee" sense, and the "plank" sense. When we hear a sentence like "There was a board meeting", it is immediately obvious that the first sense is intended. One hypothesis is that a common sense inference engine in your brain rules out the second sense. Maybe you visualize pieces of timber sitting around a meeting table and decide that it is absurd. Another hypothesis is that the plank sense does not even occur to you because you hear this sentence in the middle of a conversation about corporate matters. Therefore the plank sense is not psychologically "primed". Finally, maybe you sub­consciously perform a substitution and the sentence "There was a plank meeting" just sounds bad to your linguistic "ear".<page local="2" global="208"/></p><p>In this paper I will describe a system that judges potential substitutions in a given context using a sta­tistical language model as a surrogate for the linguis­tic "ear". The likelihoods of the various substitutes are used to select the best sense for a target word.</p><p>The use of substitutes for WSD is not new. (Lea-cock et al., 1998) demonstrated the use of related monosemous words (monosemous relatives) to col­lect examples for a given sense from the Internet. (Mihalcea, 2002) used the monosemous relatives technique for bootstrapping the automatic acquisi­tion of large sense tagged corpora. In both cases, the focus was on collecting more labeled examples to be subsequently used with supervised machine learn­ing techniques. (Martinez et al., 2006) extended the method to make use of polysemous relatives. More importantly, their method places these relatives in the context of the target word to query a search en­gine and uses the search results to predict the best sense in an unsupervised manner.</p><p>There are three areas that distinguish my system from the previous work: (i) The probabilities for substitutes in context are determined using a statisti­cal language model rather than search hits on heuris-tically constructed queries, (ii) The set ofsubstitutes are derived from multiple sources and optimized us­ing WSD performance as the objective function, and (iii) A probabilistic generative model is used to se­lect the best sense rather than typical machine learn­ing algorithms or heuristics. Each of these areas is explained further below.</p><p><b>Probabilities for substitutes: </b>Statistical language modeling is the art of determining the probability of a sequence of words. According to the model used in this study, the sentence "There was a committee meeting" is 17,629 times more likely than the sen­tence "There was a plank meeting". Thus, a statis­tical language model can be used as a surrogate for your inner ear that decides what sounds good and what sounds bad. I used a language model based on the Web 1T 5-gram dataset (Brants and Franz, 2006) which gives the counts of 1 to 5-grams in a web cor­pus of 10<footnote anchor="12"/> words. The details of the Web1T model are given in the Appendix.</p><p>Given that I criticize existing WSD algorithms for using too much data, it might seem hypocritical to employ a data source with 10<footnote anchor="12"/> words. In my de­fense, from an engineering perspective, an unanno-tated 10<footnote anchor="12"/> word corpus exists, whereas large sense tagged corpora do not. From a scientific perspective, it is clear that no human ever comes close to expe­riencing 10<footnote anchor="12"/> words, but they do outperform simple n-gram language models based on that much data in predicting the likelihood of words in novel contexts (Shannon, 1951). So, even though we do not know how humans do it, we do know that they have the equivalent of a powerful statistical language model in their heads.</p><p><b>Selecting the best substitutes: </b>Perhaps more im­portant for the performance ofthe system is the deci­sion of which substitutes to try. We never thought of using "monkey" as a potential substitute for "board". One possibility is to use the synonyms in Word­Net which were selected such that they can be in­terchanged in at least some contexts. However 54% of WordNet synsets do not have any synonyms. Be­sides, synonymous words would not always help if they share similar ambiguities in meaning. Substi­tutes that are not synonyms, on the other hand, may be very useful such as "hot" vs. "cold" or "car" vs. "truck". In general we are looking for potential substitutes that have a high likelihood of appearing in contexts that are associated with a specific sense of the target word. The substitute selection method used in this work is described in Section 3.</p><p><b>Selecting the best sense: </b>Once we have a lan­guage model and a set of substitutes to try, we need a decision procedure that picks the best sense of a word in a given context. An unsupervised system can be designed to keep track of the sense associ­ated with each substitute based on the lexical re­source used. However since I used multiple lexical resources, and had training data available, I chose a supervised approach. For each instance in the train­ing set, the likelihood of each substitute is deter­mined. Then instances of a single sense are grouped together to yield a probability distribution over the substitutes for that sense. When a test instance is encountered its substitute distribution is compared to that of each sense to select the most appropriate one. Section 2 describes the sense selection proce­dure in detail.</p><page local="3" global="209"/><p>We could say each context is represented with the likelihood it assigns to various substitutes rather than its surface features. That way contexts that do not share any surface features can be related to each other.</p><p><b>Results: </b>To summarize the results, in the Word Sense Disambiguation of Prepositions Task, the sys­tem achieved 54.7% accuracy<footnote anchor="1"/>. This is 15.1% above the baseline of picking the most frequent sense but 14.6% below the best system. In the Coarse Grained English Lexical Sample WSD Task, the sys­tem achieved 85.1% accuracy, which is 6.4% above the baseline of picking the most frequent sense and 3.6% below the best system. Finally, in the English Lexical Substitution Task, the system achieved the top result for picking the best substitute for each word.</p></section><section number="2" title="Sense Selection Procedure"><p>Consider a target word w0 with n senses <i>S = {s1</i>,...,sn}. Let <i>Cj = {cj1 ,Cj2,...} </i>be the set of contexts in the training data where wo has been tagged with sense <i>sj. </i>The prior probability of a sense Sj will be defined as:</p><doubt alpha="22.2" length="9" tooSmall="False" monospace="0.0">P(s.) -__</doubt><doubt alpha="60.0" length="10" tooSmall="False" monospace="0.0">{j)ELi\ck\</doubt><p>Suppose we decide to use m substitutes <i>W = {w1,..., wm</i>}. The selection of the possible sub­stitutes is discussed in Section 3. Let P<i>(wi</i>, c) de­note the probability of the context <i>c </i>where the target word has been replaced with wj. This probability is obtained from the Web1T language model. The con­ditional probability of a substitute <i>wi </i>in a particular context c is defined as:</p><doubt alpha="37.9" length="29" tooSmall="False" monospace="0.0">t&gt;(i nP(wi,c) P{wi\c) = —-—--</doubt><p>The conditional probability of a substitute <i>wi </i>for a particular sense <i>Sj</i><i> </i>is defined as:</p><doubt alpha="55.0" length="20" tooSmall="False" monospace="0.0">p(wi\sj) =j^nP(wi\c)</doubt><p>'In all the tasks participated, the system submitted a unique answer for each instance. Therefore precision, recall, F-measure, and accuracy have the same value. I will use the term accuracy to represent them all.</p><p>Given a test context ct, we would like to find out which sense <i>sj</i><i> </i>it is most likely to represent:</p><doubt alpha="66.7" length="30" tooSmall="False" monospace="0.0">argmaxjP(sj|ct) «P(ct|sj)P(sj)</doubt><p>To calculate the likelihood of the test context P(ct|sj), we first find the conditional probability distribution of the substitutes P(wi |ct), as described above. Treating these probabilities as fractional counts we can express the likelihood as:</p><doubt alpha="56.0" length="25" tooSmall="False" monospace="0.0">p(ct|sj) «np(w|sj)p(w|ct)</doubt><doubt alpha="100.0" length="3" tooSmall="False" monospace="0.0">wew</doubt><p>Thus we choose the sense that maximizes the pos­terior probability:</p><p>argmaxj<i>P(sj</i>) n <i>P(w[sj</i>)P(w|ct)<i>wew</i></p></section><section number="3" title="Substitute Selection Procedure"><p>Potential substitutes for a word were selected from WordNet 3.0 (Fellbaum, 1998), and the Roget The­saurus (Thesaurus.com, 2007).</p><p>When selecting the WordNet substitutes, the pro­gram considered all synsets of the target word and neighboring synsets accessible following a single link. All words contained within these synsets and their glosses were considered as potential substi­tutes.</p><p>When selecting the Roget substitutes, the program considered all entries that included the target word. By default, the entries that included the target word as part of a multi word phrase and entries that had the wrong part of speech were excluded.</p><p>I observed that the particular set of substitutes used had a large impact on the disambiguation per­formance in cross validation. Therefore I spent a considerable amount of effort trying to optimize the substitute sets. The union of the WordNet and Ro-get substitutes were first sorted based on their dis­criminative power measured by the likelihood ratio of their best sense:</p><p>LR <i>P(wi| </i><i>sj)</i></p><doubt alpha="47.1" length="17" tooSmall="False" monospace="0.0">LR(wj) =max ——-f-</doubt><doubt alpha="55.6" length="9" tooSmall="False" monospace="0.0">3P[Wi\Sj)</doubt><p>The following optimization algorithms were then run to maximize the leave-one-out cross validation (loocv) accuracy on the lexical sample WSD train­ing data.</p><page local="4" global="210"/><p>1. Each substitute was temporarily deleted and the resulting gain in loocv was noted. The sub­stitute that led to the highest gain was perma­nently deleted. The procedure was repeated un­til no further loocv gain was possible.</p><p>2. Each pair of substitutes were tried alone and the pair that gave the highest loocv score was chosen as the initial list. Other substitutes were then greedily added to this list until no further loocv gain was possible.</p><p>3. Golden section search was used to find the ideal cutoff point in the list of substitutes sorted by likelihood ratio. Substitutes below the cutoff point were deleted.</p><p>None of these algorithms consistently gave the best result. Thus, each algorithm was run for each target word and the substitute set that gave the best loocv result was used for the final testing. The loocv gain from using the optimized substitute sets instead of the initial union of WordNet and Roget substi­tutes was significant. For example the average gain was 9.4% and the maximum was 38% for the En­glish Lexical Sample WSD task.</p></section><section number="4" title="English Lexical Substitution"><p>The <i>English Lexical Substitution Task </i>(McCarthy and Navigli, 2007), for both human annotators and systems is to replace a target word in a sentence with as close a word as possible. It is different from the standard WSD tasks in that there is no sense repos­itory used, and even the identification of a discrete sense is not necessary.</p><p>The task used a lexical sample of 171 words with 10 instances each. For each instance the human annotators selected several substitutes. There were three subtasks: <b>best: </b>scoring the best substitute for a given item, <b>oot: </b>scoring the best ten substitutes for a given item, and <b>mw: </b>detection and identification of multi-words. The details of the subtasks and scor­ing can be found in (McCarthy and Navigli, 2007). My system participated in the first two subtasks.</p><p>Because there is no training set, the supervised optimization of the substitute set using the algo­rithms described in Section 3 is not applicable. Based on the trial data, I found that the Roget substi­tutes work better than the WordNet substitutes most</p><p>Table 1: best and oot results: P is precision, R is recall, Mode indicates accuracy selecting the sin­gle preferred substitute when there is one, nmwt is the score without items identified as multi-words, nmws is the score using only single word substi­tutes, rand is the score for the items selected ran­domly, and man is the score for the items selected manually.</p><p>of the time. The antonyms in each entry and the entries that did not have the target word as the head were filtered out to improve the accuracy. Antonyms happen to be good substitutes for WSD, but not so good for lexical substitution.</p><p>For the final output of the system, the substitutes wi in a context c were simply sorted by P <i>(wi</i>, c) which is calculated based on the Web1T language model.</p><p>In the <b>best </b>subtask the system achieved 12.9% ac­curacy, which is the top score and 2.95% above the baseline. The system was able to find the mode (a single substitute preferred to the others by the anno-tators) in 20.65% of the cases when there was one, which is 5.37% above the baseline and 0.08% be­low the top score. The top part of Table 1 gives the breakdown of the <b>best </b>score, see (McCarthy and</p><p>Navigli, 2007) for details.</p><p>The low numbers here are partly a consequence of the scoring formula used. Specifically, the score for a single item is bounded by the frequency ofthe best substitute in the gold standard file. Therefore, the<page local="5" global="211"/></p><table 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></tr><tr class="row"><td class="cell"></td><td class="cell"><p>best</p></td><td class="cell"><p>P R</p></td><td class="cell"><p>Mode P   Mode R</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>12.90 12.90</p></td><td class="cell"><p>20.65 20.65</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 nmws rand man</p></td><td class="cell"><p>13.39 13.39 14.33 13.98 12.67 12.67 13.16 13.16</p></td><td class="cell"><p>21.20 21.20 21.88 21.42 20.34 20.34 21.01 21.01</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>oot</p></td><td class="cell"><p>P R</p></td><td class="cell"><p>Mode P   Mode R</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>46.15 46.15</p></td><td class="cell"><p>61.30 61.30</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 nmws rand man</p></td><td class="cell"><p>48.43 48.43 49.72 49.72 47.80 47.80 44.23 44.23</p></td><td class="cell"><p>63.42 63.42 63.74 63.74 62.84 62.84 59.55 59.55</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></tr></table><p>0.8 I-,—........-,—........-,—.......</p><doubt alpha="20.0" length="10" tooSmall="False" monospace="0.0">0.6 - -cd+</doubt><doubt alpha="0.0" length="10" tooSmall="False" monospace="0.0">10.4-++*+-</doubt><doubt alpha="50.0" length="2" tooSmall="False" monospace="0.0">-Q</doubt><doubt alpha="16.7" length="6" tooSmall="True" monospace="0.0">(d++ +</doubt><doubt alpha="0.0" length="16" tooSmall="False" monospace="0.0">10.2 -+\ *+*++ -</doubt><doubt alpha="15.4" length="13" tooSmall="True" monospace="0.0">ro+^+++^+++++</doubt><doubt alpha="16.7" length="6" tooSmall="True" monospace="0.0">o ++++</doubt><doubt alpha="33.3" length="3" tooSmall="False" monospace="0.0">Ü +</doubt><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">&lt; *</doubt><doubt alpha="0.0" length="10" tooSmall="False" monospace="0.0">-0.2 - + -</doubt><p>-0.4 I-h—........-■—........-■—.......</p><doubt alpha="0.0" length="17" tooSmall="False" monospace="0.0">10 100 1000 10000</doubt><p>Number of training instances</p><figure caption="Figure 1: Training set size vs. accuracy above base­line for the English lexical sample task."></figure><p>highest achievable score was not 100%, but 45.76%. A more intuitive way to look at the result may be the following: Human annotators assigned 4.04 dis­tinct substitutes for each instance on average, and my system was able to guess one ofthese as the best in 33.73% of the cases.</p><p>In the <b>oot </b>subtask the system achieved 46.15% accuracy, which is 16.45% above the baseline and 22.88% below the top result. The system was able to find the mode as one of its 10 guesses in 61.30% of the cases when there was a mode, which is 20.73% above the best baseline and 4.96% below the top score. Unlike the <b>best </b>scores, 100% accuracy is pos­sible for <b>oot. </b>Each item had 1 to 9 distinct substi­tutes in the gold standard, so an ideal system could potentially cover them all with 10 guesses. The sec­ond part of Table 1 gives the breakdown of the <b>oot </b>score.</p><p>In conclusion, selecting substitutes based on a standard repository like Roget and ranking them us­ing the ngram language model gives a good base­line for this task. To improve the performance along these lines we need better language models, and bet­ter substitute selection procedures. Even the best language model will only tell us which words are most likely to replace our target word, not which ones preserve the meaning. Relying on reposito­ries like Roget for the purpose ofsubstitute selection seems ad-hoc and better methods are needed.</p></section><section number="5" title="English Lexical Sample WSD"><p>The <i>Coarse-Grained English Lexical Sample WSD Task </i>(Palmer et al., 2007), provided training and test data for sense disambiguation of 65 verbs and 35 nouns. On average there were 223 training and 49 testing instances for each word tagged with an OntoNote sense tag (Hovy et al., 2006). OntoNote sense tags are groupings of WordNet senses that are more coarse-grained than traditional WN entries, and which have achieved on average 90% inter-annotator agreement. The number of senses for a word ranged from 1 to 13 with an average of 3.6.</p><p>I used substitute sets optimized for each word as described in Section 3. Then a single best sense for each test instance was selected based on the model given in Section 2. The system achieved 85.05% ac­curacy, which is 6.39% above the baseline of pick­ing the most frequent sense and 3.65% below the top score.</p><p>These numbers seem higher than previous Sen-seval lexical sample tasks. The best system in Senseval-3 (Mihalcea et al., 2004; Grozea, 2004) achieved 72.9% fine grained, 79.3% coarse grained accuracy. Many factors may have played a role but the most important one is probably the sense inven­tory. The nouns and verbs in Senseval-3 had 6.1 fine grained and 4.5 coarse grained senses on average.</p><p>The leave-one-out cross-validation result of my system on the training set was 83.21% with the un-filtered union of Roget and WordNet substitutes, and 90.69% with the optimized subset. Clearly there is some over-fitting in the substitute optimization pro­cess which needs to be improved.</p><p>Table 2 details the performance on individual words. The accuracy is 88.67% on the nouns and 81.02% on the verbs. One can clearly see the rela­tion of the performance with the number of senses (decreasing) and the frequency of the first sense (in­creasing). Interestingly no clear relation exists be­tween the training set size and the accuracy above the baseline. Figure 1 plots the relationship between training set size vs. the accuracy gain above the most frequent sense baseline. This could indicate that the system peaks at a low training set size and general­izes well because of the language model. However, it should be noted that each point in the plot rep­resents a different word, not experiments with the same word at different training set sizes.<page local="6" global="212"/> Thus the difficulty of each word may be the overriding factor in determining performance. A more detailed study similar to (Yarowsky and Florian, 2002) is needed to explore the relationship in more detail.</p></section><section number="6" title="WSD of Prepositions"><p>The <i>Word Sense Disambiguation of Prepositions Task </i>(Litkowski and Hargraves, 2007), provided training and test data for sense disambiguation of 34 prepositions. On average there were 486 train­ing and 234 test instances for each preposition. The number of senses for a word ranged from 1 to 20 with an average of 7.4.</p><p>The system described in Sections 2 and 3 were applied to this task as well. WordNet does not have information about prepositions, so most of the can­didate substitutes were obtained from Roget and The Preposition Project (Litkowski, 2005). After opti­mizing the substitute sets the system achieved 54.7% accuracy which is 15.1% above the most frequent sense baseline and 14.6% below the top result. Un­fortunately there were only three teams that partic­ipated in this task. The detailed breakdown of the results can be seen in the second part of Table 2.</p><p>The loocv result on the training data with the ini­tial unfiltered set of substitutes was 51.70%. Opti­mizations described in Section 3 increased this to 59.71%. This increase is comparable to the one in the lexical substitution task. The final result of 54.7% shows signs of overfitting in the substitute se­lection process.</p><p>The average gain above the baseline for preposi­tions (39.6% to 54.7%) is significantly higher than the English lexical sample task (78.7% to 85.1%). However the preposition numbers are generally lower compared to the nouns and verbs because they are more ambiguous: the number of senses is higher and the first sense frequency is lower.</p><p>Good quality substitutes are difficult to find for prepositions. Unlike common nouns and verbs, common prepositions play unique roles in language and are difficult to replace. Open class words have synonyms, hypernyms, antonyms etc. that provide good substitutes: it is easy to come up with "I ate halibut" when you see "I ate fish". It is not as easy to replace "of in the phrase "the president of the company". Even when there is a good substitute, e.g. "over" vs. "under", the two prepositions usually share the exact same ambiguities: they can both ex­press a physical direction or a quantity comparison. Therefore the substitution based model presented in this work may not be a good match for preposition disambiguation.</p></section><section number="7" title="Contributions and Future Work"><p>A WSD method employing a statistical language model was introduced. The language model is used to evaluate the likelihood of possible substitutes for the target word in a given context. Each context is represented with its preferences for possible substi­tutes, thus contexts with no surface features in com­mon can nevertheless be related to each other.</p><p>The set of substitutes used for a word had a large effect on the performance of the resulting system. A substitute selection procedure that uses the language model itself rather than external lexical resources may work better.</p><p>I hypothesize that the model would be advanta­geous on tasks like "all words" WSD, where data sparseness is paramount, because it is able to link contexts with no surface features in common. It can be used in an unsupervised manner where the sub­stitutes and their associated senses can be obtained from a lexical resource. Work along these lines was not completed due to time limitations.</p><p>Finally, there are two failure modes for the algo­rithm: either there are no good substitutes that dif­ferentiate the various senses (as I suspect is the case for some prepositions), or the language model does not yield accurate preferences among the substitutes that correspond to our intuition. In the first case we have to fall back on other methods, as the substi­tutes obviously are of limited value. The correspon­dence between the language model and our intuition requires further study.</p><table 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><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>lexelt</p></td><td class="cell"><p>trn/tst</p></td><td class="cell"><p>s</p></td><td class="cell"><p>mfs</p></td><td class="cell"><p>acc</p></td><td class="cell"><p>lexelt</p></td><td class="cell"><p>trn/tst</p></td><td class="cell"><p>s</p></td><td class="cell"><p>mfs</p></td><td class="cell"><p>acc</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>affect.v</p></td><td class="cell"><p>45/19</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>allow.v</p></td><td class="cell"><p>108/35</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.971</p></td><td class="cell"><p>0.971</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>anno une e.v</p></td><td class="cell"><p>88/20</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>approve.v</p></td><td class="cell"><p>53/12</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.917</p></td><td class="cell"><p>0.917</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>area.n</p></td><td class="cell"><p>326/37</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.703</p></td><td class="cell"><p>0.838</p></td><td class="cell"><p>ask.v</p></td><td class="cell"><p>348/58</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.517</p></td><td class="cell"><p>0.759</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>attempt, v</p></td><td class="cell"><p>40/10</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>authority, n</p></td><td class="cell"><p>90/21</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.238</p></td><td class="cell"><p>0.714</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>avoid, v</p></td><td class="cell"><p>55/16</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>base.n</p></td><td class="cell"><p>92/20</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.100</p></td><td class="cell"><p>0.650</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>beg in. v</p></td><td class="cell"><p>114/48</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.562</p></td><td class="cell"><p>0.792</p></td><td class="cell"><p>believe.v</p></td><td class="cell"><p>202/55</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.782</p></td><td class="cell"><p>0.836</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>bill.n</p></td><td class="cell"><p>404/102</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.755</p></td><td class="cell"><p>0.902</p></td><td class="cell"><p>build.v</p></td><td class="cell"><p>119/46</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.739</p></td><td class="cell"><p>0.543</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>buy.v</p></td><td class="cell"><p>164/46</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.761</p></td><td class="cell"><p>0.783</p></td><td class="cell"><p>capital.n</p></td><td class="cell"><p>278/57</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.965</p></td><td class="cell"><p>0.982</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>care.v</p></td><td class="cell"><p>69/7</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.286</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>carrier, n</p></td><td class="cell"><p>111/21</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.714</p></td><td class="cell"><p>0.667</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>cause.v</p></td><td class="cell"><p>73/47</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>chance, n</p></td><td class="cell"><p>91/15</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.400</p></td><td class="cell"><p>0.667</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>claim.v</p></td><td class="cell"><p>54/15</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.800</p></td><td class="cell"><p>0.800</p></td><td class="cell"><p>come.v</p></td><td class="cell"><p>186/43</p></td><td class="cell"><p>10</p></td><td class="cell"><p>0.233</p></td><td class="cell"><p>0.372</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>complain.v</p></td><td class="cell"><p>32/14</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.857</p></td><td class="cell"><p>0.857</p></td><td class="cell"><p>complete.v</p></td><td class="cell"><p>42/16</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.938</p></td><td class="cell"><p>0.938</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>condition.n</p></td><td class="cell"><p>132/34</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.765</p></td><td class="cell"><p>0.765</p></td><td class="cell"><p>contribute.v</p></td><td class="cell"><p>35/18</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.500</p></td><td class="cell"><p>0.500</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>defense, n</p></td><td class="cell"><p>120/21</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.286</p></td><td class="cell"><p>0.476</p></td><td class="cell"><p>describe.v</p></td><td class="cell"><p>57/19</p></td><td class="cell"><p>3</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>development, n</p></td><td class="cell"><p>180/29</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.621</p></td><td class="cell"><p>0.759</p></td><td class="cell"><p>disclose.v</p></td><td class="cell"><p>55/14</p></td><td class="cell"><p>1</p></td><td class="cell"><p>0.929</p></td><td class="cell"><p>0.929</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>do.v</p></td><td class="cell"><p>207/61</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.902</p></td><td class="cell"><p>0.934</p></td><td class="cell"><p>drug.n</p></td><td class="cell"><p>205/46</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.870</p></td><td class="cell"><p>0.935</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>effect, n</p></td><td class="cell"><p>178/30</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.767</p></td><td class="cell"><p>0.800</p></td><td class="cell"><p>end.v</p></td><td class="cell"><p>135/21</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.524</p></td><td class="cell"><p>0.619</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>enjoy, v</p></td><td class="cell"><p>56/14</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.571</p></td><td class="cell"><p>0.643</p></td><td class="cell"><p>estimate, v</p></td><td class="cell"><p>74/16</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>examine, v</p></td><td class="cell"><p>26/3</p></td><td class="cell"><p>3</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>exchange, n</p></td><td class="cell"><p>363/61</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.738</p></td><td class="cell"><p>0.902</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>exist.v</p></td><td class="cell"><p>52/22</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>explain.v</p></td><td class="cell"><p>85/18</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.889</p></td><td class="cell"><p>0.944</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>express.v</p></td><td class="cell"><p>47/10</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>feel.v</p></td><td class="cell"><p>347/51</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.686</p></td><td class="cell"><p>0.765</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>fi nd.v</p></td><td class="cell"><p>174/28</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.821</p></td><td class="cell"><p>0.821</p></td><td class="cell"><p>fi x.v</p></td><td class="cell"><p>32/2</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.500</p></td><td class="cell"><p>0.500</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>future, n</p></td><td class="cell"><p>350/146</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.863</p></td><td class="cell"><p>0.829</p></td><td class="cell"><p>go.v</p></td><td class="cell"><p>244/61</p></td><td class="cell"><p>12</p></td><td class="cell"><p>0.459</p></td><td class="cell"><p>0.426</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>grant.v</p></td><td class="cell"><p>19/5</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.800</p></td><td class="cell"><p>0.400</p></td><td class="cell"><p>hold.v</p></td><td class="cell"><p>129/24</p></td><td class="cell"><p>8</p></td><td class="cell"><p>0.375</p></td><td class="cell"><p>0.542</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>hope.v</p></td><td class="cell"><p>103/33</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>hour.n</p></td><td class="cell"><p>187/48</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.896</p></td><td class="cell"><p>0.771</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>improve, v</p></td><td class="cell"><p>31/16</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>job.n</p></td><td class="cell"><p>188/39</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.821</p></td><td class="cell"><p>0.795</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>join.v</p></td><td class="cell"><p>68/18</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.389</p></td><td class="cell"><p>0.556</p></td><td class="cell"><p>keep.v</p></td><td class="cell"><p>260/80</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.562</p></td><td class="cell"><p>0.562</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>kill.v</p></td><td class="cell"><p>111/16</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.875</p></td><td class="cell"><p>0.875</p></td><td class="cell"><p>lead.v</p></td><td class="cell"><p>165/39</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.385</p></td><td class="cell"><p>0.513</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>maintain.v</p></td><td class="cell"><p>61/10</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.900</p></td><td class="cell"><p>0.800</p></td><td class="cell"><p>managements</p></td><td class="cell"><p>284/45</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.711</p></td><td class="cell"><p>0.978</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>move.n</p></td><td class="cell"><p>270/47</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.979</p></td><td class="cell"><p>0.979</p></td><td class="cell"><p>need.v</p></td><td class="cell"><p>195/56</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.714</p></td><td class="cell"><p>0.857</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>negotiate.v</p></td><td class="cell"><p>25/9</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>network, n</p></td><td class="cell"><p>152/55</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.909</p></td><td class="cell"><p>0.836</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>occur.v</p></td><td class="cell"><p>47/22</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.864</p></td><td class="cell"><p>0.864</p></td><td class="cell"><p>order, n</p></td><td class="cell"><p>346/57</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.912</p></td><td class="cell"><p>0.930</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>part.n</p></td><td class="cell"><p>481/71</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.662</p></td><td class="cell"><p>0.901</p></td><td class="cell"><p>people.n</p></td><td class="cell"><p>754/115</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.904</p></td><td class="cell"><p>0.948</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>plant, n</p></td><td class="cell"><p>347/64</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.984</p></td><td class="cell"><p>0.984</p></td><td class="cell"><p>point.n</p></td><td class="cell"><p>469/150</p></td><td class="cell"><p>9</p></td><td class="cell"><p>0.813</p></td><td class="cell"><p>0.920</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>policy, n</p></td><td class="cell"><p>331/39</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.974</p></td><td class="cell"><p>0.949</p></td><td class="cell"><p>position.n</p></td><td class="cell"><p>268/45</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.467</p></td><td class="cell"><p>0.556</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>power, n</p></td><td class="cell"><p>251/47</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.277</p></td><td class="cell"><p>0.766</p></td><td class="cell"><p>prep are. v</p></td><td class="cell"><p>54/18</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.778</p></td><td class="cell"><p>0.833</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>president.n</p></td><td class="cell"><p>879/177</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.729</p></td><td class="cell"><p>0.927</p></td><td class="cell"><p>pro due e.v</p></td><td class="cell"><p>115/44</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.750</p></td><td class="cell"><p>0.750</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>pro mis e.v</p></td><td class="cell"><p>50/8</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.750</p></td><td class="cell"><p>0.750</p></td><td class="cell"><p>propose.v</p></td><td class="cell"><p>34/14</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.857</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>prove, v</p></td><td class="cell"><p>49/22</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.318</p></td><td class="cell"><p>0.818</p></td><td class="cell"><p>purchase.v</p></td><td class="cell"><p>35/15</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>raise.v</p></td><td class="cell"><p>147/34</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.147</p></td><td class="cell"><p>0.441</p></td><td class="cell"><p>rate.n</p></td><td class="cell"><p>1009/145</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.862</p></td><td class="cell"><p>0.917</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>recall.v</p></td><td class="cell"><p>49/15</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.867</p></td><td class="cell"><p>0.933</p></td><td class="cell"><p>receive.v</p></td><td class="cell"><p>136/48</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.958</p></td><td class="cell"><p>0.958</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>regard.v</p></td><td class="cell"><p>40/14</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.714</p></td><td class="cell"><p>0.643</p></td><td class="cell"><p>remember, v</p></td><td class="cell"><p>121/13</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>remove, v</p></td><td class="cell"><p>47/17</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>replace.v</p></td><td class="cell"><p>46/15</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>report.v</p></td><td class="cell"><p>128/35</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.914</p></td><td class="cell"><p>0.914</p></td><td class="cell"><p>rush.v</p></td><td class="cell"><p>28/7</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>say.v</p></td><td class="cell"><p>2161/541</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.987</p></td><td class="cell"><p>0.987</p></td><td class="cell"><p>see.v</p></td><td class="cell"><p>158/54</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.444</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"><p>set.v</p></td><td class="cell"><p>174/42</p></td><td class="cell"><p>9</p></td><td class="cell"><p>0.286</p></td><td class="cell"><p>0.500</p></td><td class="cell"><p>share, n</p></td><td class="cell"><p>2536/525</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.971</p></td><td class="cell"><p>0.973</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>source, n</p></td><td class="cell"><p>152/35</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.371</p></td><td class="cell"><p>0.829</p></td><td class="cell"><p>space.n</p></td><td class="cell"><p>67/14</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.786</p></td><td class="cell"><p>0.929</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>start, v</p></td><td class="cell"><p>214/38</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.447</p></td><td class="cell"><p>0.447</p></td><td class="cell"><p>state, n</p></td><td class="cell"><p>617/72</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.792</p></td><td class="cell"><p>0.819</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>system, n</p></td><td class="cell"><p>450/70</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.486</p></td><td class="cell"><p>0.586</p></td><td class="cell"><p>turn.v</p></td><td class="cell"><p>340/62</p></td><td class="cell"><p>13</p></td><td class="cell"><p>0.387</p></td><td class="cell"><p>0.516</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>value, n</p></td><td class="cell"><p>335/59</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.983</p></td><td class="cell"><p>0.983</p></td><td class="cell"><p>work.v</p></td><td class="cell"><p>230/43</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.558</p></td><td class="cell"><p>0.721</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>AVG</p></td><td class="cell"><p>222.8/48.5</p></td><td class="cell"><p>3.6</p></td><td class="cell"><p>0.787</p></td><td class="cell"><p>0.851</p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Preposition WSD</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>lexelt</p></td><td class="cell"><p>trn/tst</p></td><td class="cell"><p>s</p></td><td class="cell"><p>mfs</p></td><td class="cell"><p>acc</p></td><td class="cell"><p>lexelt</p></td><td class="cell"><p>trn/tst</p></td><td class="cell"><p>s</p></td><td class="cell"><p>mfs</p></td><td class="cell"><p>acc</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>ab out. p</p></td><td class="cell"><p>710/364</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.885</p></td><td class="cell"><p>0.934</p></td><td class="cell"><p>above.p</p></td><td class="cell"><p>48/23</p></td><td class="cell"><p>5</p></td><td class="cell"><p>0.609</p></td><td class="cell"><p>0.522</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>across.p</p></td><td class="cell"><p>319/151</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.960</p></td><td class="cell"><p>0.960</p></td><td class="cell"><p>after, p</p></td><td class="cell"><p>103/53</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.434</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>against, p</p></td><td class="cell"><p>195/92</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.435</p></td><td class="cell"><p>0.793</p></td><td class="cell"><p>along, p</p></td><td class="cell"><p>364/173</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.954</p></td><td class="cell"><p>0.954</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>among, p</p></td><td class="cell"><p>100/50</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.300</p></td><td class="cell"><p>0.680</p></td><td class="cell"><p>around, p</p></td><td class="cell"><p>334/155</p></td><td class="cell"><p>6</p></td><td class="cell"><p>0.452</p></td><td class="cell"><p>0.535</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>as.p</p></td><td class="cell"><p>173/84</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>at.p</p></td><td class="cell"><p>715/367</p></td><td class="cell"><p>12</p></td><td class="cell"><p>0.425</p></td><td class="cell"><p>0.662</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>before, p</p></td><td class="cell"><p>47/20</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.450</p></td><td class="cell"><p>0.850</p></td><td class="cell"><p>behind, p</p></td><td class="cell"><p>138/68</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.662</p></td><td class="cell"><p>0.676</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>beneath, p</p></td><td class="cell"><p>57/28</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.571</p></td><td class="cell"><p>0.679</p></td><td class="cell"><p>beside.p</p></td><td class="cell"><p>62/29</p></td><td class="cell"><p>1</p></td><td class="cell"><p>1.000</p></td><td class="cell"><p>1.000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>between, p</p></td><td class="cell"><p>211/102</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.422</p></td><td class="cell"><p>0.765</p></td><td class="cell"><p>byp</p></td><td class="cell"><p>509/248</p></td><td class="cell"><p>10</p></td><td class="cell"><p>0.371</p></td><td class="cell"><p>0.556</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>down.p</p></td><td class="cell"><p>332/153</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.438</p></td><td class="cell"><p>0.647</p></td><td class="cell"><p>during.p</p></td><td class="cell"><p>81/39</p></td><td class="cell"><p>2</p></td><td class="cell"><p>0.385</p></td><td class="cell"><p>0.564</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>for.p</p></td><td class="cell"><p>950/478</p></td><td class="cell"><p>13</p></td><td class="cell"><p>0.238</p></td><td class="cell"><p>0.395</p></td><td class="cell"><p>from.p</p></td><td class="cell"><p>1204/578</p></td><td class="cell"><p>16</p></td><td class="cell"><p>0.279</p></td><td class="cell"><p>0.415</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>in.p</p></td><td class="cell"><p>1391/688</p></td><td class="cell"><p>13</p></td><td class="cell"><p>0.362</p></td><td class="cell"><p>0.436</p></td><td class="cell"><p>inside.p</p></td><td class="cell"><p>67/38</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.526</p></td><td class="cell"><p>0.579</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>into.p</p></td><td class="cell"><p>604/297</p></td><td class="cell"><p>8</p></td><td class="cell"><p>0.451</p></td><td class="cell"><p>0.539</p></td><td class="cell"><p>like.p</p></td><td class="cell"><p>266/125</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.768</p></td><td class="cell"><p>0.808</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>ofp</p></td><td class="cell"><p>3000/1478</p></td><td class="cell"><p>17</p></td><td class="cell"><p>0.205</p></td><td class="cell"><p>0.374</p></td><td class="cell"><p>off.p</p></td><td class="cell"><p>161/76</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.763</p></td><td class="cell"><p>0.776</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>on.p</p></td><td class="cell"><p>872/441</p></td><td class="cell"><p>20</p></td><td class="cell"><p>0.206</p></td><td class="cell"><p>0.469</p></td><td class="cell"><p>onto.p</p></td><td class="cell"><p>117/58</p></td><td class="cell"><p>3</p></td><td class="cell"><p>0.879</p></td><td class="cell"><p>0.879</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>over.p</p></td><td class="cell"><p>200/98</p></td><td class="cell"><p>12</p></td><td class="cell"><p>0.327</p></td><td class="cell"><p>0.510</p></td><td class="cell"><p>round, p</p></td><td class="cell"><p>181/82</p></td><td class="cell"><p>7</p></td><td class="cell"><p>0.378</p></td><td class="cell"><p>0.512</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>through, p</p></td><td class="cell"><p>440/208</p></td><td class="cell"><p>15</p></td><td class="cell"><p>0.495</p></td><td class="cell"><p>0.538</p></td><td class="cell"><p>to.p</p></td><td class="cell"><p>1182/572</p></td><td class="cell"><p>10</p></td><td class="cell"><p>0.322</p></td><td class="cell"><p>0.579</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>towards, p</p></td><td class="cell"><p>214/102</p></td><td class="cell"><p>4</p></td><td class="cell"><p>0.873</p></td><td class="cell"><p>0.873</p></td><td class="cell"><p>with.p</p></td><td class="cell"><p>1187/578</p></td><td class="cell"><p>15</p></td><td class="cell"><p>0.249</p></td><td class="cell"><p>0.455</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>AVG</p></td><td class="cell"><p>486.3/238.1</p></td><td class="cell"><p>7.4</p></td><td class="cell"><p>0.397</p></td><td class="cell"><p>0.547</p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p></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><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table></section><references><p>Thorsten Brants and Alex Franz. 2006. Web 1T 5-gram version 1. Linguistic Data Consortium, Philadelphia. LDC2006T13.</p><p>Stanley F. Chen and Joshua Goodman. 1996. Anempir-ical study of smoothing techniques for language mod­eling. In <i>Proceedings of the 34th Annual Meeting of the ACL.</i></p><p>Christiane Fellbaum, editor. 1998. <i>Wordnet: An Elec­tronic Lexical Database. </i>MIT Press.</p><p>Cristian Grozea. 2004. Finding optimal parameter set­tings for high performance word sense disambigua­tion. In <i>Proceedings ofSenseval-3: The Third Inter­national Workshop on the Evaluation ofSystems for the Semantic Analysis ofText.</i></p><p>Eduard H. Hovy, M. Marcus, M. Palmer, S. Pradhan, L. Ramshaw, and R. Weischedel. 2006. Ontonotes: The 90% solution. In <i>Proceedings ofthe Human Lan­guage Technology / North American Association of Computational Linguistics conference (HLT-NAACL 2006), </i>New York, NY. Short paper.</p><p>Claudia Leacock, Martin Chodorow, and George A. Miller. 1998. Using corpus statistics and wordnet relations for sense identification. <i>Computational Lin­guistics, </i>24(1):147-166, March.</p><p>Ken Litkowski and Orin Hargraves. 2007. SemEval-2007 Task 06: Word sense disambiguation ofpreposi-tions. In <i>SemEval-2007: 4th International Workshop on Semantic Evaluations.</i></p><doubt alpha="64.2" length="53" tooSmall="False" monospace="0.0">K. C. Litkowski.   2005.  The preposition project. In</doubt><p><i>Proceedings ofthe SecondACL-SIGSEMWorkshopon The Linguistic Dimensions ofPrepositions and their Use in Computational Linguistics Formalisms and Ap­plications, </i>Colchester, England, April. University of Essex.</p><p>David Martinez, Eneko Agirre, and Xinglong Wang.</p><p>2006. Word relatives in context for word sense dis­ambiguation. In <i>Proceedings ofthe 2006 Australasian Language Technology Workshop (ALTW 2006), </i>pages 42-50.</p><p>Diana McCarthy and Roberto Navigli. 2007. Semeval-2007 Task 10: English lexical substitution task. In <i>SemEval-2007:</i><i> 4th International Workshop on Se­mantic Evaluations.</i></p><p>Rada Mihalcea, Timothy Chklovski, and Adam Kilgar-riff. 2004. The Senseval-3 English lexical sample task. In <i>Proceedings ofSenseval-3: The Third Inter­national Workshop on the Evaluation ofSystems for the Semantic Analysis ofText.</i></p><p>Rada Mihalcea. 2002. Bootstrapping large sense tagged corpora. In <i>Proceedings of the 3rd International Conference on Languages Resources and Evaluations</i> <i>LREC 2002, </i>Las Palmas, Spain, May.</p><p>Martha Palmer, Sameer Pradhan, and Edward Loper.</p><p>2007. SemEval-2007 Task 17: English lexical sample, English SRL and English all-words tasks. In <i>SemEval-2007: 4th International Workshopon Semantic Evalu­ations.</i></p><p>Claude Elwood Shannon. 1951. Prediction and entropy ofprinted English. <i>The Bell System Technical Journal,</i> 30:50-64.</p><p>Thesaurus.com. 2007. <i>Roget's New</i> <i>Millennium™ Thesaurus, First Edition (v 1.</i><i>3.1). </i>Lexico   Publishing   Group, LLC.</p><p>http://thesaurus.reference.com.</p><p>David Yarowsky and Radu Florian. 2002. Evaluating sense disambiguation across diverse parameter spaces.</p><p><i>Natural Language Engineering, </i>8(4):293-310.</p><p>Deniz Yuret.   2004.   Some experiments with a Naive</p><p>Bayes WSD system. In <i>ACL 2004 Senseval-3 Work­shop, </i>Barcelona, Spain, July.</p><doubt alpha="12.5" length="8" tooSmall="False" monospace="0.0">-1)—n+1)</doubt><page local="8" global="214"/><p><b>English Lexical Sample WSD</b></p><p>Table 2: English Lexical Sample and Preposition WSD Results: lexelt is the lexical item, trn/tst is the number of training and testing instances, s is the number of senses in the training set, mfs is the most frequent sense baseline, and acc is the final accuracy.</p></references><appendix title="Appendix"><p>The Web 1T 5-gram dataset (Brants and Franz, 2006) that was used to build a language model for this work consists of the counts of word sequences up to length 5 in a 10<footnote anchor="12"/> word corpus derived from the Web. The data consists of mostly English words that have been tokenized and sentence tagged. Tokens that appear less than 200 times and ngrams that appear less than 40 times have been filtered out.<page local="7" global="213"/></p><p>I used a smoothing method loosely based on the <i>one-count </i>method given in (Chen and Goodman, 1996). Because ngrams with low counts are not in­cluded in the data I used ngrams with missing counts instead of ngrams with one counts. The missing count is defined as:</p><doubt alpha="60.0" length="5" tooSmall="False" monospace="0.0">m(w%i</doubt><doubt alpha="30.0" length="10" tooSmall="False" monospace="0.0">i—1)i—n+1)</doubt><doubt alpha="33.3" length="6" tooSmall="False" monospace="0.0">i—n+1)</doubt><doubt alpha="100.0" length="2" tooSmall="True" monospace="0.0">Wi</doubt><p>where <i>w\—</i>n+1 indicates the n-word sequence end­ing with <i>wi, </i>and <i>c(w\—</i>n+1 ) is the count of this se­quence. The corresponding smoothing formula is:</p><doubt alpha="41.7" length="12" tooSmall="False" monospace="0.0">p \wii—n+1)=</doubt><doubt alpha="42.9" length="21" tooSmall="False" monospace="0.0">c(wj—n+1)+(1+an)m(wi:</doubt><doubt alpha="45.5" length="11" tooSmall="False" monospace="0.0">-1)p(wi\wi—</doubt><doubt alpha="50.0" length="4" tooSmall="False" monospace="0.0">c( w</doubt><doubt alpha="0.0" length="1" tooSmall="False" monospace="0.0">1</doubt><p>i—n+1.</p><doubt alpha="57.1" length="7" tooSmall="False" monospace="0.0">+ anm(w</doubt><footnote label="1">)</footnote><doubt alpha="33.3" length="6" tooSmall="False" monospace="0.0">i— n+1</doubt><p>The parameters <i>an &gt; </i><i>0 </i>for n = 2 ... 5 was opti­mized on the Brown corpus to yield a cross entropy of 8.06 bits per token. The optimized parameters are given below:</p><doubt alpha="50.0" length="2" tooSmall="False" monospace="0.0">a2</doubt><doubt alpha="10.7" length="28" tooSmall="False" monospace="0.0">6.71,a3=5.94,a4=6.55,a5=5.71</doubt></appendix></body></article>