<?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="308"/><title>SWAT-MP:The SemEval-2007 Systems for Task 5 and Task 14</title><pubinfo>Proceedings of the 4th International Workshop on Semantic Evaluations (SemEval-2007),pages 308-313, Prague, June 2007. ©2007 Association for Computational Linguistics</pubinfo><author surname="Katz" givenname="Phil"><org  name="Swarthmore College" country="USA" city="Swarthmore"/></author><author surname="Singleton" givenname="Matt"><org  name="Swarthmore College" country="USA" city="Swarthmore"/></author><author surname="Wicentowski" givenname="Richard"><org  name="Swarthmore College" country="USA" city="Swarthmore"/></author></firstpageheader><frontmatter><p><b>SWAT-MP: The SemEval-2007 Systems for Task 5 and Task 14</b></p><p><b>Phil Katz, Matthew Singleton, Richard Wicentowski</b></p><p>Department of Computer Science Swarthmore College Swarthmore, PA {katz,msingle1,richardw}@cs.swarthmore.edu</p></frontmatter><abstract>In this paper, we describe our two SemEval-2007 entries. Our first entry, for Task 5: Multilingual Chinese-English Lexical Sam­ple Task, is a supervised system that decides the most appropriate English translation of a Chinese target word. This system uses a combination of Naïve Bayes, nearest neigh­bor cosine, decision lists, and latent seman­tic analysis. Our second entry, for Task 14: Affective Text, is a supervised system that annotates headlines using a predefined list of emotions. This system uses synonym expan­sion and matches lemmatized unigrams in the test headlines against a corpus of hand­annotated headlines. </abstract></header><body><section number="1" title="Introduction"><p>This paper describes our two entries in SemEval-2007. The first entry, a supervised system used in the Multilingual Chinese-English Lexical Sample task (Task 5), is an extension of the system described in (Wicentowski et al., 2004). We implement five dif­ferent classifiers: a Naïve Bayes classifier, a decision list classifier, two different nearest neighbor cosine classifiers, and a classifier based on Latent Seman­tic Analysis. Section 2.2 describes each of the in­dividual classifiers, Section 2.3 describes our clas­sifier combination system, and Section 2.4 presents our results.</p><p>The second entry, a supervised system used in the Affective Text task (Task 14), uses a corpus ofhead-lines hand-annotated by non-experts. It also uses an online thesaurus to match synonyms and antonyms of the sense labels (Thesaurus.com, 2007). Section 3.1 describes the creation of the annotated training corpus, Section 3.2 describes our method for assign­ing scores to the headlines, and Section 3.3 presents our results.</p></section><section number="2" title="Task 5: Multilingual Chinese-English LS"><p>This task presents a single Chinese word in context which must be disambiguated. Rather than asking participants to provide a sense label corresponding to a pre-defined sense inventory, the goal here is to label each ambiguous word with its correct English translation. Since the task is quite similar to more traditional lexical sample tasks, we extend an ap­proach used successfully in multiple Senseval-3 lex­ical sample tasks (Wicentowski et al., 2004).</p><subsection number="2.1" title="Features"><p>Each of our classifiers uses the same set of context features, taken directly from the data provided by the task organizers. The features we used included:</p><p>• Bag-of-words (unigrams)</p><p>• Bigrams and trigrams around the target word</p><p>• Weighted unigrams surrounding the target word</p><p>The weighted unigram features increased the fre­quencies of the ten words before and after the tar­get word by inserting them multiple times into the bag-of-words.</p><page local="2" global="309"/><p>Many words in the Chinese data were broken up into "subwords": since we were unsure how to han­dle these and since their appearance seemed incon­sistent, we decided to simply treat each subword as a word for the purposes of creating bigrams, trigrams, and weighted unigrams.</p></subsection><subsection number="2.2" title="Classifiers"><p>Our system consists of five unique classifiers. Three of the classifiers were selected by our combination system, while the other two were found to be detri­mental to its performance. We describe the con­tributing classifiers first. Table 1 shows the results of each classifier, as well as our classifier combina­tion system.</p><subsubsection number="2.2.1" title="Naïve Bayes"><p>The Naïve Bayes classifier is based on Bayes' the­orem, which allows us to define the similarity be­tween an instance, /, and a sense class, Sj, as:</p><doubt alpha="50.0" length="40" tooSmall="False" monospace="0.0">Sim(I, Sj) =Pr(I, Sj) =Pr(Sj) * Pr(I|Sj)</doubt><p>We then choose the sense with the maximum sim­ilarity to the test instance.</p><p><b>Additive Smoothing</b></p><p>Additive smoothing is a technique that is used to attempt to improve the information gained from low-frequency words, in tasks such as speech pat­tern recognition (Chen and Goodman, 1998). We used additive smoothing in the Naïve Bayes classi­fier. To implement additive smoothing, we added a very small number, 6, to the frequency count of each feature (and divided the final product by this 6 value times the size of the feature set to maintain accurate probabilities). This small number has almost no ef­fect on more frequent words, but boosts the score of less common, yet potentially equally informative, words.</p></subsubsection><subsubsection number="2.2.2" title="Decision List"><p>The decision list classifier uses the log-likelihood of correspondence between each context feature and each sense, using additive smoothing (Yarowsky, 1994). The decision list was created by ordering the correspondences from strongest to weakest. In­stances that did not match any rule in the decision list were assigned the most frequent sense, as calcu­lated from the training data.</p></subsubsection><subsubsection number="2.2.3" title="Nearest Neighbor Cosine"><p>The nearest neighbor cosine classifier required the creation of a <i>term-document matrix, </i>which contains a row for each training instance of an ambiguous word, and a column for each feature that can occur in the context of an ambiguous word. The rows of this matrix are referred to as <i>sense vectors </i>because each row represents a combination of the features of all ambiguous words that share the same sense.</p><p>The nearest neighbor cosine classifier compares each of the training vectors to each ambiguous in­stance vector. The cosine between the ambiguous vector and each of the sense vectors is calculated, and the sense that is the "nearest" (largest cosine, or smallest angle) is selected by the classifier.</p><doubt alpha="83.3" length="6" tooSmall="False" monospace="0.0">TF-IDF</doubt><p>TF-IDF (Term Frequency-Inverse Document Fre­quency) is a method for automatically adjusting the frequency of words based on their semantic impor­tance to a document in a corpus. TF-IDF decreases the value of words that occur in more different doc­uments. The equation we used for TF-IDF is:</p><p>tf <i>■ulft</i><i> </i>= <i>nt</i><i> </i><i>■</i><i> </i>log (</p><p>where n is the number of occurrences of a term t^, and <i>D </i>is the set of all training documents.</p><p>TF-IDF is used in an attempt to minimize the noise from words such as <i>"and" </i>that are extremely common, but, since they are common across all training instances, carry little semantic content.</p></subsubsection><subsubsection number="2.2.4" title="Non-contributing Classifiers"><p>We implemented a classifier based on Latent Se­mantic Analysis (Landauer et al., 1998). To do the calculations required for LSA, we used the SVDLIBC library<footnote anchor="1"/>. Because this classifier actu­ally weakened our combination system (in cross-validation), our classifier combination (Section 2.3) does not include it.</p><p>We also implemented a ^-Nearest Neighbors clas­sifier, which treats each individual training instance as a separate vector (instead of treating each set of training instances that makes up a given sense as a single vector), and finds the ^-nearest training in­stances to the test instance.<page local="3" global="310"/> The most frequent sense among the ^-nearest to the test instance is the se­lected sense. Unfortunately, the <i>k-NN </i>classifier did not improve the results of our combined system and so it is not included in our classifier combination.</p><footnote label="1">http://tedlab.mit.edu/~dr/SVDLIBC/</footnote></subsubsection></subsection><subsection number="2.3" title="Classifier Combination"><p>The classifier combination algorithm that we imple­ment is based on a simple voting system. Each clas­sifier returns a score for each sense: the Naïve Bayes classifier returns a probability, the cosine-based clas­sifiers (including LSA) return a cosine distance, and the decision list classifier returns the weight asso­ciated with the chosen feature (if no feature is se­lected, the frequency of the most frequent sense is used). The scores from each classifier are normal­ized to the range [0,1], multiplied by an empirically determined weight for that classifier, and summed for each sense. The combiner then chooses the sense with the highest score. We used cross validation to determine the weight for each classifier, and it was during that test that we discovered that the best con­stant for the LSA and k-NN classifiers was zero. The most likely explanation for this is that the LSA and k-NN are doing similar, only less accurate, classi­fications as the nearest neighbor classifier, and so have little new knowledge to add to the combiner. We also implemented a simple majority voting sys­tem, where the chosen sense is the sense chosen by the most classifiers, but found it to be less accurate.</p></subsection><subsection number="2.4" title="Evaluation"><p>To increase the accuracy of our system, we needed to optimize various parameters by running the training data through 10-way cross-validation and averaging the scores from each set. Table 2 shows the results of this cross-validation in determining the 6 value used in the additive smoothing for both the Naïve Bayes classifier and for the decision list classifier.</p><p>We also experimented with different feature sets. The results of these experiments are shown in Ta­ble 3.</p><p>Table 1: The (micro-averaged) precision of each of our classifiers in cross-validation, plus the actual re­sults from our entry in SemEval-2007.</p><p>Table 2: On cross-validated training data, system precision when using different smoothing parame­ters in the Naïve Bayes and decision list classifiers.</p></subsection><subsection number="2.5" title="Conclusion"><p>We presented a supervised system that used simple n-gram features and a combination of five different classifiers. The methods used are applicable to any lexical sample task, and have been applied to lexical sample tasks in previous Senseval competitions.</p><doubt alpha="36.4" length="11" tooSmall="False" monospace="0.0">3   Task 14</doubt><p>The goal of Task 14: Affective Text is to take a list of headlines and meaningfully annotate their emotional content. Each headline was scored along seven axes: six predefined emotions (Anger, Disgust, Fear, Joy, Sadness, and Surprise) on a scale from 0 to 100, and the negative/positive polarity (valence) of the head­line on a scale from —100 to +100.</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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Classifier</b></p></td><td class="cell"><p><b>Cross-Validation Score</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MFS</p></td><td class="cell"><p>34.99%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>LSA</p></td><td class="cell"><p>38.61%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>k-NN Cosine</p></td><td class="cell"><p>61.54%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Naïve Bayes</p></td><td class="cell"><p>58.60%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Decision List</p></td><td class="cell"><p>64.37%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>NN Cosine</p></td><td class="cell"><p>65.56%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Simple Combined</p></td><td class="cell"><p>65.89%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Weighted Combined</p></td><td class="cell"><p>67.38%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Classifier</b></p></td><td class="cell"><p><b>Competition Score</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>SWAT-MP</p></td><td class="cell"><p>65.78%</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><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Naïve Bayes</b></p></td><td class="cell"><p></p></td><td class="cell"><p><b>Decision List</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>6</p></td><td class="cell"><p>precision</p></td><td class="cell"><p>6</p></td><td class="cell"><p>precision</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-<footnote anchor="1"/></p></td><td class="cell"><p>53.01%</p></td><td class="cell"><p></p></td><td class="cell"><p>1.0</p></td><td class="cell"><p>64.14%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-<footnote anchor="2"/></p></td><td class="cell"><p>58.60%</p></td><td class="cell"><p></p></td><td class="cell"><p>0.5</p></td><td class="cell"><p>64.37%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-3</p></td><td class="cell"><p>60.80%</p></td><td class="cell"><p></p></td><td class="cell"><p><b>0.1</b></p></td><td class="cell"><p><b>64.59%</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-4</p></td><td class="cell"><p><b>61.09%</b></p></td><td class="cell"><p></p></td><td class="cell"><p>0.05</p></td><td class="cell"><p>64.48%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-5</p></td><td class="cell"><p>60.95%</p></td><td class="cell"><p></p></td><td class="cell"><p>0.005</p></td><td class="cell"><p>64.37%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-6</p></td><td class="cell"><p>61.06%</p></td><td class="cell"><p></p></td><td class="cell"><p>0.001</p></td><td class="cell"><p>64.37%</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>10-7</p></td><td class="cell"><p>61.08%</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></tr></table><page local="4" global="311"/><p>Table 3: On cross-validated training data, the preci­sion when using different features with each classi­fier, and with the combination of all classifiers. All feature sets include a simple, unweighted bag-of-words in addition to the feature listed.</p></subsection><subsection number="3.1" title="Training Data Collection"><p>Our system is trained on a set of pre-annotated head­lines, building up a knowledge-base of individual words and their emotional significance.</p><p>We were initially provided with a trial-set of 250 annotated headlines. We ran 5-way cross-validation with a preliminary version of our system, and found that a dataset of that size was too sparse to effec­tively tag new headlines. In order to generate a more meaningful knowledge-base, we created a sim­ple web interface for human annotation of headlines. We used untrained, non-experts to annotate an addi­tional 1,000 headlines for use as a training set. The headlines were taken from a randomized collection of headlines from the Associated Press.</p><p>We included a subset of the original test set in the set that we put online so that we could get a rough estimate of the consistency of human annota­tion. We found that consistency varied greatly across the emotions. As can be seen in Table 4, our annota-tors were very consistent with the trial data annota-tors on some emotions, while inconsistent on others.</p><p>In ad-hoc, post-annotation interviews, our anno-tators commented that the task was very difficult. What we had initially expected to be a tedious but mindless exercise turned out to be rather involved. They also reported that some emotions were consis­tently harder to annotate than others. The results in Table 4 seem to bear this out as well.</p><p>One difficulty reported by our annotators was de­termining whether to label the emotion experienced by the reader or by the subject of the headline. For example, the headline "White House surprised at reaction to attorney firings" clearly states that the White House was surprised, but the reader might not have been.</p><p>Another of the major difficulties in properly an­notating headlines is that many headlines can be an­notated in vastly different ways depending on the viewpoint of the annotator. For example, while the headline "Hundreds killed in earthquake" would be universally accepted as negative, the headline "Italy defeats France in World Cup Final," can be seen as positive, negative, or even neutral depending on the viewpoint of the reader. These types of problems made it very difficult for our annotators to provide consistent labels.</p></subsection><subsection number="3.2" title="Data Processing"><p>Before we can process a headline and determine its emotions and valence, we convert our list of tagged headlines into a useful knowledge base. To this end, we create a word-emotion mapping.</p><subsubsection number="3.2.1" title="Pre-processing"><p>The first step is to lemmatize every word in every headline, in an attempt to reduce the sparseness of our data. We use the CELEX2 (Baayen et al., 1996) data to perform this lemmatization. There are unfor­tunate cases where lemmatizing actually changes the emotional content of a word <i>(unfortunate </i>becomes <i>fortunate), </i>but without lemmatization, our data is simply too sparse to be of any use. Once we have our list of lemmatized words, we score the emotions and valence of each word as the average of the emotions and valence of every headline, H, in which that word, w, appears, ignoring non-content words:<page local="5" global="312"/></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><b>Naïve Bayes</b></p></td><td class="cell"><p><b>Feature</b></p></td><td class="cell"><p><b>Dec. List</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>55.36% 55.55% 58.50% <b>58.60%</b></p></td><td class="cell"><p>word trigrams word bigrams weighted unigrams all features</p></td><td class="cell"><p>59.98% 59.98% 62.77% <b>64.37%</b></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><b>NN-Cosine</b></p></td><td class="cell"><p><b>Feature</b></p></td><td class="cell"><p><b>Combined</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>60.39% 60.42% <b>65.56%</b></p><p>62.92%</p></td><td class="cell"><p>word trigrams word bigrams weighted unigrams all features</p></td><td class="cell"><p>62.03% 62.66% 64.56% <b>67.38%</b></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><table caption="Table 4: Pearson correlations between trial data an-notators and our human annotators." 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>Emotion</b></p></td><td class="cell"><p><b>Correlation</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Valence</p></td><td class="cell"><p>0.83</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Sadness</p></td><td class="cell"><p>0.81</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Joy</p></td><td class="cell"><p>0.79</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Disgust</p></td><td class="cell"><p>0.38</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Anger</p></td><td class="cell"><p>0.32</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Fear</p></td><td class="cell"><p>0.19</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Surprise</p></td><td class="cell"><p>0.19</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><doubt alpha="64.0" length="25" tooSmall="False" monospace="0.0">Score(Em, w)=Score(Em, H)</doubt><doubt alpha="33.3" length="9" tooSmall="False" monospace="0.0">H : w € H</doubt><p>In the final step of pre-processing, we add the synonyms and antonyms of the sense labels them­selves to our word-emotion mapping. We queried the web interface for Roget's New Millennium The­saurus (Thesaurus.com, 2007) and added every word in the first 8 entries for each sense label to our map, with a score of 100 (the maximum possible score) for that sense. We also added every word in the first 4 antonym entries with a score of —40. For exam­ple, for the emotion Joy, we added <i>alleviation </i>and <i>amusement </i>with a score of 100, and we added <i>de­spair </i>and <i>misery </i>with a score of —40.</p></subsubsection><subsubsection number="3.2.2" title="Processing"><p>After creating our word-emotion mapping, pre­dicting the emotions and valence of a given headline is straightforward. We treat each headline as a bag-of-words and lemmatize each word. Then we look up each word in the headline in our word-emotion map, and average the emotion and valence scores of each word in our map that occurs in the headline. We ignore words that were not present in the train­ing data.</p></subsubsection></subsection><subsection number="3.3" title="Evaluation"><p>Table 5: A comparison of results on the provided trial data as headlines are added to the training set. The scores are given as Pearson correlations of scores for training sets of size 100, 250, and 1000 headlines.</p><p>As can be seen in Table 5, four out ofsix emotions and the valence increase along with training set size.</p><p>This leads us to believe that further increases in the size of the training set would continue to improve results. Lack of time prevents a full analysis that can explain the sudden drop of Disgust and Joy.</p><p>Table 6 shows our full results from this task. Our system finished third out of five in the valence sub-task and second out of three in the emotion sub-task.</p><p>Table 6: Our full results from SemEval-2007, Task 14, as reported by the task organizers. Fine-grained scores are given as Pearson correlations. Coarse­grained scores are given as accuracy (A), preci­sion (P), and recall (R).</p></subsection><subsection number="3.4" title="Conclusion"><p>We presented a supervised system that used a un­igram model to annotate the emotional content of headlines. We also used synonym expansion on the emotion label words. Our annotators encountered significant difficulty while tagging training data, due to ambiguity in definition of the task.</p></subsection><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Emotion</b></p></td><td class="cell"><p><b>Fine</b></p></td><td class="cell"><p><b>Coarse-Grained</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>A</p></td><td class="cell"><p>P</p></td><td class="cell"><p>R</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Valence</p></td><td class="cell"><p>35.25</p></td><td class="cell"><p>53.20</p></td><td class="cell"><p>45.71</p></td><td class="cell"><p>3.42</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Anger</p></td><td class="cell"><p>24.51</p></td><td class="cell"><p>92.10</p></td><td class="cell"><p>12.00</p></td><td class="cell"><p>5.00</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Disgust</p></td><td class="cell"><p>18.55</p></td><td class="cell"><p>97.20</p></td><td class="cell"><p>0.00</p></td><td class="cell"><p>0.00</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Fear</p></td><td class="cell"><p>32.52</p></td><td class="cell"><p>84.80</p></td><td class="cell"><p>25.00</p></td><td class="cell"><p>14.40</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Joy</p></td><td class="cell"><p>26.11</p></td><td class="cell"><p>80.60</p></td><td class="cell"><p>35.41</p></td><td class="cell"><p>9.44</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Sadness</p></td><td class="cell"><p>38.98</p></td><td class="cell"><p>87.70</p></td><td class="cell"><p>32.50</p></td><td class="cell"><p>11.92</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Surprise</p></td><td class="cell"><p>11.82</p></td><td class="cell"><p>89.10</p></td><td class="cell"><p>11.86</p></td><td class="cell"><p>10.93</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><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></tr><tr class="row"><td class="cell"></td><td class="cell"><p><b>Emotion</b></p></td><td class="cell"><p><b>Training Size (Headlines)</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>100</p></td><td class="cell"><p>250</p></td><td class="cell"><p>1000</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Valence</p></td><td class="cell"><p>19.07</p></td><td class="cell"><p>32.07</p></td><td class="cell"><p>35.25</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Anger</p></td><td class="cell"><p>8.42</p></td><td class="cell"><p>13.38</p></td><td class="cell"><p>24.51</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Disgust</p></td><td class="cell"><p>11.22</p></td><td class="cell"><p>23.45</p></td><td class="cell"><p>18.55</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Fear</p></td><td class="cell"><p>14.43</p></td><td class="cell"><p>18.56</p></td><td class="cell"><p>32.52</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Joy</p></td><td class="cell"><p>31.87</p></td><td class="cell"><p>46.03</p></td><td class="cell"><p>26.11</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Sadness</p></td><td class="cell"><p>16.32</p></td><td class="cell"><p>35.09</p></td><td class="cell"><p>38.98</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Surprise</p></td><td class="cell"><p>1.15</p></td><td class="cell"><p>11.12</p></td><td class="cell"><p>11.82</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></section><references><p>R.H. Baayen, R. Piepenbrock, and L. Gulikers. 1996. CELEX2. LDC96L14, Linguistic Data Consortium, Philadelphia.</p><p>S. F. Chen and J. Goodman. 1998. An empirical study of smoothing techniques for language modeling. Techni­cal Report TR-10-98, Harvard University.</p><p>T.K. Landauer, Foltz P.W, and D. Laham. 1998. Intro­duction to latent semantic analysis. <i>Discourse Pro­cesses, </i>25:259-284.</p><p>Thesaurus.com. 2007. Roget's New Millennium The­saurus, 1st ed. (v 1.3.1). Lexico Publishing Group, LLC, http ://thesaurus.reference.com.</p><page local="6" global="313"/><p>Richard Wicentowski, Emily Thomforde, and Adrian Packel. 2004. The Swarthmore College SENSEVAL-3 System. In <i>Proceedings of Senseval-3, Third International Workshop on Evaluating Word Sense Disambiguation Systems.</i></p><p>David Yarowsky. 1994. Decision lists for lexical am­biguity resolution: Application to accent restoration in Spanish and French. In <i>Proceedings of the 32nd Annual Meeting ofthe Association for Computational Linguistics, </i>pages 88-95.</p></references></body></article>