<?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="100"/><title>Corry: A System for Coreference Resolution</title><pubinfo>Proceedings of the 5th International Workshop on Semantic Evaluation, ACL 2010,pages 100-103, Uppsala, Sweden, 15-16 July 2010. ©2010 Association for Computational Linguistics</pubinfo><author surname="Uryupina" givenname="Olga"><org  name="University of Trento" country="Italy" city="Trento"/></author></firstpageheader><frontmatter><p><b>Corry: A System for Coreference Resolution</b></p><p><b>Olga Uryupina</b></p><p>CiMeC, University of Trento uryupina@gmail.com</p></frontmatter><abstract>Corry is a system for coreference resolution in English. It supports both local (Soon et al. (2001)-style) and global (Integer Linear Programming, Denis and Baldridge (2007)-style) models of coreference. Corry relies on a rich linguistically motivated feature set, which has, however, been manually reduced to 64 features for efficiency reasons. Three runs have been submitted for the SemEval task 1 on Coreference Resolution (Recasens et al., 2010), optimizing Corry's performance for BLANC (Recasens and Hovy, in prep), MUC (Vilain et al., 1995) and CEAF (Luo, 2005). Corry runs have shown the best performance level among all the systems in their track for the corresponding metric. </abstract></header><body><section number="1" title="Introduction"><p>Corry is a system for coreference resolution in En­glish. It supports both local (Soon et al. (2001)-style) and global (ILP, Denis and Baldridge (2007&gt;style) models of coreference. The backbone of the system is a family of SVM classifiers for pairs of mentions: each mention type receives its own classifier. A sep­arate anaphoricity classifier is learned for the ILP setting. Corry relies on a rich linguistically moti­vated feature set, which has, however, been manu­ally reduced to 64 features for efficiency reasons.</p><p>Corry has only participated in the "open" setting, as it has already a number of preprocessing mod­ules integrated into the system: the Stanford NLP toolkit for parsing (Klein and Manning, 2003) and NE-tagging (Finkel et al., 2005), Wordnet for se­mantic classes and the U.S. census data for assigning gender values to person names.</p><p>Three runs have been submitted for the Se-mEval task 1 on Coreference Resolution, optimizing Corry's performance for BLANC, MUC and CEAF. The runs differ with respect to the model (local for BLANC, global for MUC and CEAF) and the defi­nition of mention types.</p></section><section number="2" title="Preprocessing and Mention Extraction"><p>In our previous study (Uryupina, 2008) we have shown that up to 35% recall and 20% precision er­rors in coreference resolution for MUC corpora are due to inaccurate mention detection. We have there­fore invested substantial efforts into our mention de­tection module.</p><p>Most state-of-the-art coreference resolution sys­tems operate either on <i>gold </i>markables or on the output of an ACE-style mention detection module. We are not aware of extensive studies on mention extraction algorithms for such datasets as SemEval (OntoNotes) where mentions are complex NPs not constrained with respect to their semantic types.</p><p>We rely on the Stanford NLP toolkit for extract­ing named entities (Finkel et al., 2005) and parse trees for each sentence (Klein and Manning, 2003). We then merge the output of the NE-tagger and the parser to create a list of mentions in the following way:</p><p>1. Named entities are considered mentions if they correspond to a sequence of parsing con­straints.</p><p>2. Pronouns are considered mentions if they are not a part of an NE-mention.</p><p>3. NPs are considered "candidate mentions" if they are not a part of an NE-mention. The set of candidate mentions is then filtered to eliminate pairs of NPs with the same head noun (coor­dinate NPs receive unique artificial heads).<page local="2" global="101"/> For possessive NPs we adjust the boundaries and the head to exclude the "'s" token. The remain­ing candidates are aligned with NE-mentions -if an NE and an NP have the same last word, they are considered the same mention of a spe­cial type. Finally, the list of candidates is op­tionally filtered using a small stop-list (for ex­ample, all the "there" NPs in "There is .." are discarded).</p><p>We rely on the Stanford NLP toolkit, WordNet and the U.S. census data to assign numerous proper­ties to our mentions: semantic type, number, gender and others.</p></section><section number="3" title="Features"><p>Corry relies on two SVM<footnote anchor="1"/> classifiers for <i>coreference </i>and <i>anaphoricity. </i>The former determines whether two given mentions <i>Mi </i>and <i>Mj</i><i> </i>are coreferent or not. The latter determines whether a given mention <i>Mi </i>is anaphoric or discourse new. In Section 4 we show how these classifiers help us build coreference chains. We use the SVM-Light package (Joachims, 1999) for learning our classifiers.</p><p>The strength of our system lies in its rich fea­ture set for the coreference classifier. In our previous studies (Uryupina, 2006; 2007) we have tested up to 351 nominal/continuous (1096 boolean/continuous) features showing significant improvements over ba­sic feature sets advocated in the literature. For the SemEval task 1, we have reduced our rich feature set to 64 nominal/continuous features for efficiency rea­sons: on the one hand, our new set is large enough to cover complex linguistic patterns of coreference, on the other hand, it allows us to test different settings and investigate possibilities for global modeling.</p><p>Our <i>anaphoricity </i>classifier is used by the ILP model. It relies on 26 boolean/continuous features. More details on the classifier itself can be found in (Uryupina, 2003).</p><footnote label="1">Corry supports a number of machine learning algorithms: C4.5, TiMBL, Ripper, MaxEnt and SVM. See Uryupina (2006) for a comparison of Corry's performance with different learners.</footnote></section><section number="4" title="Modeling"><p>Corry supports both global and local views of coref­erence. Our evaluation experiments (cf. Section 5) show that the choice of a particular model should be motivated by the desired scoring metric.</p><p>Our local model of coreference is a reimplementa-tion of the algorithm, proposed by Soon et al. (2001) with an extended feature set. The core of Soon et al.'s (2001) approach is a <i>link-based </i>classifier: it determines whether a given pair of markables are coreferent or not. During testing, a greedy cluster­ing algorithm (link-first) is next used to build coref­erence chains on the output of the classifier.</p><p>We have slightly extended this model to allow separate classifiers for different <i>mention types: </i>each candidate anaphor receives a type (e.g. "pronoun") and is processed with a corresponding classifier. We, thus, rely on a family of classifiers, with the same feature set and the same machine learner. The ex­act definition of mention types is a parameter to be determined empirically on the development set.</p><p>Our global model is largely motivated by Denis and Baldridge (2007; 2008) and Finkel and Manning (2008). Following these studies, we use Integer Lin­ear Programming to find the most globally optimal solution, given the decisions made by our <i>corefer­ence </i>and <i>anaphoricity </i>classifiers.</p><p>In general, an ILP problem is determined by an objective function to be maximized (or minimized) and a set of task-specific constraints. The function is defined by costs <i>link&lt;ij&gt;, </i>and <i>dnewj </i>reflecting potential gains and losses for committing to specific variable assignments. We assume that costs can be positive (for pairs of markables that are likely to be coreferent) or negative (for pairs of markables that are unlikely to be coreferent). The costs are com­puted by an external module (such as a family of lo­cal classifiers described above). The objective func­tion then takes the form:</p><doubt alpha="52.8" length="36" tooSmall="False" monospace="0.0">max(^^2Hnh&lt;i,j&gt; * L&lt;ij&gt;—dnewj * Dj^j</doubt><doubt alpha="14.3" length="7" tooSmall="False" monospace="0.0">&lt;i,3&gt; 3</doubt><doubt alpha="0.0" length="3" tooSmall="False" monospace="0.0">(1)</doubt><p>Binary variables L&lt;ij&gt; indicate that two mark­ables <i>Mi </i>and <i>Mj</i><i> </i>are coreferent in the output assign­ment. Binary variables <i>Dj</i><i> </i>indicate that the mark-able <i>Mj</i><i> </i>is considered anaphoric in the output as­signment. The ILP solver thus assigns values to <i>L</i><i>&lt;i</i><i>,j&gt;,Vi,j</i><i> </i><i>:</i><page local="3" global="102"/><i></i><i> </i><i>i</i><i> </i><i>&lt;</i><i> </i><i>j</i><i> </i>and <i>Dj,Vj</i><i> </i>whilst maximizing the objective in (1). We take the transitive closure of all the proposed L&lt;ij&gt; to build the output partition.</p><p>Note that the objective in (1) is not constrained in any way and will thus allow illegal variable as­signments. For example it does not constrain the assignment of <i>L </i>and <i>D </i>variables to be consistent with one another and does not enforce transitivity. The following constraints suggested in the literature (Denis and Baldridge, 2007; Denis and Baldridge, 2008; Finkel and Manning, 2008) ensure that these and other coreference properties are respected:</p></section><section number="1." title="Best-link constraint"><doubt alpha="0.0" length="12" tooSmall="False" monospace="0.0">/'•:»,/' (2)</doubt><doubt alpha="100.0" length="1" tooSmall="False" monospace="0.0">i</doubt></section><section number="2." title="Transitivity constraints"><doubt alpha="30.8" length="13" tooSmall="False" monospace="0.0">k : i &lt; j &lt; k</doubt><doubt alpha="32.3" length="31" tooSmall="False" monospace="0.0">T:   L&lt;jj&gt; +L&lt;jk&gt;— 1 &lt;L&lt;i,k&gt;(3)</doubt><doubt alpha="33.3" length="30" tooSmall="False" monospace="0.0">L'■L&lt;jk&gt;+ ^&lt;i,fc&gt;—1 &lt;L&lt;i,j&gt;(4)</doubt><doubt alpha="34.5" length="29" tooSmall="False" monospace="0.0">R'■L&lt;i,j&gt;+L&lt;i,k&gt;—1 &lt;L&lt;j,k&gt;(5)</doubt></section><section number="3." title="Anaphoricity constraints"><doubt alpha="12.2" length="49" tooSmall="False" monospace="0.0">A:&gt;].:/..,j• :Dj:j(6)D:/..       •   /;,••'•./(7)</doubt><p>We refer the reader to the above-mentioned pa­pers for detailed discussions of these constraints and their impact on coreference resolution. As we show in Section 5 below, the usability of a particular con­straint should be determined experimentally based on the desired system behaviour.</p></section><section number="5" title="Evaluation 5.1 Development"><p>Corry has participated in the <i>gold </i>and <i>regular </i>open settings for English. We have collected a number of runs on the development data to optimize the per­formance level for a particular score: BLANC (Re-casens and Hovy, in prep), MUC (Vilain et al., 1995) or CEAF (Luo, 2005). The runs differ with respect to the model (local vs. global with varying sets of con­straints) and the definition of mention types. We de­liberately left the B-CUBE score (Bagga and Bald­win, 1998) completely out of our preliminary ex­periments. The official SemEval scorer was used for these experiments.</p><p>Our experiments on the development set show that no configuration is able to produce equally re­liable scores according to all the metrics (note, for example, that on the test set the BLANC difference between Corry-M and Corry-B in the <i>gold </i>setting is almost 10%). We believe that it is a challenging point for future research.</p><p>We have selected the best configurations for each score and submitted them as separate runs. The Corry-C system, optimized for CEAF-^4, is a global model with the <i>L,</i><i> D </i>and <i>A </i>constraints. For the <i>gold </i>setting, mention types are defined as pronouns and non-pronouns. For the <i>regular </i>setting, the system distinguishes between "speech" pronouns, 3rd per­son pronouns, names and nominals.</p><p>Corry-M, optimized for MUC, is a global model with the <i>D </i>constraint and separate classifiers for pronouns, names and nominals. Note that, compared to Corry-C, this setting allows for more coreference links - it is well known from the literature (cf., for example, Bagga and Baldwin (1998)) that the MUC metric is biased towards recall.</p><p>Finally, Corry-B, optimized for BLANC, is a local model that distinguishes between pronouns, nominals and names. The fact that such a simple model is able to outperform much more complex versions of Corry strengthens the importance of fea­ture engineering.</p><subsection number="5.2" title="Testing"><p>Table 1 shows the SemEval task 1 scores for the gold/regular open setting. Corry has shown reliable performance for both mention detection and coref­erence resolution. For mention detection, Corry's F-score is 4% higher than the one of the competing ap­proach. For coreference, all the Corry runs yielded the best performance level for a score under opti­mization.</p><p>Finally, for the B-CUBE metric that had not been optimized at all, Corry lost only marginally to the RelaxCor system in the gold setting and came first in the regular setting.</p></subsection></section><section number="6" title="Conclusion"><p>We have presented Corry - a system for coreference resolution in English. Our plans include extending it to cover multiple languages. However, as the main strength of Corry lies in its rich linguistically moti­vated feature set, this remains an issue.</p><page local="4" global="103"/><p>Table 1: System scores for the gold/regular open setting. The best F-score for each metric shown in bold.</p><p>An important advantage of Corry is its flexibility: the system allows for a number of modeling solu­tions that can be tested on the development set to optimize the performance level for a particular ob­jective. Our SemEval task 1 results confirm that a system might benefit a lot from a direct optimization for a given performance metric.</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><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p></p></td><td class="cell"><p>Mention detection</p></td><td class="cell"><p>CEAF</p></td><td class="cell"><p>MUC</p></td><td class="cell"><p>Ba</p></td><td class="cell"><p>BLANC</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>R</b></p></td><td class="cell"><p></p></td><td class="cell"><p>Fl</p></td><td class="cell"><p><b>R</b></p></td><td class="cell"><p></p></td><td class="cell"><p>Fl</p></td><td class="cell"><p><b>R</b></p></td><td class="cell"><p></p></td><td class="cell"><p>Fl</p></td><td class="cell"><p><b>R</b></p></td><td class="cell"><p>P</p></td><td class="cell"><p>Fl</p></td><td class="cell"><p><b>R</b></p></td><td class="cell"><p>P</p></td><td class="cell"><p>Fl</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Language: en, Information: open, Annotation</p></td><td class="cell"><p>: gold</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"><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>Corry-B</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>77.5</p></td><td class="cell"><p>77.5</p></td><td class="cell"><p>77.5</p></td><td class="cell"><p>56.1</p></td><td class="cell"><p>57.5</p></td><td class="cell"><p>56.8</p></td><td class="cell"><p>82.6</p></td><td class="cell"><p>85.7</p></td><td class="cell"><p>84.1</p></td><td class="cell"><p>69.3</p></td><td class="cell"><p>75.3</p></td><td class="cell"><p><b>71.8</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Corry-C</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>77.7</p></td><td class="cell"><p>77.7</p></td><td class="cell"><p>77.7</p></td><td class="cell"><p>57.4</p></td><td class="cell"><p>58.3</p></td><td class="cell"><p>57.9</p></td><td class="cell"><p>83.1</p></td><td class="cell"><p>84.7</p></td><td class="cell"><p>83.9</p></td><td class="cell"><p>71.3</p></td><td class="cell"><p>71.6</p></td><td class="cell"><p>71.5</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Corry-M</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>73.8</p></td><td class="cell"><p>73.8</p></td><td class="cell"><p>73.8</p></td><td class="cell"><p>62.5</p></td><td class="cell"><p>56.2</p></td><td class="cell"><p><b>59.2</b></p></td><td class="cell"><p>85.5</p></td><td class="cell"><p>78.6</p></td><td class="cell"><p>81.9</p></td><td class="cell"><p>76.2</p></td><td class="cell"><p>58.8</p></td><td class="cell"><p>62.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>RelaxCor</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>100</p></td><td class="cell"><p>75.8</p></td><td class="cell"><p>75.8</p></td><td class="cell"><p>75.8</p></td><td class="cell"><p>22.6</p></td><td class="cell"><p>70.5</p></td><td class="cell"><p>34.2</p></td><td class="cell"><p>75.2</p></td><td class="cell"><p>96.7</p></td><td class="cell"><p><b>84.6</b></p></td><td class="cell"><p>58.0</p></td><td class="cell"><p>83.8</p></td><td class="cell"><p>62.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Language: en, Information: open, Annotation: regular</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>BART</p></td><td class="cell"><p>76.1</p></td><td class="cell"><p>69.8</p></td><td class="cell"><p>72.8</p></td><td class="cell"><p>70.1</p></td><td class="cell"><p>64.3</p></td><td class="cell"><p>67.1</p></td><td class="cell"><p>62.8</p></td><td class="cell"><p>52.4</p></td><td class="cell"><p>57.1</p></td><td class="cell"><p>74.9</p></td><td class="cell"><p>67.7</p></td><td class="cell"><p>71.1</p></td><td class="cell"><p>55.3</p></td><td class="cell"><p>73.2</p></td><td class="cell"><p>57.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Corry-B</p></td><td class="cell"><p>79.8</p></td><td class="cell"><p>76.4</p></td><td class="cell"><p><b>78.1</b></p></td><td class="cell"><p>70.4</p></td><td class="cell"><p>67.4</p></td><td class="cell"><p>68.9</p></td><td class="cell"><p>55.0</p></td><td class="cell"><p>54.2</p></td><td class="cell"><p>54.6</p></td><td class="cell"><p>73.7</p></td><td class="cell"><p>74.1</p></td><td class="cell"><p><b>73.9</b></p></td><td class="cell"><p>57.1</p></td><td class="cell"><p>75.7</p></td><td class="cell"><p><b>60.6</b></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Corry-C</p></td><td class="cell"><p>79.8</p></td><td class="cell"><p>76.4</p></td><td class="cell"><p><b>78.1</b></p></td><td class="cell"><p>70.9</p></td><td class="cell"><p>67.9</p></td><td class="cell"><p><b>69.4</b></p></td><td class="cell"><p>54.7</p></td><td class="cell"><p>55.5</p></td><td class="cell"><p>55.1</p></td><td class="cell"><p>73.8</p></td><td class="cell"><p>73.1</p></td><td class="cell"><p>73.5</p></td><td class="cell"><p>57.4</p></td><td class="cell"><p>63.8</p></td><td class="cell"><p>59.4</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Corry-M</p></td><td class="cell"><p>79.8</p></td><td class="cell"><p>76.4</p></td><td class="cell"><p><b>78.1</b></p></td><td class="cell"><p>66.3</p></td><td class="cell"><p>63.5</p></td><td class="cell"><p>64.8</p></td><td class="cell"><p>61.5</p></td><td class="cell"><p>53.4</p></td><td class="cell"><p><b>57.2</b></p></td><td class="cell"><p>76.8</p></td><td class="cell"><p>66.5</p></td><td class="cell"><p>71.3</p></td><td class="cell"><p>58.5</p></td><td class="cell"><p>56.2</p></td><td class="cell"><p>57.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><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><td class="cell"></td><td class="cell"></td></tr></table></section><references><p>Amit Bagga and Breck Baldwin. 1998. Algorithms for scoring coreference chains. In <i>Proceedings of the Linguistic Coreference Workshop at the International Conference on Language Resources and Evaluation (LREC-1998), </i>pages 563-566.</p><p>Pascal Denis and Jason Baldridge. 2007. Joint determi­nation of anaphoricity and coreference resolution us­ing integer programming. In <i>Proceedings of the An­nual Meeting of the North American Chapter ofthe As­sociation for Computational Linguistics - Human Lan­guage Technology Conference (NAACL/HLT-2007).</i></p><p>Pascal Denis and Jason Baldridge. 2008. Corefer­ence with named entity classification and transitiv­ity constraints and evaluation with MUC, B-CUBED, and CEAF. In <i>Proceedings of Corpus-Based Ap­proaches to Coreference Resolution in Romance Lan­guages (CBA 2008).</i></p><p>Jenny Rose Finkel and Christopher D. Manning. 2008. Enforcing transitivity in coreference resolution. In <i>Proceedings of the 46th Annual Meeting of the Associ­ation for Computational Linguistics (ACL 2008), Short Papers, </i>pages 45-48.</p><p>Jenny Rose Finkel, Trond Grenager, and Christopher Manning. 2005. Incorporating non-local informa­tion into information extraction systems by Gibbs sam­pling. In <i>Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics, </i>pages 363-370.</p><p>Thorsten Joachims. 1999. Making large-scale SVM learning practical.  In B. Schölkopf, C. Burges, and</p><p>A. Smola, editors, <i>Advances in Kernel Methods - Sup­port Vector Learning. </i>MIT-Press.</p><p>Dan Klein and Christopher Manning. 2003. Accurate unlexicalized parsing. In <i>Proceedings of the 41st An­nual Meeting of the Association for Computational Linguistics, </i>pages 423-430.</p><p>Xiaoqiang Luo. 2005. On coreference resolution perfor­mance metrics. In <i>Proceedings of the Annual Meeting of the North American Chapter of the Association for Computational Linguistics - Human Language Tech­nology Conference (NAACL/HLT-2005), </i>pages 25-32.</p><p>Marta Recasens and Eduard Hovy. in prep. BLANC: Im­plementing the rand index for coreference evaluation.</p><p>Marta Recasens, Lluis Marquez, Emili Sapena, M.Antonia Marti, Mariona Taulé, Véronique Hoste, Massimo Poesio, and Yannick Versley. 2010. SemEval-2010 Task 1: Coreference resolution in multiple languages. In <i>Proceedings of the 5th International Workshop on Semantic Evaluations (SemEval-2010), </i>Uppsala, Sweden.</p><p>Wee Meng Soon, Hwee Tou Ng, and Daniel Chung Yong Lim. 2001. A machine learning approach to corefer­ence resolution of noun phrases. <i>Computational Lin­guistics (Special Lssue on Computational Anaphora Resolution), </i>27(4):521-544.</p><p>Olga Uryupina. 2003. High-precision identification of discourse-new and unique noun phrases. In <i>Proceed­ings of the ACL '03 Student Workshop, </i>pages 80-86.</p><p>Olga Uryupina. 2006. Coreference resolution with and without linguistic knowledge. In <i>Proceedings of the Language Resources and Evaluation Conference.</i></p><p>Olga Uryupina. 2007. <i>Knowledge Acquisition for Coref­erence Resolution. </i>Ph.D. thesis, Saarland University.</p><p>Olga Uryupina. 2008. Error analysis for learning-based coreference resolution. In <i>Proceedings of the Lan­guage Resources and Evaluation Conference.</i></p><p>Marc Vilain, John Burger, John Aberdeen, Dennis Con­nolly, and Lynette Hirschman. 1995. A model-theoretic coreference scoring scheme. In <i>Proceedings of the 6th Message Understanding Conference, </i>pages 45-52.</p></references></body></article>