<?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="92"/><title>SUCRE: A Modular System for Coreference Resolution</title><pubinfo>Proceedings of the 5th International Workshop on Semantic Evaluation, ACL 2010,pages 92-95, Uppsala, Sweden, 15-16 July 2010. ©2010 Association for Computational Linguistics</pubinfo><author surname="Kobdani" givenname="Hamidreza"><org  name="University of Stuttgart" country="Germany" city="Stuttgart"/></author><author surname="Schütze" givenname="Hinrich"><org  name="University of Stuttgart" country="Germany" city="Stuttgart"/></author></firstpageheader><frontmatter><p><b>SUCRE: A Modular System for Coreference Resolution</b></p><p><b>Hamidreza Kobdani and Hinrich Schütze</b></p><p>Institute for Natural Language Processing University of Stuttgart, Germany</p><p>kobdani@ims.uni-Stuttgart.de</p></frontmatter><abstract>This paper presents SUCRE, a new soft­ware tool for coreference resolution and its feature engineering. It is able to sep­arately do noun, pronoun and full coref­erence resolution. SUCRE introduces a new approach to the feature engineering of coreference resolution based on a rela­tional database model and a regular feature definition language. SUCRE successfully participated in SemEval-2010 Task 1 on Coreference Resolution in Multiple Lan­guages (Recasens et al., 2010) for gold and regular closed annotation tracks of six languages. It obtained the best results in several categories, including the regular closed annotation tracks of English and German. </abstract></header><body><section number="1" title="Introduction"><p>In this paper, we introduce a new software tool for coreference resolution. Coreference resolution is the process of finding discourse entities (mark-ables) referring to the same real-world entity or concept. In other words, this process groups the markables of a document into equivalence classes (coreference entities) so that all markables in an entity are coreferent.</p><p>There are various publicly available systems that perform coreference resolution, such as BART (Versley et al., 2008) and GUITAR (Stein-berger et al., 2007). A considerable engineering effort is needed for the full coreference resolution task, and a significant part of this effort concerns feature engineering. Thus, a system which is able to extract the features based on a feature defini­tion language can help the researcher reduce the implementation effort needed for feature extrac­tion. Most methods of coreference resolution, if providing a baseline, usually use a feature set sim­ilar to (Soon et al., 2001) or (Ng and Cardie, 2002) and do the feature extraction in the preprocessing stage. SUCRE has been developed to provide a more flexible method for feature engineering of coreference resolution. It has a novel approach to model an unstructured text corpus in a structured framework by using a relational database model and a regular feature definition language to define and extract the features. Relational databases are a well-known technology for structured data mod­eling and are supported by a wide array of soft­ware and tools. Converting a text corpus to/from its equivalent relational database model is straight­forward in our framework.</p><p>A regular language for feature definition is a very flexible method to extract different features from text. In addition to features defined di­rectly in SUCRE, it accepts also externally ex­tracted/generated features. Its modular architec­ture makes it possible to use any externally avail­able classification method too. In addition to link features (features related to a markable pair), it is also possible to define other kinds of features: atomic word and markable features. This ap­proach to feature engineering is suitable not only for knowledge-rich but also for knowledge-poor datasets. It is also language independent. The re­sults of SUCRE in SemEval-2010 Task 1 show the promise of our framework.</p></section><section number="2" title="Architecture"><p>The architecture of SUCRE has two main parts: preprocessing and coreference resolution.</p><p>In preprocessing the text corpus is converted to a relational database model. These are the main functionalities in this stage:</p></section><section number="1." title="Preliminary text conversion"></section><section number="2." title="Extracting atomic word features"></section><section number="3." title="Markable detection"><page local="2" global="93"/></section><section number="4." title="Extracting atomic markable features"><p>After converting (modeling) the text corpus to the database, coreference resolution can be per­formed. Its functional components are:</p></section><section number="1." title="Relational Database Model of Text Corpus"></section><section number="2." title="Link Generator"></section><section number="3." title="Link Feature Extractor"></section><section number="4." title="Learning (Applicable on Train Data)"></section><section number="5." title="Decoding (Applicable on Test Data)"><subsection number="2.1" title="Relational Database Model of Text Corpus"><p>The Relational Database model of text thev cor­pus is an easy to generate format. Three tables are needed to have a minimum running system: Word, Markable and Link.</p><p>Table 1 presents the database model of the text corpus. In the word table, Word-ID is the index of the word, starting from the beginning of the corpus. It is used as the primary key to uniquely identify each token. Document-ID, Paragraph-ID and Sentence-ID are each counted from the be­ginning of the corpus, and also act as the foreign keys pointing to the primary keys of the docu­ment, paragraph and sentence tables, which are optional (the system can also work without them). It is obvious that the raw text as well as any other format of the corpus can be generated from the word table. Any word features (Word-Feature-#X columns) can be defined and will then be added to the word table in preprocessing. In the mark-able table, Markable-ID is the primary key. Begin-Word-ID, End-Word-ID and Head-Word-ID refer to the word table. Like the word features, the markable features are not mandatory and in the preprocessing we can decide which features are added to the table. In the link table, Link-ID is the primary key; First-Markable-ID and Second-Markable-ID refer to the markable table.</p></subsection><subsection number="2.2" title="Link Generator"><p>For training, the system generates a positive train­ing instance for each adjacent coreferent markable pair and negative training instances for a markable m and all markables disreferent with m that occur before m (Soon et al., 2001). For decoding it gen­erates all the possible links inside a window of 100 markables.</p></subsection><subsection number="2.3" title="Link Feature Extractor"><p>There are two main categories of features in SUCRE: Atomic Features and Link Features</p><p>We first explain atomic features in detail and then turn to link features and the extraction method we use.</p><p><b>Atomic Features: </b>The current version of SUCRE supports the atomic features of words and markables but in the next versions we are going to extend it to sentences, paragraphs and documents. An atomic feature is an attribute. For example the position of the word in the corpus is an atomic word feature. Atomic word features are stored in the columns of the word table called Word-Feature-X.</p><p>In addition to word position in the corpus, doc­ument number, paragraph number and sentence number, the following are examples of atomic word features which can be extracted in prepro­cessing: Part of speech tag, Grammatical Gen­der (male, female or neutral), Natural Gender (male or female), Number (e.g. singular, plural or both), Semantic Class, Type (e.g. pronoun types: personal, reflexive, demonstrative ...), Case (e.g. nominative, accusative, dative or genitive in Ger­man) and Pronoun Person (first, second or third). Other possible atomic markable features include:</p><table caption="Table 1: Relational Database Model of Text Corpus" 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>Column</p></td><td class="cell"><p>Characteristic</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Word Table</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Word-ID</p><p>Document-ID</p><p>Paragraph-ID</p><p>Sentence-ID</p><p>Word-String</p><p>Word-Feature-0</p><p>Word-Feature-1</p><p>Word-Feature-N</p></td><td class="cell"><p>Primary Key Foreign Key Foreign Key Foreign Key Attribute Attribute Attribute Attribute Attribute</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Markable Table</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Markable-ID</p><p>Begin-Word-ID</p><p>End-Word-ID</p><p>Head-Word-ID</p><p>Markable-Feature-0</p><p>Markable-Feature-1</p><p>Markable-Feature-N</p></td><td class="cell"><p>Primary Key Foreign Key Foreign Key Foreign Key Attribute Attribute Attribute Attribute</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Links Table</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Link-ID</p><p>First-Markable-ID Second-Markable-ID Coreference-Status Status-Confldence-Level</p></td><td class="cell"><p>Primary Key Foreign Key Foreign Key Attribute Attribute</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><page local="3" global="94"/><p>number of words in markable, named entity, alias, syntactic role and semantic class.</p><p>For sentences, the following could be extracted: number of words in the sentence and sentence type (e.g. simple, compound or complex). For paragraphs these features are possible: number of words and number of sentences in the paragraph. Finally, examples of document features include document type (e.g. news, article or book), num­ber of words, sentences and paragraphs in the doc­ument.</p><p><b>Link Features: </b>Link features are defined over a pair of markables. For link feature extraction, the head words of the markables are usually used, but in some cases the head word may not be a suitable choice. For example, consider the two markables <i>the books </i>and <i>a book. </i>In both cases <i>book </i>is the head word, but to distinguish which markable is definite and which indefinite, the article must be taken into account. Now consider the two mark­ables <i>the university student from Germany </i>and <i>the university student from France. </i>In this case, the head words and the first four words of each mark-able are the same but they can not be coreferent; this can be detected only by looking at the last words. Sometimes we need to consider all words in the two markables, or even define a feature for a markable as a unit. To cover all such cases we need a regular feature definition language with some keywords to select different word combina­tions of two markables. For this purpose, we de­fine the following variables, <b>ml </b>is the first mark-able in the pair, <b>mlb, mle </b>and <b>mlh </b>are the first, last and head words of the first markable in the pair, <b>mla </b>refers to all words of the first markable in the pair, <b><i>ml, </i></b><b>m2b, m2e, m2h </b>and <b>m2a </b>have the same definitions as above but for the second markable in the pair.</p><p>In addition to the above keywords there are some other keywords that this paper does not have enough space to mention (e.g. for accessing the constant values, syntax relations or roles). The currently available functions are: exact- and sub­string matching (in two forms: case-sensitive and case-insensitive), edit distance, alias, word rela­tion, markable parse tree path, absolute value.</p><p>Two examples of link features are as follows:</p><doubt alpha="50.8" length="61" tooSmall="False" monospace="0.0">• (seqmatch(mla,m2a)&gt; 0)kk (mlh.fO==fO.N ) kk (m2h.f0==fO.N )</doubt><p>means that there is at least one exact match between the words of the markables and that the head words of both are nouns (fO means Word-Feature-0, which is part of speech in our system).</p><p><i>• (abs</i><i>(m2b.</i><i>Stenum — mlb.Stenum) == </i>0) <i>kk </i>{m2h.fi<i> </i><i>==</i><i> fS.reflexive) </i>means that two markables are in the same sentence and that the type of the sec­ond markable head word is reflexive (f3 means Word-Feature-3, which is morpholog­ical type in our system).</p></subsection><subsection number="2.4" title="Learning"><p>There are four classifiers integrated in SUCRE: Decision-Tree, Naive-Bayes, Support Vector Ma­chine (loachims, 2002) and Maximum-Entropy (Tsuruoka, 2006).</p><p>When we compared these classifiers, the best results, which are reported in Section 3, were achieved with the Decision-Tree.</p></subsection><subsection number="2.5" title="Decoding"><p>In decoding, the coreference chains are created. SUCRE uses best-first clustering for this purpose. It searches for the best predicted antecedent from right-to-left starting from the end of the document.</p></subsection></section><section number="3" title="Results"><p>Table 2 shows the results of SUCRE and the best competitor system on the test portions of the six languages from SemEval-2010 Task 1. Four dif­ferent evaluation metrics were used to rank the participating systems: MUC (Vilain et al., 1995), B<footnote anchor="3"/> (Bagga and Baldwin, 1998), CEAF (Luo, 2005) and BLANC (Recasens and Hovy, in prep).</p><p>SUCRE has the best results in regular closed annotation track of English and German (for all metrics). Its results for gold closed annotation track of both English and German are the best in MUC and BLANC scoring metrics (MUC: En­glish +27.1 German +32.5, BLANC: English +9.5 German +9.0) and for CEAF and B<footnote anchor="3"/> (CEAF: En­glish -1.3 German -4.8, B<footnote anchor="3"/>: English -2.1 German -4.8); in comparison to the second ranked sys­tem, the performance is clearly better in the first case and slightly better in the second. This re­sult shows that SUCRE has been optimized in a way that achieves good results on the four different scoring metrics. We view this good performance as a demonstration of the strength of SUCRE: our method of feature extraction, definition and tuning is uniform and can be optimized and applied to all languages and tracks.<page local="4" global="95"/></p><p>Results of SUCRE show a correlation between the MUC and BLANC scores (the best MUC scores of all tracks and the best BLANC scores in 11 tracks of a total 12), in our opinion this correla­tion is not because of the high similarity between MUC and BLANC, but it is because of the bal­anced scores.</p><p>Table 2: Results of SUCRE and the best competitor system. Bold Fl scores indicate that the result is the best SemEval result. MD: Markable Detection, ca: Catalan, de: German, en:English, es: Spanish, it: Italian, nl: Dutch</p></section><section number="4" title="Conclusion"><p>In this paper, we have presented a new modular system for coreference resolution. In comparison with the existing systems the most important ad­vantage of our system is its flexible method of fea­ture engineering based on relational database and a regular feature definition language. There are four classifiers integrated in SUCRE: Decision-Tree, Naive-Bayes, SVM and Maximum-Entropy. The system is able to separately do noun, pronoun and full coreference resolution. The system uses best-first clustering. It searches for the best predicted antecedent from right-to-left starting from the end of the document.</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></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Language</p></td><td class="cell"><p>ca</p></td><td class="cell"><p>de</p></td><td class="cell"><p>en</p></td><td class="cell"><p>es</p></td><td class="cell"><p>it</p></td><td class="cell"><p>nl</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>SUCRE (Gold Annotation)</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MD-F1</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>100</p></td><td class="cell"><p>98.4</p></td><td class="cell"><p>100</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>CEAF-F1</p></td><td class="cell"><p>68.7</p></td><td class="cell"><p>72.9</p></td><td class="cell"><p>74.3</p></td><td class="cell"><p>69.8</p></td><td class="cell"><p>66.0</p></td><td class="cell"><p>58.8</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MUC-Fl</p></td><td class="cell"><p>56.2</p></td><td class="cell"><p>58.4</p></td><td class="cell"><p>60.8</p></td><td class="cell"><p>55.3</p></td><td class="cell"><p>45.0</p></td><td class="cell"><p>69.8</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>B<footnote anchor="3"/>-F1</p></td><td class="cell"><p>77.0</p></td><td class="cell"><p>81.1</p></td><td class="cell"><p>82.4</p></td><td class="cell"><p>77.4</p></td><td class="cell"><p>76.8</p></td><td class="cell"><p>67.0</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>BLANC</p></td><td class="cell"><p>63.6</p></td><td class="cell"><p>66.4</p></td><td class="cell"><p>70.8</p></td><td class="cell"><p>64.5</p></td><td class="cell"><p>56.9</p></td><td class="cell"><p>65.3</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>SUCRE (Regular Annotation)</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MD-F1</p></td><td class="cell"><p>69.7</p></td><td class="cell"><p>78.4</p></td><td class="cell"><p>80.7</p></td><td class="cell"><p>70.3</p></td><td class="cell"><p>90.8</p></td><td class="cell"><p>42.3</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>CEAF-F1</p></td><td class="cell"><p>47.2</p></td><td class="cell"><p>59.9</p></td><td class="cell"><p>62.7</p></td><td class="cell"><p>52.9</p></td><td class="cell"><p>61.3</p></td><td class="cell"><p>15.9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MUC-Fl</p></td><td class="cell"><p>37.3</p></td><td class="cell"><p>40.9</p></td><td class="cell"><p>52.5</p></td><td class="cell"><p>36.3</p></td><td class="cell"><p>50.4</p></td><td class="cell"><p>29.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>B<footnote anchor="3"/>-F1</p></td><td class="cell"><p>51.1</p></td><td class="cell"><p>64.3</p></td><td class="cell"><p>67.1</p></td><td class="cell"><p>55.6</p></td><td class="cell"><p>70.6</p></td><td class="cell"><p>11.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>BLANC</p></td><td class="cell"><p>54.2</p></td><td class="cell"><p>53.6</p></td><td class="cell"><p>61.2</p></td><td class="cell"><p>51.4</p></td><td class="cell"><p>57.7</p></td><td class="cell"><p>46.9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>Best Competitor (Gold Annotation)</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MD-F1</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>100</p></td><td class="cell"><p>N/A</p></td><td class="cell"><p>N/A</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>CEAF-F1</p></td><td class="cell"><p>70.5</p></td><td class="cell"><p>77.7</p></td><td class="cell"><p>75.6</p></td><td class="cell"><p>66.6</p></td><td class="cell"><p>N/A</p></td><td class="cell"><p>N/A</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MUC-Fl</p></td><td class="cell"><p>42.5</p></td><td class="cell"><p>25.9</p></td><td class="cell"><p>33.7</p></td><td class="cell"><p>24.7</p></td><td class="cell"><p>N/A</p></td><td class="cell"><p>N/A</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>B<footnote anchor="3"/>-F1</p></td><td class="cell"><p>79.9</p></td><td class="cell"><p>85.9</p></td><td class="cell"><p>84.5</p></td><td class="cell"><p>78.2</p></td><td class="cell"><p>N/A</p></td><td class="cell"><p>N/A</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>BLANC</p></td><td class="cell"><p>59.7</p></td><td class="cell"><p>57.4</p></td><td class="cell"><p>61.3</p></td><td class="cell"><p>55.6</p></td><td class="cell"><p>N/A</p></td><td class="cell"><p>N/A</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>Best Competitor (Regular Annotation)</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MD-F1</p></td><td class="cell"><p>82.7</p></td><td class="cell"><p>59.2</p></td><td class="cell"><p>73.9</p></td><td class="cell"><p>83.1</p></td><td class="cell"><p>55.9</p></td><td class="cell"><p>34.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>CEAF-F1</p></td><td class="cell"><p>57.1</p></td><td class="cell"><p>49.5</p></td><td class="cell"><p>57.3</p></td><td class="cell"><p>59.3</p></td><td class="cell"><p>45.8</p></td><td class="cell"><p>17.0</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MUC-Fl</p></td><td class="cell"><p>22.9</p></td><td class="cell"><p>15.4</p></td><td class="cell"><p>24.6</p></td><td class="cell"><p>21.7</p></td><td class="cell"><p>42.7</p></td><td class="cell"><p>8.3</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>B<footnote anchor="3"/>-F1</p></td><td class="cell"><p>64.6</p></td><td class="cell"><p>50.7</p></td><td class="cell"><p>61.3</p></td><td class="cell"><p>66.0</p></td><td class="cell"><p>46.4</p></td><td class="cell"><p>17.0</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>BLANC</p></td><td class="cell"><p>51.0</p></td><td class="cell"><p>44.7</p></td><td class="cell"><p>49.3</p></td><td class="cell"><p>51.4</p></td><td class="cell"><p>59.6</p></td><td class="cell"><p>32.3</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></section><references><p>Amit Bagga and Breck Baldwin. 1998. Algorithms for scoring coreference chains. In <i>In The First Interna­tional Conference on Language Resources and Eval­uation Workshop on Linguistics Coreference, </i>pages 563-566.</p><p>Thorsten Joachims. 2002. <i>Learning to Classify Text Using Support Vector Machines, Methods, Theory, and Algorithms. </i>Kluwer/Springer.</p><p>Xiaoqiang Luo. 2005. On coreference resolution per­formance metrics. In <i>HLT '05: Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Process­ing, </i>pages 25-32, Morristown, NJ, USA. Associa­tion for Computational Linguistics.</p><p>Vincent Ng and Claire Cardie. 2002. Improving ma­chine learning approaches to coreference resolution. <i>In Proceedings of the ACL, </i>pages 104-111.</p><p>Marta Recasens and Eduard Hovy. in prep. BLANC: Implementing the Rand Index for Coreference Eval­uation.</p><p>Marta Recasens, Lluis Marquez, Emili Sapena, M.Antönia 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 ap­proach to coreference resolution of noun phrases. In <i>Computational Linguistics, </i>pages 521-544.</p><p>Josef Steinberger, Massimo Poesio, Mijail A. Kabad-jovb, and Karel Jezek. 2007. Two uses of anaphora resolution in summarization. In <i>Information Pro­cessing and Management, Special issue on Summa­rization, </i>pages 1663-1680.</p><p>Yoshimasa Tsuruoka. 2006. A simple c++ library for maximum entropy classification. <i>Tsujii labora­tory, Department of Computer Science, University of Tokyo.</i></p><p>Yannick Versley, Simone Paolo Ponzetto, Massimo Poesio, Vladimir Eidelman, Alan Jern, Jason Smith, and Xiaofeng Yang. 2008. Bart: A modular toolkit for coreference resolution. In <i>Proceedings of the 46nd Annual Meeting of the Association for Com­putational Linguistics, </i>pages 9-12.</p><p>Marc Vilain, John Burger, John Aberdeen, Dennis Con­nolly, and Lynette Hirschman. 1995. A model-theoretic coreference scoring scheme. In <i>MUC6 '95: Proceedings of the 6th conference on Message understanding, </i>pages 45-52, Morristown, NJ, USA. Association for Computational Linguistics.</p></references></body></article>