<?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="371"/><title>PengYuan</title><pubinfo>Proceedings of the 5th International Workshop on Semantic Evaluation, ACL 2010,pages 371-374, Uppsala, Sweden, 15-16 July 2010. ©2010 Association for Computational Linguistics</pubinfo><author surname="Liu" givenname="Peng-Yuan"><org  name="Harbin Institute of Technology" country="China" city="Harbin"/></author><author surname="Liu" givenname="Shui"><org  name="Harbin Institute of Technology" country="China" city="Harbin"/></author><author surname="Yu" givenname="Shi-Wen"><org  name="Peking University" country="China" city="Beijing"/></author><author surname="Zhao" givenname="Tie-Jun"><org  name="Harbin Institute of Technology" country="China" city="Harbin"/></author></firstpageheader><frontmatter><p><b>PengYuan@PKU: Extracting Infrequent Sense Instance with the Same N-gram Pattern for the SemEval-2010 Task 15</b></p><p><b>Peng-Yuan Liu<footnote anchor="1"/> Shui Liu<footnote anchor="2"/> Shi-Wen Yu<footnote anchor="1"/> Tie-Jun Zhao<footnote anchor="2"/></b></p><p><footnote anchor="1"/>Institute of Computational Linguistics, Peking University, Beijing, China <footnote anchor="2"/>Department of Computer Science, Harbin Institute of Technology, Harbin, China</p><p>{liupengyuan,yusw}@pku.edu.cn,{tjzhao,liushui}@mtlab.hit.edu.cn</p></frontmatter><abstract>This paper describes our infrequent sense identification system participating in the SemEval-2010 task 15 on Infrequent Sense Identification for Mandarin Text to Speech Systems. The core system is a supervised system based on the ensembles of Naïve Bayesian classifiers. In order to solve the problem of unbalanced sense distribution, we intentionally extract only instances of infrequent sense with the same N-gram pattern as the complemental training data from an untagged Chinese corpus - People's Daily of the year 2001. At the same time, we adjusted the prior probability to adapt to the distribution of the test data and tuned the smoothness coefficient to take the data sparseness into account. Official result shows that, our system ranked the first with the best Macro Accuracy 0.952. We briefly describe this system, its configuration options and the features used for this task and present some discussion of the results. </abstract></header><body><section number="1" title="Introduction"><p>We participated in the SemEval-2010 task 15 on Infrequent Sense Identification for Mandarin Text to Speech Systems. This task required systems to disambiguating the homograph word, a word that has the same POS (part of speech) but different pronunciation. In this case, we still considered it as a WSD (word sense disambiguation) problem, but it is a little different from WSD. In this task, two or more senses of the same word may correspond to one pronunciation. That is, the sense granularity is coarser than traditional WSD.</p><p>The challenge of this task is the much skewed distribution in real text: the most frequent pronunciation accounts for usually over 80%. In fact, in the training data provided by the organizer , we found that the sense distribution of some words are distinctly unbalanced. For each of these words, there are fewer than ten instances of one sense whereas the dominant sense instances are hundreds or more. At the same time, according to the task description on the task 15 of SemEval-2010(http://semeval2.fbk.eu/semeval2.php?locati<u> on=tasks</u>), the test dataset of this task is intentionally divided into the infrequent pronunciation instances and the frequent ones by half and half. Apparently, if we use traditional methods and only the provided training dataset to train whatever classifier, it is very likely that we will get an disambiguation result that all (at least the overwhelming number) the test instances of these words would be labeled with the most frequent pronunciation (sense) tag. Then our system is meaningless for the target of the task is focused on the performance of identifying the infrequent sense.</p><p>In order to solve the problem of <b>tie </b>unbalanced sense distribution in the training data and the fairly balanced sense distribution in the test data, we designed our PengYuan@PKU system, which attempts to extract infrequent sense instances only and adjust the prior probability so as to counteract the problem as far as possible. The core system is a supervised system based on the ensembles of Naïve Bayesian classifiers. The complemental training data is extracted from an untagged Chinese corpus - People's Daily of the year 2001 automatically. Besides the motivation of investigating the function of our method of compensating infrequent sense instances, we are also interested in the role where the smoothness plays when it encounters with such a data sparseness here.</p><p>In section 2, we will describe our system that includes the core classifier, its configuration options and features. In section 3, we will show the official results of this task and present some analyses and discussions. Section 4 is related works.<page local="2" global="372"/> The conclusion and future work are in section 5.</p><p><b>2    System Description 2.1    Naïve Bayesian Classifier and Features</b></p><p>For a naïve Bayesian classifier, the joint probability of observing a certain combination of context features with a particular sense is expressed as:</p><doubt alpha="37.5" length="32" tooSmall="False" monospace="0.0">p(F1,F2,...,Fn,S)= p(S)Y\p(F |S)</doubt><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">(1)</doubt><p>In equation (1), <i>(F1, </i>F2,..., Fn) is feature variables, <i>S </i>is classification variable and <i>p(S) </i>is the prior probability of classification variable. Any parameter that has a value of zero indicates that the associated word never occurs with the specified sense value. These zero values are smoothed by additive smoothing method as expressed below: </p><doubt alpha="50.0" length="10" tooSmall="False" monospace="0.0">PiFAS,, )-</doubt><doubt alpha="28.6" length="7" tooSmall="False" monospace="0.0">AG(0,1)</doubt><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">(2)</doubt><doubt alpha="27.3" length="11" tooSmall="False" monospace="0.0">C (S, ) + N</doubt><p>In equation (2), A is the smoothness variable. <i>C(S,) </i>is the times of instances with <i>S, </i>label. <i>C(F,,S,) </i>is the concurrences times of <i>F, </i>and <i>S,. N </i>is the times of total words in the corpus.</p><p>The features and their weights of context used in one single Naïve Bayesian classifier are described in Table 1.</p><p><b><u>Features</u></b></p><doubt alpha="100.0" length="7" tooSmall="False" monospace="0.0">weights</doubt><p>Table 1 : Features and their weights used in one Naïve Bayesian classifier <b>Ensembles Classifiers</b> <b>Naïve Bayesian</b></p><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">2.2</doubt><doubt alpha="100.0" length="3" tooSmall="False" monospace="0.0">the</doubt><p>The ensemble strategy of our system is like Pederson (2000). The windows of context have seven different sizes (i): 3, 5, 7, 9, 11, 13 and 15 words. The first step in the ensemble approach is to train a separate Naïve Bayesian classifier for each of the seven window sizes.</p><p>Each of the seven member classifiers votes for the most probable sense given the particular context represented by that classifier; the ensemble disambiguates by assigning the sense that receives the majority of the votes.</p><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">2.3</doubt><p><b>Infrequent Sense Instances Acquisition</b></p><p>Table 3: The sense distributions of the training data before and after the extracting stage Our system uses a special heuristic rule to extract the sense labeled infrequent sense instances automatically. The heuristic rule assumes that <i>one sense per N-gram </i>which we testified initially through investigating a Chinese sense-tagged corpus STC (Wu et al., 2006). Our assumption is inspired by the celebrated <i>one sense per collocation </i>supposition (Yarowsky, 1993). STC is an ongoing project of building a sense-tagged corpus which contained the sense-tagged 1, 2 and 3 months of People's Daily of the year 2000.<page local="3" global="373"/> According to our investigation, to any target multi-sense word, given a specific N-gram (N&gt;1) including the target word, we will expect to see the same label that range from 88.6% to 99.2% of the time on average. So, based on the training data, we can extract instance with the same N -gram pattern from the untagged Chinese corpus and we assume if the N-gram is the same then the sense-label is the same.</p><footnote label="1">We intentionally control the sense distribution of word ("If") and change it from approximately 2.5:1 to 1:2 so as to investigate the influence.</footnote><doubt alpha="36.4" length="11" tooSmall="False" monospace="0.0">C(F,,Sk) +1</doubt><table caption="Table 2: The overview of the training data before and after the extracting stage" 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><b>N-gram</b></p></td><td class="cell"><p><b>Increasing Instances Number</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>(-1,1)</p></td><td class="cell"><p>246</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3-gram</p></td><td class="cell"><p>(-2,0)</p></td><td class="cell"><p>229</p></td><td class="cell"><p>1026(9135)</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>(0,2)</p></td><td class="cell"><p>551</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2-gram</p></td><td class="cell"><p>(-1,0)</p><p>(0,1)</p></td><td class="cell"><p>1123 1844</p></td><td class="cell"><p>2967(9135)</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><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Target Words</b></p></td><td class="cell"><p><b>Sense Distribution</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Before (O)</b></p></td><td class="cell"><p><b>After</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>(O+E3)</b></p></td><td class="cell"><p><b>(O+E2)</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>128</p></td><td class="cell"><p>51</p></td><td class="cell"><p>128</p></td><td class="cell"><p>66</p></td><td class="cell"><p>128</p></td><td class="cell"><p>262<footnote anchor="1"/></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>503</p></td><td class="cell"><p>83</p></td><td class="cell"><p>503</p></td><td class="cell"><p>83</p></td><td class="cell"><p>503</p></td><td class="cell"><p>194</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>WM</i></p></td><td class="cell"><p>168</p></td><td class="cell"><p>13</p></td><td class="cell"><p>168</p></td><td class="cell"><p>16</p></td><td class="cell"><p>168</p></td><td class="cell"><p>23</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>175</p></td><td class="cell"><p>10</p></td><td class="cell"><p>175</p></td><td class="cell"><p>27</p></td><td class="cell"><p>175</p></td><td class="cell"><p>88</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>487</p></td><td class="cell"><p>42</p></td><td class="cell"><p>487</p></td><td class="cell"><p>63</p></td><td class="cell"><p>487</p></td><td class="cell"><p>267</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>134</p></td><td class="cell"><p>44</p></td><td class="cell"><p>134</p></td><td class="cell"><p>44</p></td><td class="cell"><p>134</p></td><td class="cell"><p>49</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>125</p></td><td class="cell"><p>11</p></td><td class="cell"><p>125</p></td><td class="cell"><p>11</p></td><td class="cell"><p>125</p></td><td class="cell"><p>12</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>2020</p></td><td class="cell"><p>8</p></td><td class="cell"><p>2020</p></td><td class="cell"><p>12</p></td><td class="cell"><p>2020</p></td><td class="cell"><p>25</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>300</p></td><td class="cell"><p>3</p></td><td class="cell"><p>300</p></td><td class="cell"><p>6</p></td><td class="cell"><p>300</p></td><td class="cell"><p>32</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>268</p></td><td class="cell"><p>3</p></td><td class="cell"><p>268</p></td><td class="cell"><p>4</p></td><td class="cell"><p>268</p></td><td class="cell"><p>45</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>±</b></p></td><td class="cell"><p>1625</p></td><td class="cell"><p>41</p></td><td class="cell"><p>1625</p></td><td class="cell"><p>346</p></td><td class="cell"><p>1625</p></td><td class="cell"><p>1625</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>144</p></td><td class="cell"><p>13</p></td><td class="cell"><p>144</p></td><td class="cell"><p>15</p></td><td class="cell"><p>144</p></td><td class="cell"><p>33</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>136</p></td><td class="cell"><p>8</p></td><td class="cell"><p>136</p></td><td class="cell"><p>9</p></td><td class="cell"><p>136</p></td><td class="cell"><p>16</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>1666</p></td><td class="cell"><p>253</p></td><td class="cell"><p>1666</p></td><td class="cell"><p>847</p></td><td class="cell"><p>1666</p></td><td class="cell"><p>1567</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>m</i></p></td><td class="cell"><p>142</p></td><td class="cell"><p>17</p></td><td class="cell"><p>142</p></td><td class="cell"><p>17</p></td><td class="cell"><p>142</p></td><td class="cell"><p>17</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>m</i></p></td><td class="cell"><p>438</p></td><td class="cell"><p>76</p></td><td class="cell"><p>438</p></td><td class="cell"><p>136</p></td><td class="cell"><p>438</p></td><td class="cell"><p>414</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></tr></table><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>Content words appearing within the window of ± <i>i </i>1 words on each side of the target word</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>wj/j</i></p><p>/G[-3,3]</p></td><td class="cell"><p>Word forms and their</p><p>position information of the 3</p><p>words at fixed positions</p><p>from the target word.</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>W</i><i>k-i</i><i>Wk</i></p></td><td class="cell"><p>1 when</p><p>word bigrams appearing       &gt; i within the window of ± <i>i </i>3</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>Pk-1Pk</i></p><p>kG(-i,i]</p></td><td class="cell"><p>POS bigrams appearing 1 within the window of ± <i>i</i></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></tr></table><p>For all the 16 multiple-sense target words in the training data of task 15, we found the N-gram of infrequence sense instances and extracted<footnote anchor="2"/> the instances with the same N-gram from People's Daily of the year 2001(about 116M bytes). We extracted as many as possible until the total number of them is equal to the dominant sense instance number. We appointed the same N-gram instances the same sense tag and (merge?) it into the original training corpus. Table 2 and 3 show the overview and the sense distribution of the training data before and after the extracting stage. Number 9135 in brackets of Table 2 is the instance number of original training corpus. O, O+E3, O+E2 in Table 3 mean original training data, original training data plus extracted 3-gram instances and original training data plus extracted 2-gram instances respectively. Limited to the scale of the corpus, the unbalance sense distribution of some words does not improve much.</p><subsection number="2.4" title="Other Configuration Options"><p>Table 4: The system configuration To formula (1), we tune the prior probability of classification variable <i>p(S) </i>as a constant to match the sense distribution of test data. Considering the data sparseness as there may have been in the test stage, to formula (2), we set 2 kinds of A to investigate the effect of smoothness.</p><p>In total, we develop four systems based on various configuration options. They are showed in Table 4.</p><footnote label="2">In order to guarantee the extracted instances are not duplicated in the training data or in the test data in case, our system filters the repeated instances automatically if they are already in the original training or test dataset.</footnote></subsection></section><section number="3" title="Results and Discussions"><subsection number="3.1" title="Official Results"><p>Table 6: Official results 2 of PengYuan@PKU Macro Accuracy is the average disambiguation precision of each target word. Micro Accuracy is the disambiguation precision of total instances of all words. For task 15 whose instance distribution of the target words is very unbalanced in the test dataset, Macro Accuracy maybe a better evaluation indicator. Our systems achieved from 1st to 4th position (ranked by Macro Accuracy) out of all nine systems that participated in this task. Our best system is PengYuan@PKU_3.001 which uses original training data plus extracted 3-gram instances as our training data, <i>P(S) </i>is tuned to 0.5 and A is equal to 0.001.</p></subsection><subsection number="3.2" title="Discussions"><p>From the official result in Table 5 and Table 6 we can see, for this task, our classifier and strategy of extracting infrequency instances is effective. Basically, for each target word, the performances of our systems are superior to the baseline.<page local="4" global="374"/></p><table caption="Table 5: Official results 1 of PengYuan@PKU" 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><b>System</b></p></td><td class="cell"><p><b>Micro</b></p></td><td class="cell"><p><b>Macro</b></p></td><td class="cell"><p><b>Rank</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>ID</b></p></td><td class="cell"><p><b>Accuracy Accuracy</b></p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3.001</p></td><td class="cell"><p>0.974</p></td><td class="cell"><p>0.952</p></td><td class="cell"><p>1/9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3.1</p></td><td class="cell"><p>0.965</p></td><td class="cell"><p>0.942</p></td><td class="cell"><p>2/9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2.001</p></td><td class="cell"><p>0.965</p></td><td class="cell"><p>0.941</p></td><td class="cell"><p>3/9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>_2.1</p></td><td class="cell"><p>0.965</p></td><td class="cell"><p>0.942</p></td><td class="cell"><p>2/9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Baseline</p></td><td class="cell"><p>0.924</p></td><td class="cell"><p>0.895</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></tr></table><table class="main" frame="box" rules="all" border="0" 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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Words</b></p></td><td class="cell"><p><b>Precision</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>3.001</b></p></td><td class="cell"><p><b>3.1</b></p></td><td class="cell"><p><b>2.001</b></p></td><td class="cell"><p><b>2.1</b></p></td><td class="cell"><p><b>baseline</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.844</b></p></td><td class="cell"><p>0.789</p></td><td class="cell"><p>0.789</p></td><td class="cell"><p>0.789</p></td><td class="cell"><p>0.711</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.976</b></p></td><td class="cell"><p>0.962</p></td><td class="cell"><p>0.969</p></td><td class="cell"><p>0.962</p></td><td class="cell"><p>0.863</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.901</b></p></td><td class="cell"><p><b>0.901</b></p></td><td class="cell"><p><b>0.901</b></p></td><td class="cell"><p><b>0.901</b></p></td><td class="cell"><p>0.901</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>0.978</p></td><td class="cell"><p><b>0.989</b></p></td><td class="cell"><p>0.978</p></td><td class="cell"><p><b>0.989</b></p></td><td class="cell"><p>0.957</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.925</b></p></td><td class="cell"><p>0.853</p></td><td class="cell"><p>0.864</p></td><td class="cell"><p>0.853</p></td><td class="cell"><p>0.925</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.956</b></p></td><td class="cell"><p>0.944</p></td><td class="cell"><p><b>0.956</b></p></td><td class="cell"><p>0.944</p></td><td class="cell"><p>0.700</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.971</b></p></td><td class="cell"><p>0.956</p></td><td class="cell"><p>0.956</p></td><td class="cell"><p>0.956</p></td><td class="cell"><p>0.956</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p><b>0.998</b></p></td><td class="cell"><p>0.997</p></td><td class="cell"><p>0.997</p></td><td class="cell"><p>0.997</p></td><td class="cell"><p>0.996</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>#k</b></p></td><td class="cell"><p><b>0.987</b></p></td><td class="cell"><p>0.974</p></td><td class="cell"><p>0.974</p></td><td class="cell"><p>0.974</p></td><td class="cell"><p>0.987</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>0.956</p></td><td class="cell"><p>0.963</p></td><td class="cell"><p><b>0.971</b></p></td><td class="cell"><p>0.963</p></td><td class="cell"><p>0.956</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>±</b></p></td><td class="cell"><p><b>0.983</b></p></td><td class="cell"><p>0.975</p></td><td class="cell"><p>0.969</p></td><td class="cell"><p>0.975</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><b>%</b></p></td><td class="cell"><p>0.924</p></td><td class="cell"><p><b>0.949</b></p></td><td class="cell"><p>0.937</p></td><td class="cell"><p><b>0.949</b></p></td><td class="cell"><p>0.886</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>5HJH</b></p></td><td class="cell"><p><b>0.986</b></p></td><td class="cell"><p><b>0.986</b></p></td><td class="cell"><p><b>0.986</b></p></td><td class="cell"><p><b>0.986</b></p></td><td class="cell"><p>0.959</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>W</b></p></td><td class="cell"><p>0.986</p></td><td class="cell"><p><b>0.989</b></p></td><td class="cell"><p><b>0.989</b></p></td><td class="cell"><p><b>0.989</b></p></td><td class="cell"><p>0.869</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>m</i></p></td><td class="cell"><p>0.875</p></td><td class="cell"><p><b>0.900</b></p></td><td class="cell"><p>0.875</p></td><td class="cell"><p><b>0.900</b></p></td><td class="cell"><p>0.838</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><i>m</i></p></td><td class="cell"><p><b>0.981</b></p></td><td class="cell"><p>0.946</p></td><td class="cell"><p>0.953</p></td><td class="cell"><p>0.946</p></td><td class="cell"><p>0.844</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></tr></table><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Systems</b></p></td><td class="cell"><p><b>Training Data </b><i>p(S) A</i></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3.001 3.1 2.001 2.1</p></td><td class="cell"><p>O+E3        0.5 0.001 O+E3        0.5 0.1 O+E2        0.5 0.001 O+E2        0.5 0.1</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></tr></table><p>From Table 6, we also see the performances of our systems are influenced by different A and different instance extracting patterns. Comparatively smaller probability A of nonoccurrence features is better. Using the Extracting 3-gram instances is better than that of using 2-gram. (By using the 3-gram method of extracting instances, we obtain a better result than that of 2-gram.)</p><p>Our original idea for the system is two-folds. On one hand, we consider the relieving of data sparseness through more instances extracted by 2-gram pattern can achieve a better performance than that of 3-gram pattern, though the instances extracted through 2-gram pattern induce more noise. On the other hand, we assume that the performance would be better if we had given a larger probability of nonoccurrence features, for this strategy favors more infrequent sense instances. However the unbalance of sense distribution in the real test data as is shown in Table 5 went beyond our expectation. It is very hard for us to evaluate our system from the viewpoint of smoothness and instance sense distribution.</p></subsection></section><section number="4" title="Related Work"><p>To our knowledge, the methods of auto-acquiring sense-labeled instances include using parallel corpora like Gale et al. (1992) and Ng et al. (2003), extracting by monosemous relative of WordNet like Leacock et al. (1998), Mihalcea and Moldovan (1999), Agirre and Martinez (2004), Martinez et al. (2006) and PengYuan et al. (2008). The method proposed by Mihalcea and Moldovan (2000) is also an effective way.</p></section><section number="5" title="Conclusion and Future Work"><p>We participated in the SemEval-2010 task 15 on Infrequent Sense Identification for Mandarin Text to Speech Systems. Official results show our system which extract infrequent sense instances is effective.</p><p>For the future studies, we will focus on how to identify the infrequent sense instances effectively based on the plan to change the proposition between dominant sense and infrequent sense step by step.</p></section><section title="Acknowledgments"><p>This work was supported by the project of National Natural Science Foundation of China</p><doubt alpha="65.9" length="44" tooSmall="False" monospace="0.0">(No.60903063) and China Postdoctoral Science</doubt><p>Foundation funded project (No.20090450007).</p></section><references><p>Claudia Leacock, Martin Chodorow and George A. Miller, Using Corpus Statistics and WordNet Relations for Sense Identification. <i>Computational Linguistics, </i>1998, 24(1):147~166</p><p>David Mart'inez, Eneko Agirre and Xinglong Wang. Word relatives in context for word sense disambiguation. <i>Proceedings of the 2006 Australasian Language Technology Workshop (ALTW2006), </i>2006:42~50</p><p>David Yarowsky. 1993. One sense per collocation.</p><p><i>Proceedings of the ARPA Workshop on Human Language Technology.</i></p><p>Eneko Agirre and David Mart' inez. Unsupervised WSD based on automatically retrieved examples: The importance of bias. <i>Proceedings of the International Conference on Empirical Methods in Natural Language Processing, EMNLP, </i>2004:25~32</p><p>Hwee Tou Ng, Bin Wang, Yee Seng Chan. Exploiting Parallel Texts for Word Sense Disambiguation: An Empirical Study. <i>Proceeding of the 41st ACL, </i>455­462, Sappora, Japan.</p><p>Liu Peng-yuan Zhao Tie-jun Yang Mu-yun Li Zhuang. 2008. Unsupervised Translation Disambiguation Based on Equivalent PseudoTranslation Model.</p><p><i>Journal of Electronics &amp; Information Technology.</i></p><p>30(7):1690-1695.</p><p>Rada Mihalcea and Dan I. Moldovan. 1999. An automatic method for generating sense tagged corpora. <i>Proceedings of AAAI-99, </i>Orlando, FL, July, pages 461-466.</p><p>Rada Mihalcea and Dan .I. Moldovan. 2000. An iterative approach to word sense disambiguation.</p><p><i>Proceedings of FLAIRS-2000, </i>pages 219-223, Orlando, FL, May.</p><p>Ted. Pedersen. 2000. A Simple Approach to Building Ensembles of Naïve Bayesian Classifiers for Word Sense Disambiguation. <i>Proceedings of the First Annual Meeting of the North American Chapter of the Association for Computational Linguistics,</i> pages 63-69, Seattle, WA, May.</p><p>Yunfang Wu, Peng Jin, Yangsen Zhang, and Shiwen Yu. 2006. A Chinese corpus with word sense annotation. <i>Proceedings of ICCPOL-2006.</i></p><p>William A. Gale, Kenneth W. Church and David Yarowsky. A method for disambiguating word senses in a large corpus. <i>Computers and the Humanities, </i>26(2):415-539</p></references></body></article>