|
{ |
|
"paper_id": "S10-1020", |
|
"header": { |
|
"generated_with": "S2ORC 1.0.0", |
|
"date_generated": "2023-01-19T15:28:00.032075Z" |
|
}, |
|
"title": "Corry: A System for Coreference Resolution", |
|
"authors": [ |
|
{ |
|
"first": "Olga", |
|
"middle": [], |
|
"last": "Uryupina", |
|
"suffix": "", |
|
"affiliation": { |
|
"laboratory": "", |
|
"institution": "University of Trento", |
|
"location": {} |
|
}, |
|
"email": "[email protected]" |
|
} |
|
], |
|
"year": "", |
|
"venue": null, |
|
"identifiers": {}, |
|
"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", |
|
"pdf_parse": { |
|
"paper_id": "S10-1020", |
|
"_pdf_hash": "", |
|
"abstract": [ |
|
{ |
|
"text": "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", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Abstract", |
|
"sec_num": null |
|
} |
|
], |
|
"body_text": [ |
|
{ |
|
"text": "Corry is a system for coreference resolution in English. It supports both local (Soon et al. (2001) -style) and global (ILP, Denis and Baldridge (2007) -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 separate anaphoricity classifier is learned for the ILP setting. Corry relies on a rich linguistically motivated feature set, which has, however, been manually reduced to 64 features for efficiency reasons.", |
|
"cite_spans": [ |
|
{ |
|
"start": 80, |
|
"end": 99, |
|
"text": "(Soon et al. (2001)", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 125, |
|
"end": 151, |
|
"text": "Denis and Baldridge (2007)", |
|
"ref_id": "BIBREF1" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Corry has only participated in the \"open\" setting, as it has already a number of preprocessing modules integrated into the system: the Stanford NLP toolkit for parsing (Klein and Manning, 2003) and NE-tagging (Finkel et al., 2005) , Wordnet for semantic classes and the U.S. census data for assigning gender values to person names.", |
|
"cite_spans": [ |
|
{ |
|
"start": 168, |
|
"end": 193, |
|
"text": "(Klein and Manning, 2003)", |
|
"ref_id": "BIBREF6" |
|
}, |
|
{ |
|
"start": 209, |
|
"end": 230, |
|
"text": "(Finkel et al., 2005)", |
|
"ref_id": "BIBREF4" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "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 definition of mention types.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "In our previous study (Uryupina, 2008) we have shown that up to 35% recall and 20% precision errors in coreference resolution for MUC corpora are due to inaccurate mention detection. We have therefore invested substantial efforts into our mention detection module.", |
|
"cite_spans": [ |
|
{ |
|
"start": 22, |
|
"end": 38, |
|
"text": "(Uryupina, 2008)", |
|
"ref_id": "BIBREF15" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "Most state-of-the-art coreference resolution systems operate either on gold 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.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "We rely on the Stanford NLP toolkit for extracting 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:", |
|
"cite_spans": [ |
|
{ |
|
"start": 66, |
|
"end": 87, |
|
"text": "(Finkel et al., 2005)", |
|
"ref_id": "BIBREF4" |
|
}, |
|
{ |
|
"start": 122, |
|
"end": 147, |
|
"text": "(Klein and Manning, 2003)", |
|
"ref_id": "BIBREF6" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "1. Named entities are considered mentions if they correspond to a sequence of parsing constraints.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "2. Pronouns are considered mentions if they are not a part of an NE-mention.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "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 (coordinate NPs receive unique artificial heads). For possessive NPs we adjust the boundaries and the head to exclude the \"'s\" token. The remaining candidates are aligned with NE-mentionsif an NE and an NP have the same last word, they are considered the same mention of a special type. Finally, the list of candidates is optionally filtered using a small stop-list (for example, all the \"there\" NPs in \"There is ..\" are discarded).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "We rely on the Stanford NLP toolkit, WordNet and the U.S. census data to assign numerous properties to our mentions: semantic type, number, gender and others.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Preprocessing and Mention Extraction", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "Corry relies on two SVM 1 classifiers for coreference and anaphoricity. The former determines whether two given mentions M i and M j are coreferent or not. The latter determines whether a given mention M 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.", |
|
"cite_spans": [ |
|
{ |
|
"start": 343, |
|
"end": 359, |
|
"text": "(Joachims, 1999)", |
|
"ref_id": "BIBREF5" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Features", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "The strength of our system lies in its rich feature 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 basic 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 reasons: 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.", |
|
"cite_spans": [ |
|
{ |
|
"start": 112, |
|
"end": 128, |
|
"text": "(Uryupina, 2006;", |
|
"ref_id": "BIBREF13" |
|
}, |
|
{ |
|
"start": 129, |
|
"end": 134, |
|
"text": "2007)", |
|
"ref_id": "BIBREF14" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Features", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "Our anaphoricity 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) . 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.", |
|
"cite_spans": [ |
|
{ |
|
"start": 153, |
|
"end": 169, |
|
"text": "(Uryupina, 2003)", |
|
"ref_id": "BIBREF12" |
|
}, |
|
{ |
|
"start": 172, |
|
"end": 173, |
|
"text": "1", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 271, |
|
"end": 286, |
|
"text": "Uryupina (2006)", |
|
"ref_id": "BIBREF13" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Features", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "Corry supports both global and local views of coreference. Our evaluation experiments (cf. Section 5) show that the choice of a particular model should be motivated by the desired scoring metric.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Our local model of coreference is a reimplementation of the algorithm, proposed by Soon et al. 2001with an extended feature set. The core of Soon et al.'s (2001) approach is a link-based classifier: it determines whether a given pair of markables are coreferent or not. During testing, a greedy clustering algorithm (link-first) is next used to build coreference chains on the output of the classifier.", |
|
"cite_spans": [ |
|
{ |
|
"start": 141, |
|
"end": 161, |
|
"text": "Soon et al.'s (2001)", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "We have slightly extended this model to allow separate classifiers for different mention types: 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 exact definition of mention types is a parameter to be determined empirically on the development set.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Our global model is largely motivated by Denis and Baldridge (2007; 2008) and Finkel and Manning (2008) . Following these studies, we use Integer Linear Programming to find the most globally optimal solution, given the decisions made by our coreference and anaphoricity classifiers.", |
|
"cite_spans": [ |
|
{ |
|
"start": 41, |
|
"end": 67, |
|
"text": "Denis and Baldridge (2007;", |
|
"ref_id": "BIBREF1" |
|
}, |
|
{ |
|
"start": 68, |
|
"end": 73, |
|
"text": "2008)", |
|
"ref_id": "BIBREF15" |
|
}, |
|
{ |
|
"start": 78, |
|
"end": 103, |
|
"text": "Finkel and Manning (2008)", |
|
"ref_id": "BIBREF3" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "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 link <i,j> , and dnew j 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 computed by an external module (such as a family of local classifiers described above). The objective function then takes the form:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "max <i,j> link <i,j> * L <i,j> \u2212 j dnew j * D j", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "(1) Binary variables L <i,j> indicate that two markables M i and M j are coreferent in the output assignment. Binary variables D j indicate that the markable M j is considered anaphoric in the output assignment. The ILP solver thus assigns values to L <i,j> , \u2200i, j : i < j and D j , \u2200j whilst maximizing the objective in (1). We take the transitive closure of all the proposed L <i,j> to build the output partition.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Note that the objective in (1) is not constrained in any way and will thus allow illegal variable assignments. For example it does not constrain the assignment of L and D 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:", |
|
"cite_spans": [ |
|
{ |
|
"start": 304, |
|
"end": 331, |
|
"text": "(Denis and Baldridge, 2007;", |
|
"ref_id": "BIBREF1" |
|
}, |
|
{ |
|
"start": 332, |
|
"end": 358, |
|
"text": "Denis and Baldridge, 2008;", |
|
"ref_id": "BIBREF2" |
|
}, |
|
{ |
|
"start": 359, |
|
"end": 384, |
|
"text": "Finkel and Manning, 2008)", |
|
"ref_id": "BIBREF3" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "1. Best-link constraint B : i L <i,j> \u2264 1, \u2200j (2) 2. Transitivity constraints \u2200i, j, k : i < j < k T : L <i,j> + L <j,k> \u2212 1 \u2264 L <i,k> (3) L : L <j,k> + L <i,k> \u2212 1 \u2264 L <i,j> (4) R : L <i,j> + L <i,k> \u2212 1 \u2264 L <j,k> (5) 3. Anaphoricity constraints A : i L <i,j> >= D j \u2200j (6) D : L <i,j> \u2264 D j \u2200i, j", |
|
"eq_num": "(7)" |
|
} |
|
], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "We refer the reader to the above-mentioned papers for detailed discussions of these constraints and their impact on coreference resolution. As we show in Section 5 below, the usability of a particular constraint should be determined experimentally based on the desired system behaviour.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Modeling", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Corry has participated in the gold and regular open settings for English. We have collected a number of runs on the development data to optimize the performance level for a particular score: BLANC (Recasens 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 constraints) and the definition of mention types. We deliberately left the B-CUBE score (Bagga and Baldwin, 1998) completely out of our preliminary experiments. The official SemEval scorer was used for these experiments.", |
|
"cite_spans": [ |
|
{ |
|
"start": 231, |
|
"end": 252, |
|
"text": "(Vilain et al., 1995)", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 261, |
|
"end": 272, |
|
"text": "(Luo, 2005)", |
|
"ref_id": "BIBREF7" |
|
}, |
|
{ |
|
"start": 444, |
|
"end": 469, |
|
"text": "(Bagga and Baldwin, 1998)", |
|
"ref_id": "BIBREF0" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Development", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "Our experiments on the development set show that no configuration is able to produce equally reliable 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 gold setting is almost 10%). We believe that it is a challenging point for future research.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Development", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "We have selected the best configurations for each score and submitted them as separate runs. The Corry-C system, optimized for CEAF-\u03c64, is a global model with the L, D and A constraints. For the gold setting, mention types are defined as pronouns and non-pronouns. For the regular setting, the system distinguishes between \"speech\" pronouns, 3rd person pronouns, names and nominals.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Development", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "Corry-M, optimized for MUC, is a global model with the D 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.", |
|
"cite_spans": [ |
|
{ |
|
"start": 263, |
|
"end": 287, |
|
"text": "Bagga and Baldwin (1998)", |
|
"ref_id": "BIBREF0" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Development", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "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 feature engineering. Table 1 shows the SemEval task 1 scores for the gold/regular open setting. Corry has shown reliable performance for both mention detection and coreference resolution. For mention detection, Corry's Fscore is 4% higher than the one of the competing approach. For coreference, all the Corry runs yielded the best performance level for a score under optimization.", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 256, |
|
"end": 263, |
|
"text": "Table 1", |
|
"ref_id": "TABREF1" |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Development", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "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.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Testing", |
|
"sec_num": "5.2" |
|
}, |
|
{ |
|
"text": "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 motivated feature set, this remains an issue. An important advantage of Corry is its flexibility: the system allows for a number of modeling solutions that can be tested on the development set to optimize the performance level for a particular objective. Our SemEval task 1 results confirm that a system might benefit a lot from a direct optimization for a given performance metric.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Conclusion", |
|
"sec_num": "6" |
|
} |
|
], |
|
"back_matter": [], |
|
"bib_entries": { |
|
"BIBREF0": { |
|
"ref_id": "b0", |
|
"title": "Algorithms for scoring coreference chains", |
|
"authors": [ |
|
{ |
|
"first": "Amit", |
|
"middle": [], |
|
"last": "Bagga", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Breck", |
|
"middle": [], |
|
"last": "Baldwin", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1998, |
|
"venue": "Proceedings of the Linguistic Coreference Workshop at the International Conference on Language Resources and Evaluation (LREC-1998)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "563--566", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Amit Bagga and Breck Baldwin. 1998. Algorithms for scoring coreference chains. In Proceedings of the Linguistic Coreference Workshop at the International Conference on Language Resources and Evaluation (LREC-1998), pages 563-566.", |
|
"links": null |
|
}, |
|
"BIBREF1": { |
|
"ref_id": "b1", |
|
"title": "Joint determination of anaphoricity and coreference resolution using integer programming", |
|
"authors": [ |
|
{ |
|
"first": "Pascal", |
|
"middle": [], |
|
"last": "Denis", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jason", |
|
"middle": [], |
|
"last": "Baldridge", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2007, |
|
"venue": "Proceedings of the Annual Meeting of the North American Chapter of the Association for Computational Linguistics -Human Language Technology Conference (NAACL/HLT-2007)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Pascal Denis and Jason Baldridge. 2007. Joint determi- nation of anaphoricity and coreference resolution us- ing integer programming. In Proceedings of the An- nual Meeting of the North American Chapter of the As- sociation for Computational Linguistics -Human Lan- guage Technology Conference (NAACL/HLT-2007).", |
|
"links": null |
|
}, |
|
"BIBREF2": { |
|
"ref_id": "b2", |
|
"title": "Coreference with named entity classification and transitivity constraints and evaluation with MUC, B-CUBED, and CEAF", |
|
"authors": [ |
|
{ |
|
"first": "Pascal", |
|
"middle": [], |
|
"last": "Denis", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jason", |
|
"middle": [], |
|
"last": "Baldridge", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2008, |
|
"venue": "Proceedings of Corpus-Based Approaches to Coreference Resolution in Romance Languages", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "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 Proceedings of Corpus-Based Ap- proaches to Coreference Resolution in Romance Lan- guages (CBA 2008).", |
|
"links": null |
|
}, |
|
"BIBREF3": { |
|
"ref_id": "b3", |
|
"title": "Enforcing transitivity in coreference resolution", |
|
"authors": [ |
|
{ |
|
"first": "Jenny", |
|
"middle": [ |
|
"Rose" |
|
], |
|
"last": "Finkel", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Christopher", |
|
"middle": [ |
|
"D" |
|
], |
|
"last": "Manning", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2008, |
|
"venue": "Proceedings of the 46th Annual Meeting of the Association for Computational Linguistics (ACL 2008), Short Papers", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "45--48", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jenny Rose Finkel and Christopher D. Manning. 2008. Enforcing transitivity in coreference resolution. In Proceedings of the 46th Annual Meeting of the Associ- ation for Computational Linguistics (ACL 2008), Short Papers, pages 45-48.", |
|
"links": null |
|
}, |
|
"BIBREF4": { |
|
"ref_id": "b4", |
|
"title": "Incorporating non-local information into information extraction systems by Gibbs sampling", |
|
"authors": [ |
|
{ |
|
"first": "Jenny", |
|
"middle": [ |
|
"Rose" |
|
], |
|
"last": "Finkel", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Trond", |
|
"middle": [], |
|
"last": "Grenager", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Christopher", |
|
"middle": [], |
|
"last": "Manning", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "363--370", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jenny Rose Finkel, Trond Grenager, and Christopher Manning. 2005. Incorporating non-local informa- tion into information extraction systems by Gibbs sam- pling. In Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics, pages 363-370.", |
|
"links": null |
|
}, |
|
"BIBREF5": { |
|
"ref_id": "b5", |
|
"title": "Making large-scale SVM learning practical", |
|
"authors": [ |
|
{ |
|
"first": "Thorsten", |
|
"middle": [], |
|
"last": "Joachims", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1999, |
|
"venue": "Advances in Kernel Methods -Support Vector Learning", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Thorsten Joachims. 1999. Making large-scale SVM learning practical. In B. Sch\u00f6lkopf, C. Burges, and A. Smola, editors, Advances in Kernel Methods -Sup- port Vector Learning. MIT-Press.", |
|
"links": null |
|
}, |
|
"BIBREF6": { |
|
"ref_id": "b6", |
|
"title": "Accurate unlexicalized parsing", |
|
"authors": [ |
|
{ |
|
"first": "Dan", |
|
"middle": [], |
|
"last": "Klein", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Christopher", |
|
"middle": [], |
|
"last": "Manning", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2003, |
|
"venue": "Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "423--430", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Dan Klein and Christopher Manning. 2003. Accurate unlexicalized parsing. In Proceedings of the 41st An- nual Meeting of the Association for Computational Linguistics, pages 423-430.", |
|
"links": null |
|
}, |
|
"BIBREF7": { |
|
"ref_id": "b7", |
|
"title": "On coreference resolution performance metrics", |
|
"authors": [ |
|
{ |
|
"first": "Xiaoqiang", |
|
"middle": [], |
|
"last": "Luo", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "Proceedings of the Annual Meeting of the North American Chapter of the Association for Computational Linguistics -Human Language Technology Conference (NAACL/HLT-2005)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "25--32", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Xiaoqiang Luo. 2005. On coreference resolution perfor- mance metrics. In Proceedings of the Annual Meeting of the North American Chapter of the Association for Computational Linguistics -Human Language Tech- nology Conference (NAACL/HLT-2005), pages 25-32.", |
|
"links": null |
|
}, |
|
"BIBREF8": { |
|
"ref_id": "b8", |
|
"title": "prep. BLANC: Implementing the rand index for coreference evaluation", |
|
"authors": [ |
|
{ |
|
"first": "Marta", |
|
"middle": [], |
|
"last": "Recasens", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Eduard", |
|
"middle": [], |
|
"last": "Hovy", |
|
"suffix": "" |
|
} |
|
], |
|
"year": null, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Marta Recasens and Eduard Hovy. in prep. BLANC: Im- plementing the rand index for coreference evaluation.", |
|
"links": null |
|
}, |
|
"BIBREF10": { |
|
"ref_id": "b10", |
|
"title": "Task 1: Coreference resolution in multiple languages", |
|
"authors": [ |
|
{ |
|
"first": "-", |
|
"middle": [], |
|
"last": "Semeval", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2010, |
|
"venue": "Proceedings of the 5th International Workshop on Semantic Evaluations (SemEval-2010)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "SemEval-2010 Task 1: Coreference resolution in multiple languages. In Proceedings of the 5th International Workshop on Semantic Evaluations (SemEval-2010), Uppsala, Sweden.", |
|
"links": null |
|
}, |
|
"BIBREF11": { |
|
"ref_id": "b11", |
|
"title": "A machine learning approach to coreference resolution of noun phrases", |
|
"authors": [], |
|
"year": 2001, |
|
"venue": "Computational Linguistics (Special Issue on Computational Anaphora Resolution)", |
|
"volume": "27", |
|
"issue": "4", |
|
"pages": "521--544", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Wee Meng Soon, Hwee Tou Ng, and Daniel Chung Yong Lim. 2001. A machine learning approach to corefer- ence resolution of noun phrases. Computational Lin- guistics (Special Issue on Computational Anaphora Resolution), 27(4):521-544.", |
|
"links": null |
|
}, |
|
"BIBREF12": { |
|
"ref_id": "b12", |
|
"title": "High-precision identification of discourse-new and unique noun phrases", |
|
"authors": [ |
|
{ |
|
"first": "Olga", |
|
"middle": [], |
|
"last": "Uryupina", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2003, |
|
"venue": "Proceedings of the ACL'03 Student Workshop", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "80--86", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Olga Uryupina. 2003. High-precision identification of discourse-new and unique noun phrases. In Proceed- ings of the ACL'03 Student Workshop, pages 80-86.", |
|
"links": null |
|
}, |
|
"BIBREF13": { |
|
"ref_id": "b13", |
|
"title": "Coreference resolution with and without linguistic knowledge", |
|
"authors": [ |
|
{ |
|
"first": "Olga", |
|
"middle": [], |
|
"last": "Uryupina", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2006, |
|
"venue": "Proceedings of the Language Resources and Evaluation Conference", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Olga Uryupina. 2006. Coreference resolution with and without linguistic knowledge. In Proceedings of the Language Resources and Evaluation Conference.", |
|
"links": null |
|
}, |
|
"BIBREF14": { |
|
"ref_id": "b14", |
|
"title": "Knowledge Acquisition for Coreference Resolution", |
|
"authors": [ |
|
{ |
|
"first": "Olga", |
|
"middle": [], |
|
"last": "Uryupina", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2007, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Olga Uryupina. 2007. Knowledge Acquisition for Coref- erence Resolution. Ph.D. thesis, Saarland University.", |
|
"links": null |
|
}, |
|
"BIBREF15": { |
|
"ref_id": "b15", |
|
"title": "Error analysis for learning-based coreference resolution", |
|
"authors": [ |
|
{ |
|
"first": "Olga", |
|
"middle": [], |
|
"last": "Uryupina", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2008, |
|
"venue": "Proceedings of the Language Resources and Evaluation Conference", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Olga Uryupina. 2008. Error analysis for learning-based coreference resolution. In Proceedings of the Lan- guage Resources and Evaluation Conference.", |
|
"links": null |
|
}, |
|
"BIBREF16": { |
|
"ref_id": "b16", |
|
"title": "Dennis Connolly, and Lynette Hirschman. 1995. A modeltheoretic coreference scoring scheme", |
|
"authors": [ |
|
{ |
|
"first": "Marc", |
|
"middle": [], |
|
"last": "Vilain", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "John", |
|
"middle": [], |
|
"last": "Burger", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "John", |
|
"middle": [], |
|
"last": "Aberdeen", |
|
"suffix": "" |
|
} |
|
], |
|
"year": null, |
|
"venue": "Proceedings of the 6th Message Understanding Conference", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "45--52", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Marc Vilain, John Burger, John Aberdeen, Dennis Con- nolly, and Lynette Hirschman. 1995. A model- theoretic coreference scoring scheme. In Proceedings of the 6th Message Understanding Conference, pages 45-52.", |
|
"links": null |
|
} |
|
}, |
|
"ref_entries": { |
|
"TABREF1": { |
|
"text": "System scores for the gold/regular open setting. The best F-score for each metric shown in bold.", |
|
"type_str": "table", |
|
"num": null, |
|
"html": null, |
|
"content": "<table/>" |
|
} |
|
} |
|
} |
|
} |