| { |
| "paper_id": "Q14-1037", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:11:45.322173Z" |
| }, |
| "title": "A Joint Model for Entity Analysis: Coreference, Typing, and Linking", |
| "authors": [ |
| { |
| "first": "Greg", |
| "middle": [], |
| "last": "Durrett", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of California", |
| "location": { |
| "settlement": "Berkeley" |
| } |
| }, |
| "email": "gdurrett@cs.berkeley.edu" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of California", |
| "location": { |
| "settlement": "Berkeley" |
| } |
| }, |
| "email": "klein@cs.berkeley.edu" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "We present a joint model of three core tasks in the entity analysis stack: coreference resolution (within-document clustering), named entity recognition (coarse semantic typing), and entity linking (matching to Wikipedia entities). Our model is formally a structured conditional random field. Unary factors encode local features from strong baselines for each task. We then add binary and ternary factors to capture cross-task interactions, such as the constraint that coreferent mentions have the same semantic type. On the ACE 2005 and OntoNotes datasets, we achieve state-of-theart results for all three tasks. Moreover, joint modeling improves performance on each task over strong independent baselines. 1", |
| "pdf_parse": { |
| "paper_id": "Q14-1037", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "We present a joint model of three core tasks in the entity analysis stack: coreference resolution (within-document clustering), named entity recognition (coarse semantic typing), and entity linking (matching to Wikipedia entities). Our model is formally a structured conditional random field. Unary factors encode local features from strong baselines for each task. We then add binary and ternary factors to capture cross-task interactions, such as the constraint that coreferent mentions have the same semantic type. On the ACE 2005 and OntoNotes datasets, we achieve state-of-theart results for all three tasks. Moreover, joint modeling improves performance on each task over strong independent baselines. 1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "How do we characterize the collection of entities present in a document? Two broad threads exist in the literature. The first is coreference resolution (Soon et al., 2001; Ng, 2010; Pradhan et al., 2011) , which identifies clusters of mentions in a document referring to the same entity. This process gives us access to useful information about the referents of pronouns and nominal expressions, but because clusters are local to each document, it is often hard to situate document entities in a broader context. A separate line of work has considered the problem of entity linking or \"Wikification\" (Cucerzan, 2007; Milne and Witten, 2008; Ji and Grishman, 2011) , where mentions are linked to entries in a given knowledge base. This is useful for grounding proper entities, but in the absence of coreference gives an incomplete picture of document content itself, in that nominal expressions and pronouns are left unresolved.", |
| "cite_spans": [ |
| { |
| "start": 152, |
| "end": 171, |
| "text": "(Soon et al., 2001;", |
| "ref_id": null |
| }, |
| { |
| "start": 172, |
| "end": 181, |
| "text": "Ng, 2010;", |
| "ref_id": "BIBREF35" |
| }, |
| { |
| "start": 182, |
| "end": 203, |
| "text": "Pradhan et al., 2011)", |
| "ref_id": "BIBREF41" |
| }, |
| { |
| "start": 600, |
| "end": 616, |
| "text": "(Cucerzan, 2007;", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 617, |
| "end": 640, |
| "text": "Milne and Witten, 2008;", |
| "ref_id": "BIBREF34" |
| }, |
| { |
| "start": 641, |
| "end": 663, |
| "text": "Ji and Grishman, 2011)", |
| "ref_id": "BIBREF27" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In this paper, we describe a joint model of coreference, entity linking, and semantic typing (named entity recognition) using a structured conditional random field. Variables in the model capture decisions about antecedence, semantic type, and entity links for each mention. Unary factors on these variables incorporate features that are commonly employed when solving each task in isolation. Binary and higher-order factors capture interactions between pairs of tasks. For entity linking and NER, factors capture a mapping between NER's semantic types and Wikipedia's semantics as described by infoboxes, categories, and article text. Coreference interacts with the other tasks in a more complex way, via factors that softly encourage consistency of semantic types and entity links across coreference arcs, similar to the method of . Figure 1 shows an example of the effects such factors can capture. The non-locality of coreference factors make exact inference intractable, but we find that belief propagation is a suitable approximation technique and performs well.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 835, |
| "end": 843, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Our joint modeling of these three tasks is motivated by their heavy interdependencies, which have been noted in previous work (discussed more in Section 7). Entity linking has been employed for coreference resolution (Ponzetto and Strube, 2006; Rahman and Ng, 2011; Ratinov and Roth, 2012) and coreference for entity linking (Cheng and Roth, 2013) as part of pipelined systems. Past work has shown that tighter integration of coreference and entity linking is promising (Hajishirzi et al., 2013; ; we extend these approaches and model the entire process more holistically. Named entity recognition is improved by simple coreference (Finkel et al., 2005; Ratinov and Roth, 2009) and knowledge from Wikipedia (Kazama and Torisawa, 2007; Ratinov and Roth, 2009; Sil and Yates, 2013) . Joint models of coreference and NER have been proposed in Haghighi and Klein (2010) and , but in neither case was supervised data used for both tasks. Technically, our model is most closely related to that of , who handle coreference, named entity recognition, and relation extraction. 2 Our system is novel in three ways: the choice of tasks to model jointly, the fact that we maintain uncertainty about all decisions throughout inference (rather than using a greedy approach), and the feature sets we deploy for cross-task interactions.", |
| "cite_spans": [ |
| { |
| "start": 217, |
| "end": 244, |
| "text": "(Ponzetto and Strube, 2006;", |
| "ref_id": "BIBREF40" |
| }, |
| { |
| "start": 245, |
| "end": 265, |
| "text": "Rahman and Ng, 2011;", |
| "ref_id": "BIBREF45" |
| }, |
| { |
| "start": 266, |
| "end": 289, |
| "text": "Ratinov and Roth, 2012)", |
| "ref_id": "BIBREF47" |
| }, |
| { |
| "start": 325, |
| "end": 347, |
| "text": "(Cheng and Roth, 2013)", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 470, |
| "end": 495, |
| "text": "(Hajishirzi et al., 2013;", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 632, |
| "end": 653, |
| "text": "(Finkel et al., 2005;", |
| "ref_id": "BIBREF18" |
| }, |
| { |
| "start": 654, |
| "end": 677, |
| "text": "Ratinov and Roth, 2009)", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 697, |
| "end": 734, |
| "text": "Wikipedia (Kazama and Torisawa, 2007;", |
| "ref_id": null |
| }, |
| { |
| "start": 735, |
| "end": 758, |
| "text": "Ratinov and Roth, 2009;", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 759, |
| "end": 779, |
| "text": "Sil and Yates, 2013)", |
| "ref_id": "BIBREF49" |
| }, |
| { |
| "start": 840, |
| "end": 865, |
| "text": "Haghighi and Klein (2010)", |
| "ref_id": "BIBREF23" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In designing a joint model, we would like to preserve the modularity, efficiency, and structural simplicity of pipelined approaches. Our model's feature-based structure permits improvement of features specific to a particular task or to a pair of tasks. By pruning variable domains with a coarse model and using approximate inference via belief propagation, we maintain efficiency and our model is only a factor of two slower than the union of the individual models. Finally, as a structured CRF, it is conceptually no more complex than its component models and its behavior can be understood using the same intuition.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "We apply our model to two datasets, ACE 2005 and OntoNotes, with different mention standards and layers of annotation. In both settings, our joint model outperforms our independent baseline models. On ACE, we achieve state-of-the-art entity linking results, matching the performance of the system of Fahrni and Strube (2014) . On OntoNotes, we match the performance of the best published coreference system (Bj\u00f6rkelund and Kuhn, 2014) and outperform two strong NER systems (Ratinov and Roth, 2009; Passos et al., 2014) .", |
| "cite_spans": [ |
| { |
| "start": 300, |
| "end": 324, |
| "text": "Fahrni and Strube (2014)", |
| "ref_id": "BIBREF15" |
| }, |
| { |
| "start": 407, |
| "end": 434, |
| "text": "(Bj\u00f6rkelund and Kuhn, 2014)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 473, |
| "end": 497, |
| "text": "(Ratinov and Roth, 2009;", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 498, |
| "end": 518, |
| "text": "Passos et al., 2014)", |
| "ref_id": "BIBREF38" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "We first present two examples to motivate our approach. Figure 1 shows an example of a case where coreference is beneficial for named entity recognition and entity linking. The company is clearly coreferent to Dell by virtue of the lack of other possible antecedents; this in turn indicates that Dell refers to the corporation rather than to Michael Dell. This effect can be captured for entity linking by a feature tying the lexical item company to the fact that COMPANY is in the Wikipedia infobox for Dell, 3 thereby helping the linker make the correct decision. This would also be important for recovering the fact that the mention the company links to Dell; however, in the version of the task we consider, a mention like the company actually links to the Wikipedia article for Company. 4 Figure 2 shows a different example, one where the coreference is now ambiguous but entity linking is transparent. In this case, an NER system based on surface statistics alone would likely predict that Freddie Mac is a PERSON. However, the Wikipedia article for Freddie Mac is unambiguous, which allows us to fix this error. The pronoun his can then be correctly resolved.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 56, |
| "end": 64, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| }, |
| { |
| "start": 794, |
| "end": 802, |
| "text": "Figure 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Motivating Examples", |
| "sec_num": "2" |
| }, |
| { |
| "text": "These examples justify why these tasks should be handled jointly: there is no obvious pipeline order for a system designer who cares about the perfor- ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Motivating Examples", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Our model is a structured conditional random field (Lafferty et al., 2001 ). The input (conditioning context) is the text of a document, automatic parses, and a set of pre-extracted mentions (spans of text).", |
| "cite_spans": [ |
| { |
| "start": 51, |
| "end": 73, |
| "text": "(Lafferty et al., 2001", |
| "ref_id": "BIBREF30" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Mentions are allowed to overlap or nest: our model makes no structural assumptions here, and in fact we will show results on datasets with two different mention annotation standards (see Section 6.1 and Section 6.3). Figure 3 shows the random variables in our model. We are trying to predict three distinct types of annotation, so we naturally have one variable per annotation type per mention (of which there are n):", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 217, |
| "end": 225, |
| "text": "Figure 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "\u2022 Coreference variables a = (a 1 , . . . , a n ) which indicate antecedents: a i \u2208 {1, . . . , i\u22121, NEW}, indicating that the mention refers to some previous mention or that it begins a new cluster.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "\u2022 Named entity type variables t = (t 1 , . . . , t n ) which take values in a fixed inventory of semantic types. 5", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "\u2022 Entity link variables e = (e 1 , . . . , e n ) which take values in the set of all Wikipedia titles.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "In addition we have variables q = (q 1 , . . . , q n ) which represent queries to Wikipedia. These are explained further in Section 3. Figure 3: Random variables and task-specific factors present in our model. The a i model coreference antecedents, the t i model semantic types, the e i model entity links, and the q i are latent Wikipedia queries. Factors shown for each task integrate baseline features used when that task is handled in isolation. Coreference factors are described in Section 3.1.1, NER factors are described in Section 3.1.2, and entity linking factors are described in Section 3.1.3.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "to remark that they are unobserved during both training and testing. We place a log-linear probability distribution over these variables as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "p(a, t, e|x; \u03b8) \u221d q exp \u03b8 f (a, t, e, q, x)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "where \u03b8 is a weight vector, f is a feature function, and x indicates the document text, automatic parses, and mention boundaries.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "We represent the features in this model with standard factor graph notation; features over a particular set of output variables (and x) are associated with factors connected to those variables. Figure 3 shows the task-specific factors in the model, discussed next in Section 3.1. Higher-order factors coupling variables between tasks are discussed in Section 3.2. Figure 3 shows a version of the model with only task-specific factors. Though this framework is structurally simple, it is nevertheless powerful enough for us to implement high-performing models for each task. State-of-the-art approaches to coreference and entity linking (Ratinov et al., 2011) already have this independent structure and Ratinov and Roth (2009) note that it is a reasonable assumption to make for NER as well. 6 In this section, we describe the features present in the task-specific factors of each type (which also serve as our three separate baseline systems).", |
| "cite_spans": [ |
| { |
| "start": 636, |
| "end": 658, |
| "text": "(Ratinov et al., 2011)", |
| "ref_id": "BIBREF48" |
| }, |
| { |
| "start": 703, |
| "end": 726, |
| "text": "Ratinov and Roth (2009)", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 792, |
| "end": 793, |
| "text": "6", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 194, |
| "end": 202, |
| "text": "Figure 3", |
| "ref_id": null |
| }, |
| { |
| "start": 364, |
| "end": 372, |
| "text": "Figure 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Model", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Our modeling of the coreference output space (as antecedents chosen for each mention) follows the mention-ranking approach to coreference (Denis and Baldridge, 2008; . Our feature set is that of Durrett and Klein, targeting surface properties of mentions: for each mention, we examine the first word, head word, last word, context words, the mention's length, and whether the mention is nominal, proper or pronominal. Anaphoricity features examine each of these properties in turn; coreference features conjoin various properties between mention pairs and also use properties of the mention pair itself, such as the distance between the mentions and whether their heads match. Note that this baseline does not rely on having access to named entity chunks.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference", |
| "sec_num": "3.1.1" |
| }, |
| { |
| "text": "Our NER model places a distribution over possible semantic types for each mention, which corresponds to a fixed span of the input text. We define the features of a span to be the concatenation of standard NER surface features associated with each token in that chunk. We use surface token features similar to those from previous work (Zhang and Johnson, 2003; Ratinov and Roth, 2009; Passos et al., 2014) : for tokens at offsets of {\u22122, \u22121, 0, 1, 2} from the current token, we fire features based on 1) word identity, 2) POS tag, 3) word class (based on capitalization, presence of numbers, suffixes, etc.), 4) word shape (based on the pattern of uppercase and lowercase letters, digits, and punctuation), 5) Brown cluster prefixes of length 4, 6, 10, 20 using the clusters from Koo et al. (2008) , and 6) common bigrams of word shape and word identity.", |
| "cite_spans": [ |
| { |
| "start": 334, |
| "end": 359, |
| "text": "(Zhang and Johnson, 2003;", |
| "ref_id": "BIBREF57" |
| }, |
| { |
| "start": 360, |
| "end": 383, |
| "text": "Ratinov and Roth, 2009;", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 384, |
| "end": 404, |
| "text": "Passos et al., 2014)", |
| "ref_id": "BIBREF38" |
| }, |
| { |
| "start": 779, |
| "end": 796, |
| "text": "Koo et al. (2008)", |
| "ref_id": "BIBREF29" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Named Entity Recognition", |
| "sec_num": "3.1.2" |
| }, |
| { |
| "text": "Our entity linking system diverges more substantially from past work than the coreference or NER systems. Most entity linking systems operate in two distinct phases (Cucerzan, 2007; Milne and Witten, 2008; Dredze et al., 2010; Ratinov et al., 2011) . First, in the candidate generation phase, a system generates a ranked set of possible candidates for a given mention by querying Wikipedia. The standard approach for doing so is to collect all hyperlinks in Wikipedia and associate each hyperlinked span of text (e.g. Michael Jordan) with a distribution over titles of Wikipedia articles it is observed to link to (Michael Jordan, Michael I. Jordan, etc.). Second, in the disambiguation phase, a learned model selects the correct candidate from the set of possibilities.", |
| "cite_spans": [ |
| { |
| "start": 165, |
| "end": 181, |
| "text": "(Cucerzan, 2007;", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 182, |
| "end": 205, |
| "text": "Milne and Witten, 2008;", |
| "ref_id": "BIBREF34" |
| }, |
| { |
| "start": 206, |
| "end": 226, |
| "text": "Dredze et al., 2010;", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 227, |
| "end": 248, |
| "text": "Ratinov et al., 2011)", |
| "ref_id": "BIBREF48" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "As noted by Hachey et al. (2013) and Guo et al. (2013) , candidate generation is often overlooked and yet accounts for large gaps in performance between different systems. It is not always clear how to best turn the text of a mention into a query for our set of hyperlinks. For example, the phrase Chief Executive Michael Dell has never been hyperlinked on Wikipedia. If we query the substring Michael Dell, the highest-ranked title is correct; however, querying the substring Dell returns the article on the company.", |
| "cite_spans": [ |
| { |
| "start": 12, |
| "end": 32, |
| "text": "Hachey et al. (2013)", |
| "ref_id": "BIBREF21" |
| }, |
| { |
| "start": 37, |
| "end": 54, |
| "text": "Guo et al. (2013)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "Our model for entity linking therefore includes both predictions of final Wikipedia titles e i as well as latent query variables q i that model the choice of query. Given a mention, possible queries are all prefixes of the mention containing the head with optional truecasing or lemmatization applied. Unary factors on the q i model the appropriateness of a query based on surface text of the mention, investigating the following properties: whether the mention is proper or nominal, whether the query employed truecasing or lemmatization, the query's length, the POS tag sequence within the query and the tag immediately preceding it, and whether the query is the longest query to yield a nonempty set of candidates for the mention. This part of the model can learn, for example, that queries based on lemmatized proper names are bad, whereas queries based on lemmatized common nouns are good.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "Our set of candidates links for a mention is the set of all titles produced by some query. The bi- Figure 4 : Factors that tie predictions between variables across tasks. Joint NER and entity linking factors (Section 3.2.1) tie semantic information from Wikipedia articles to semantic type predictions. Joint coreference and NER factors (Section 3.2.2) couple type decisions between mentions, encouraging consistent type assignments within an entity. Joint coreference and entity linking factors (Section 3.2.3) encourage relatedness between articles linked from coreferent mentions. nary factors connecting q i and e i then decide which title a given query should yield. These include: the rank of the article title among all possible titles returned by that query (sorted by relative frequency count), whether the title is a close string match of the query, and whether the title matches the query up to a parenthetical (e.g. Paul Allen and Paul Allen (editor)).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 99, |
| "end": 107, |
| "text": "Figure 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "a 1 a 2 e 1 e 2 q 1 q 2 t 1 Dell N E R + C o r e f L i n k + C o r e f N E R + L i n k The company ... posted ... t 2 NER Coref Link", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "We could also at this point add factors between pairs of variables (e i , e j ) to capture coherence between choices of linked entities. Integration with the rest of the model, learning, and inference would remain unchanged. However, while such features have been employed in past entity linking systems (Ratinov et al., 2011; Hoffart et al., 2011) , Ratinov et al. found them to be of limited utility, so we omit them from the present work.", |
| "cite_spans": [ |
| { |
| "start": 304, |
| "end": 326, |
| "text": "(Ratinov et al., 2011;", |
| "ref_id": "BIBREF48" |
| }, |
| { |
| "start": 327, |
| "end": 348, |
| "text": "Hoffart et al., 2011)", |
| "ref_id": "BIBREF25" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking", |
| "sec_num": "3.1.3" |
| }, |
| { |
| "text": "We now add factors that tie the predictions of multiple output variables in a feature-based way. Figure 4 shows the general structure of these factors. Each couples variables from one pair of tasks.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 97, |
| "end": 105, |
| "text": "Figure 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Cross-task Interaction Factors", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "We want to exploit the semantic information in Wikipedia for better semantic typing of mentions. We also want to use semantic types to disambiguate tricky Wikipedia links. We use three sources of semantics from Wikipedia (Kazama and Torisawa, 2007; :", |
| "cite_spans": [ |
| { |
| "start": 221, |
| "end": 248, |
| "text": "(Kazama and Torisawa, 2007;", |
| "ref_id": "BIBREF28" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking and NER", |
| "sec_num": "3.2.1" |
| }, |
| { |
| "text": "\u2022 Categories (e.g. American financiers); used by Ponzetto and Strube (2006; Kazama and Torisawa (2007; Ratinov and Roth (2012) \u2022 Infobox type (e.g. Person, Company)", |
| "cite_spans": [ |
| { |
| "start": 49, |
| "end": 75, |
| "text": "Ponzetto and Strube (2006;", |
| "ref_id": "BIBREF40" |
| }, |
| { |
| "start": 76, |
| "end": 102, |
| "text": "Kazama and Torisawa (2007;", |
| "ref_id": "BIBREF28" |
| }, |
| { |
| "start": 103, |
| "end": 126, |
| "text": "Ratinov and Roth (2012)", |
| "ref_id": "BIBREF47" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking and NER", |
| "sec_num": "3.2.1" |
| }, |
| { |
| "text": "\u2022 Copula in the first sentence (is a British politician); used for coreference previously in Haghighi and Klein (2009) We fire features that conjoin the information from the selected Wikipedia article with the selected NER type. Because these types of information from Wikipedia are of a moderate granularity, we should be able to learn a mapping between them and NER types and exploit Wikipedia as a soft gazetteer.", |
| "cite_spans": [ |
| { |
| "start": 93, |
| "end": 118, |
| "text": "Haghighi and Klein (2009)", |
| "ref_id": "BIBREF22" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Entity Linking and NER", |
| "sec_num": "3.2.1" |
| }, |
| { |
| "text": "Coreference can improve NER by ensuring consistent semantic type predictions across coreferent mentions; likewise, NER can help coreference by encouraging the system to link up mentions of the same type. The factors we implement for these purposes closely resemble the factors employed for latent semantic clusters in . That structure is as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "log F i\u2212j (a i , t i , t j ) = 0 if a i = j f (i, j, t i , t j ) otherwise", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "That is, the features between the type variables for mentions i and j does not come into play unless i and j are coreferent. Note that there are quadratically many such factors in the graph (before pruning; see Section 5), one for each ordered pair of mentions (j, i) with j < i. When scoring a particular configuration of variables, only a small subset of the factors is active, but during inference when we marginalize over all settings of variables, each of the factors comes into play for some configuration.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "This model structure allows us to maintain uncertainty about coreference decisions but still propagate information along coreference arcs in a soft way. Given this factor definition, we define features that should fire over coreferent pairs of entity types. Our features target:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "\u2022 The pair of semantic types for the current and antecedent mention", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "\u2022 The semantic type of the current mention and the head of the antecedent mention, and the type of the antecedent and head of the current", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "We found such monolexical features to improve over just type pairs and while not suffering from the sparsity problems of bilexical features.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and NER", |
| "sec_num": "3.2.2" |
| }, |
| { |
| "text": "As we said in Section 2, coreferent mentions can actually have different entity links (e.g. Dell and Company), so encouraging equality alone is less effective for entity linking than it is for NER. Our factors have the same structure as those for coreference-NER, but features now target overall semantic relatedness of Wikipedia articles using the structure of Wikipedia by computing whether the articles have the same title, share any out links, or link to each other. More complex relatedness schemes such as those described in Ratinov et al. (2011) can be implemented in this framework. Nevertheless, these basic features still promise to help identify related articles as well as name variations by exploiting the abundance of entity mentions on Wikipedia.", |
| "cite_spans": [ |
| { |
| "start": 531, |
| "end": 552, |
| "text": "Ratinov et al. (2011)", |
| "ref_id": "BIBREF48" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Coreference and Entity Linking", |
| "sec_num": "3.2.3" |
| }, |
| { |
| "text": "Our training data consists of d documents, where a given document consists of a tuple (x, C * , t * , e * ). Gold-standard labels for types (t * ) and entity links (e * ) are provided directly, while supervision for coreference is provided in the form of a clustering C * . Regardless, we can simply marginalize over the uncertainty about a * and form the conditional loglikelihood of the training labels as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "L(\u03b8) = d i=1 log a * \u2208A(C * i ) p(a * , t * i , e * i |x; \u03b8)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "where A(C * ) is the set of antecedent structures consistent with the gold annotation: the first mention in a cluster must pick the NEW label and subsequent mentions must pick an antecedent from the set of those preceding them in the cluster. This marginalization over latent structure has been employed in prior work as well (Fernandes et al., 2012; . We adapt this objective to exploit parameterized loss functions for each task by modifying the distribution as follows:", |
| "cite_spans": [ |
| { |
| "start": 326, |
| "end": 350, |
| "text": "(Fernandes et al., 2012;", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "p (a, t, e|x; \u03b8) \u221d p(a, t, e, x) exp [\u03b1 c c (a, C * ) +\u03b1 t t (t, t * ) + \u03b1 e e (e, e * )]", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "where c , t , and e are task-specific loss functions with weight parameters \u03b1. This technique, softmaxmargin, allows us to shape the distribution learned by the model and encourage the model to move probability mass away from outputs that are bad according to our loss functions (Gimpel and Smith, 2010) . As in , we take \u03b1 c = 1 and use c as defined there, penalizing the model by \u03b1 c,FA = 0.1 for linking up a mention that should have been nonanaphoric, by \u03b1 c,FN = 3 for calling nonanaphoric a mention that should have an antecedent, and by \u03b1 c,WL = 1 for picking the wrong antecedent for an anaphoric mention. t and e are simply Hamming distance, with \u03b1 t = 3 and \u03b1 e = 0 for all experiments. We found that the outcome of learning was not particularly sensitive to these parameters. 7 We optimize our objective using AdaGrad (Duchi et al., 2011) with L 1 regularization and \u03bb = 0.001. Our final objective is", |
| "cite_spans": [ |
| { |
| "start": 279, |
| "end": 303, |
| "text": "(Gimpel and Smith, 2010)", |
| "ref_id": "BIBREF19" |
| }, |
| { |
| "start": 787, |
| "end": 788, |
| "text": "7", |
| "ref_id": null |
| }, |
| { |
| "start": 829, |
| "end": 849, |
| "text": "(Duchi et al., 2011)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "L(\u03b8) = d i=1 log a * \u2208A(C * i ) p (a * , t * i , e * i |x; \u03b8)+\u03bb \u03b8 1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "This objective is nonconvex, but in practice we have found that it is very stable. One reason is that for any mention that has fewer than two antecedents in its cluster, all elements of A(C * ) only contain one possibility for that mention, and even for mentions with ambiguity, the parameters that the model ends up learning tend to place almost all of the probability mass consistently on one antecedent. Table 1 : Results on the ACE 2005 dev and test sets for the INDEP. (task-specific factors only) and JOINT models. Coreference metrics are computed using their reference implementations (Pradhan et al., 2014) . We report accuracy on NER because the set of mentions is fixed and all mentions have named entity types. Coreference and NER are compared to prior work in a more standard setting in Section 6.3. Finally, we also report accuracy of our entity linker (including links to NIL); entity linking is analyzed more thoroughly in Table 2 . Bolded values represent statistically significant improvements with p < 0.05 according to a bootstrap resampling test.", |
| "cite_spans": [ |
| { |
| "start": 592, |
| "end": 614, |
| "text": "(Pradhan et al., 2014)", |
| "ref_id": "BIBREF43" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 407, |
| "end": 414, |
| "text": "Table 1", |
| "ref_id": null |
| }, |
| { |
| "start": 938, |
| "end": 945, |
| "text": "Table 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Learning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "For both learning and decoding, inference consists of computing marginals for individual variables or for sets of variables adjacent to a factor. Exact inference is intractabile due to our factor graph's loopiness; however, we can still perform efficient inference using belief propagation, which has been successfully employed for a similar model as well as for other NLP tasks (Smith and Eisner, 2008; Burkett and Klein, 2012) . Marginals typically converge in 3-5 iterations of belief propagation; we use 5 iterations for all experiments.", |
| "cite_spans": [ |
| { |
| "start": 379, |
| "end": 403, |
| "text": "(Smith and Eisner, 2008;", |
| "ref_id": "BIBREF51" |
| }, |
| { |
| "start": 404, |
| "end": 428, |
| "text": "Burkett and Klein, 2012)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Inference", |
| "sec_num": null |
| }, |
| { |
| "text": "However, belief propagation would still be quite computationally expensive if run on the full factor graph as described in Section 3. In particular, the factors in Section 3.2.2 and Section 3.2.3 are costly to sum over due to their ternary structure and the fact that there are quadratically many of them in the number of mentions. The solution to this is to prune the domains of the coreference variables using a coarse model consisting of the coreference factors trained in isolation. Given marginals p 0 (a i |x), we prune values a i such that log p 0 (a i |x) < log p 0 (a * i |x) \u2212 k for a threshold parameter k, which we set to 5 for our experiments; this is sufficient to prune over 90% of possible coreference arcs while leaving at least one possible gold link for 98% of mentions. 8 With this optimization, our full joint model could be trained for 20 iterations on the ACE 2005 corpus in around an hour.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Inference", |
| "sec_num": null |
| }, |
| { |
| "text": "We use minimum Bayes risk (MBR) decoding,", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Inference", |
| "sec_num": null |
| }, |
| { |
| "text": "where we compute marginals for each variable under the full model and independently return the most likely setting of each variable. Note that for coreference, this implies that we produce the MBR antecedent structure rather than the MBR clustering; the latter is much more computationally difficult to find and would be largely the same, since the posterior distributions of the a i are quite peaked.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Inference", |
| "sec_num": null |
| }, |
| { |
| "text": "We present results on two corpora. First, we use the ACE 2005 corpus (NIST, 2005 : this corpus annotates mentions complete with coreference, semantic types (per mention), and entity links (also per mention) later added by Bentivogli et al. (2010) . We evaluate on gold mentions in this setting for comparability with prior work on entity linking; we lift this restriction in Section 6.3. Second, we evaluate on the OntoNotes 5 corpus (Hovy et al., 2006) as used in the CoNLL 2012 coreference shared task (Pradhan et al., 2012) . This corpus does not contain gold-standard entity links, so we cannot evaluate this portion of our model, though the model still exploits the information from Wikipedia to make coreference and named entity decisions. We will compare to prior coreference and named entity work in the system mentions setting.", |
| "cite_spans": [ |
| { |
| "start": 53, |
| "end": 61, |
| "text": "ACE 2005", |
| "ref_id": null |
| }, |
| { |
| "start": 62, |
| "end": 80, |
| "text": "corpus (NIST, 2005", |
| "ref_id": null |
| }, |
| { |
| "start": 222, |
| "end": 246, |
| "text": "Bentivogli et al. (2010)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 434, |
| "end": 453, |
| "text": "(Hovy et al., 2006)", |
| "ref_id": "BIBREF26" |
| }, |
| { |
| "start": 504, |
| "end": 526, |
| "text": "(Pradhan et al., 2012)", |
| "ref_id": "BIBREF42" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experiments", |
| "sec_num": "6" |
| }, |
| { |
| "text": "We tokenize and sentence-split the ACE dataset using the tools bundled with Reconcile (Stoyanov et al., 2010) and parse it using the Berkeley Parser (Petrov et al., 2006) . We use the train/test split from Stoyanov et al. (2009) , Haghighi and Klein (2010) , and Bansal and Klein (2012) . Table 2 : Detailed entity linking results on the ACE 2005 test set. We evaluate both our INDEP. (task-specific factors only) and JOINT models and compare to the results of the FAHRNI model, a state-of-the-art entity linking system. We compare overall accuracy as well as performance at predicting NILS (mentions not in the knowledge base) and non-NILS. The JOINT model roughly matches the performance of FAHRNI and gives strong gains over the INDEP. system. Table 1 shows our results. Coreference results are reported using MUC (Vilain et al., 1995) , B 3 (Bagga and Baldwin, 1998) , and CEAF e (Luo, 2005) , as well as their average, the CoNLL metric, all computed from the reference implementation of the CoNLL scorer (Pradhan et al., 2014) . We see that the joint model improves all three tasks compared to the individual task models in the baseline.", |
| "cite_spans": [ |
| { |
| "start": 86, |
| "end": 109, |
| "text": "(Stoyanov et al., 2010)", |
| "ref_id": "BIBREF54" |
| }, |
| { |
| "start": 149, |
| "end": 170, |
| "text": "(Petrov et al., 2006)", |
| "ref_id": "BIBREF39" |
| }, |
| { |
| "start": 206, |
| "end": 228, |
| "text": "Stoyanov et al. (2009)", |
| "ref_id": "BIBREF53" |
| }, |
| { |
| "start": 231, |
| "end": 256, |
| "text": "Haghighi and Klein (2010)", |
| "ref_id": "BIBREF23" |
| }, |
| { |
| "start": 263, |
| "end": 286, |
| "text": "Bansal and Klein (2012)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 817, |
| "end": 838, |
| "text": "(Vilain et al., 1995)", |
| "ref_id": null |
| }, |
| { |
| "start": 845, |
| "end": 870, |
| "text": "(Bagga and Baldwin, 1998)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 884, |
| "end": 895, |
| "text": "(Luo, 2005)", |
| "ref_id": "BIBREF33" |
| }, |
| { |
| "start": 1009, |
| "end": 1031, |
| "text": "(Pradhan et al., 2014)", |
| "ref_id": "BIBREF43" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 289, |
| "end": 296, |
| "text": "Table 2", |
| "ref_id": null |
| }, |
| { |
| "start": 747, |
| "end": 754, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "ACE Evaluation", |
| "sec_num": "6.1" |
| }, |
| { |
| "text": "More in-depth entity linking results are shown in Table 2 . We both evaluate on overall accuracy (how many mentions are correctly linked) as well as two more specific criteria: precision/recall/F 1 of non-NIL 9 predictions, and precision/recall/F 1 of NIL predictions. This latter measure may be important if a system designer is trying to identify new entities in a document. We compare to the results of the best model from Fahrni and Strube (2014) , which is a sophisticated discriminative model incorporating a latent model of mention scope. 10 Our performance is similar to that of Fahrni and Strube (2014) , though the results are not exactly comparable for two reasons. First, our models are trained on different datasets: Fahrni and Strube (2014) train on Wikipedia data whereas we train on the ACE training set. Second, they make use of the annotated head spans in ACE whereas we only use detected heads based on automatic parses. Note that this information is particularly beneficial for locating the right query because \"heads\" may be multiword expressions such as West Bank as part of the phrase southern West Bank.", |
| "cite_spans": [ |
| { |
| "start": 426, |
| "end": 450, |
| "text": "Fahrni and Strube (2014)", |
| "ref_id": "BIBREF15" |
| }, |
| { |
| "start": 546, |
| "end": 548, |
| "text": "10", |
| "ref_id": null |
| }, |
| { |
| "start": 587, |
| "end": 611, |
| "text": "Fahrni and Strube (2014)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 50, |
| "end": 57, |
| "text": "Table 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "ACE Evaluation", |
| "sec_num": "6.1" |
| }, |
| { |
| "text": "9 NIL is a placeholder for mentions which do not link to an article in Wikipedia.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "ACE Evaluation", |
| "sec_num": "6.1" |
| }, |
| { |
| "text": "10 On the TAC datasets, this FAHRNI model substantially outperforms Ratinov et al. (2011) and has comparable performance to Cheng and Roth (2013) Table 3 : Results of model ablations on the ACE development set. We hold out each type of factor in turn from the JOINT model and add each in turn over the IN-DEP. model. We evaluate the coreference performance using the CoNLL metric, NER accuracy, and entity linking accuracy.", |
| "cite_spans": [ |
| { |
| "start": 68, |
| "end": 89, |
| "text": "Ratinov et al. (2011)", |
| "ref_id": "BIBREF48" |
| }, |
| { |
| "start": 124, |
| "end": 145, |
| "text": "Cheng and Roth (2013)", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 146, |
| "end": 153, |
| "text": "Table 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "ACE Evaluation", |
| "sec_num": "6.1" |
| }, |
| { |
| "text": "To evaluate the importance of the different parts of the model, we perform a series of ablations on the model interaction factors. Table 3 shows the results of adding each interaction factor in turn to the baseline and removing each of the three interaction factors from the full joint model (see Figure 4) .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 131, |
| "end": 138, |
| "text": "Table 3", |
| "ref_id": null |
| }, |
| { |
| "start": 297, |
| "end": 306, |
| "text": "Figure 4)", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Model Ablations", |
| "sec_num": "6.2" |
| }, |
| { |
| "text": "Link-NER interactions. These joint factors are the strongest out of any considered here and give large improvements to entity linking and NER. Their utility is unsurprising: effectively, they give NER access to a gazetteer that it did not have in the baseline model. Moreover, our relatively rich featurization of the semantic information on Wikipedia allows the model to make effective use of it.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model Ablations", |
| "sec_num": "6.2" |
| }, |
| { |
| "text": "Coref-NER interactions. These are moderately beneficial to both coreference and NER. Having re-liable semantic types allows the coreference system to be bolder about linking up mention pairs that do not exhibit direct head matches. Part of this is due to our use of monolexical features, which are finegrained enough to avoid the problems with coarse semantic type matching but still effectively learnable.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model Ablations", |
| "sec_num": "6.2" |
| }, |
| { |
| "text": "Coref-Link interactions. These are the least useful of any of the major factors, providing only a small benefit to coreference. This is likely a result of the ACE entity linking annotation standard: a mention like the company is not linked to the specific company it refers to, but instead the Wikipedia article Company. Determining the relatedness of Company to an article like Dell is surprisingly difficult: many related articles share almost no outlinks and may not explicitly link to one another. Further feature engineering could likely improve the utility of these factors.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Model Ablations", |
| "sec_num": "6.2" |
| }, |
| { |
| "text": "The last line of Table 3 shows the results of an experiment where the entity links were not observed during training, i.e. they were left latent. Unsurprisingly, the system is not good at entity linking; however, the model is still able to do as well or even slightly better on coreference and named entity recognition. A possible explanation for this is that even the wrong Wikipedia link can in many cases provide correct semantic information: for example, not knowing which Donald Layton is being referred to is irrelevant for the question of determining that he is a PERSON and may also have little impact on coreference performance. This result indicates that the joint modeling approach is not necessarily dependent on having all tasks annotated. The model can make use of cross-task information even when that information comes via latent variables.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 17, |
| "end": 24, |
| "text": "Table 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Model Ablations", |
| "sec_num": "6.2" |
| }, |
| { |
| "text": "The second part of our evaluation uses the datasets from the CoNLL 2012 Shared Task (Pradhan et al., 2012) , specifically the coreference and NER annotations. All experiments use the standard automatic parses from the shared task and mentions detected according to the method of .", |
| "cite_spans": [ |
| { |
| "start": 84, |
| "end": 106, |
| "text": "(Pradhan et al., 2012)", |
| "ref_id": "BIBREF42" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "Evaluating on OntoNotes carries with it a few complications. First, gold-standard entity linking annotations are not available; we can handle this by", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "a 1 a 2 e 1 e 2 q 1 q 2 t 1 t 2 Dell } O B-ORG I-ORG ... ... N E R + C o r e f L i n k + C o r e f N E R + L i n k", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "The company ...", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "t 8 t 9", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "posted ... Figure 5 : Modified factor graph for OntoNotes-style annotations, where NER chunks can now diverge from mentions for the other two tasks. NER is now modeled with token-synchronous random variables taking values in a BIO tagset. Factors coupling NER and the other tasks now interact with the NER chain via the NER nodes associated with the heads of mentions.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 11, |
| "end": 19, |
| "text": "Figure 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "leaving the e i variables in our model latent. Second, and more seriously, NER chunks are no longer the same as coreference mentions, so our assumption of fixed NER spans no longer holds.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OntoNotes Evaluation", |
| "sec_num": "6.3" |
| }, |
| { |
| "text": "Our model can be adapted to handle NER chunks that diverge from mentions for the other two tasks, as shown in Figure 5 . We have kept the coreference and entity linking portions of our model the same, now defined over system predicted mentions. However, we have replaced mention-synchronous type variables with standard token-synchronous BIO-valued variables. The unary NER features developed in Section 3.1.2 are now applied in the standard way, namely they are conjoined with the BIO labels at each token position. Binary factors between adjacent NER nodes enforce appropriate structural constraints and fire indicator features on transitions. In order to maintain tractability in the face of a larger number of variables and factors in the NER portion of our model, we prune the NER variables' domains using the NER model trained in isolation, similar to the procedure that we described for pruning coreference arcs in Section 5. Cross-task factors that previously would have fired features based on the NE type for a whole mention now instead consult the NE type of that mention's head. 11 In Figure 5 , this can be seen with factors involving e 2 and a 2 touching t 9 (company), the head of the second mention. Since the chain structure enforces consistency between adjacent labels, features that strongly prefer a particular label on one node of a mention will implicitly affect other nodes in that mention and beyond.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 110, |
| "end": 118, |
| "text": "Figure 5", |
| "ref_id": null |
| }, |
| { |
| "start": 1097, |
| "end": 1105, |
| "text": "Figure 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Divergent Coreference and NER", |
| "sec_num": "6.3.1" |
| }, |
| { |
| "text": "Training and inference proceed as before, with a slight modification: instead of computing the MBR setting of every variable in isolation, we instead compute the MBR sequence of labeled NER chunks to avoid the problem of producing inconsistent tag sequences, e.g. O I-PER or B-PER I-ORG. Table 4 shows coreference results from our IN-DEP. and JOINT models compared to three strong systems: , Fernandes et al. (2012) (the winner of the CoNLL shared task), and Bj\u00f6rkelund and Kuhn (2014) (the best reported results on the dataset). Our JOINT method outperforms all three as well as the INDEP. system. 12 Next, we report results on named entity recognition. We use the same OntoNotes splits as for the coreference data; however, the New Testament (NT) Table 5 : Results for NER tagging on the OntoNotes 5.0 / CoNLL 2011 test set. We compare our systems to the Illinois system (Ratinov and Roth, 2009) and the system of Passos et al. (2014) . Our model outperforms both other systems in terms of F 1 , and once again joint modeling gives substantial improvements over our baseline system. portion of the CoNLL 2012 test set does not have gold-standard named entity annotations, so we omit it from our evaluation. This leaves us with exactly the CoNLL 2011 test set. We compare to two existing baselines from the literature: the Illinois NER system of Ratinov and Roth (2009) and the results of Passos et al. (2014) . Table 5 shows that we outperform both prior systems in terms of F 1 , though the ILLINOIS system features higher recall while our system features higher precision.", |
| "cite_spans": [ |
| { |
| "start": 599, |
| "end": 601, |
| "text": "12", |
| "ref_id": null |
| }, |
| { |
| "start": 873, |
| "end": 897, |
| "text": "(Ratinov and Roth, 2009)", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 916, |
| "end": 936, |
| "text": "Passos et al. (2014)", |
| "ref_id": "BIBREF38" |
| }, |
| { |
| "start": 1347, |
| "end": 1370, |
| "text": "Ratinov and Roth (2009)", |
| "ref_id": "BIBREF46" |
| }, |
| { |
| "start": 1390, |
| "end": 1410, |
| "text": "Passos et al. (2014)", |
| "ref_id": "BIBREF38" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 288, |
| "end": 295, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| }, |
| { |
| "start": 749, |
| "end": 756, |
| "text": "Table 5", |
| "ref_id": null |
| }, |
| { |
| "start": 1413, |
| "end": 1420, |
| "text": "Table 5", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Divergent Coreference and NER", |
| "sec_num": "6.3.1" |
| }, |
| { |
| "text": "There are two closely related threads of prior work: those that address the tasks we consider in a different way and those that propose joint models for other related sets of tasks. In the first category, Hajishirzi et al. (2013) integrate entity linking into a sieve-based coreference system (Raghunathan et al., 2010), the aim being to propagate link decisions throughout coreference chains, block corefer-ence links between different entities, and use semantic information to make additional coreference links. build coreference clusters greedily left-to-right and maintain entity link information for each cluster, namely a list of possible targets in the knowledge base as well as a current best link target that is used to extract features (though that might not be the target that is chosen by the end of inference). Cheng and Roth (2013) use coreference as a preprocessing step for entity linking and then solve an ILP to determine the optimal entity link assignments for each mention based on surface properties of that mention, other mentions in its cluster, and other mentions that it is related to. Compared to these systems, our approach maintains greater uncertainty about all random variables throughout inference and uses features to capture cross-task interactions as opposed to rules or hard constraints, which can be less effective for incorporating semantic knowledge (Lee et al., 2011 ).", |
| "cite_spans": [ |
| { |
| "start": 205, |
| "end": 229, |
| "text": "Hajishirzi et al. (2013)", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 824, |
| "end": 845, |
| "text": "Cheng and Roth (2013)", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 1388, |
| "end": 1405, |
| "text": "(Lee et al., 2011", |
| "ref_id": "BIBREF31" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "7" |
| }, |
| { |
| "text": "The joint model most closely related to ours is that of , modeling coreference, named entity recognition, and relation extraction. Their techniques differ from ours in a few notable ways: they choose a different objective function than we do and also opt to freeze the values of certain variables during the belief propagation process rather than pruning with a coarse pass. Sil and Yates (2013) jointly model NER and entity linking in such a way that they maintain uncertainty over mention boundaries, allowing information from Wikipedia to inform segmentation choices. We could strengthen our model by integrating this capability; however, the primary cause of errors for mention detection on OntoNotes is parsing ambiguities rather than named entity ambiguities, so we would be unlikely to see improvements in the experiments presented here. Beyond maintaining uncertainty over mention boundaries, we might also consider maintaining uncertainty over the entire parse structure, as in Finkel and Manning (2009) , who consider parsing and named entity recognition together with a PCFG.", |
| "cite_spans": [ |
| { |
| "start": 375, |
| "end": 395, |
| "text": "Sil and Yates (2013)", |
| "ref_id": "BIBREF49" |
| }, |
| { |
| "start": 987, |
| "end": 1012, |
| "text": "Finkel and Manning (2009)", |
| "ref_id": "BIBREF17" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "7" |
| }, |
| { |
| "text": "We return to our initial motivation for joint modeling, namely that the three tasks we address have the potential to influence one another. Table 3 shows that failing to exploit any of the pairwise interactions between the tasks causes lower performance on at least one of them. Therefore, any pipelined system would necessarily underperform a joint model on whatever task came first in the pipeline, which is undesirable given the importance of these tasks. The trend towards broader and deeper NLP pipelines will only exacerbate this problem and make it more difficult to find a suitable pipeline ordering. In addition to showing that joint modeling is high-performing, we have also shown that it can be implemented with relatively low overhead, requiring no fundamentally new learning or inference techniques, and that it is extensible, due to its modular structure and natural partitioning of features. Taken together, these aspects make a compelling case that joint models can provide a way to integrate deeper levels of processing, particularly for semantic layers of annotation, and that this modeling power does not need to come at the expense of computational efficiency, structural simplicity, or modularity.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 140, |
| "end": 147, |
| "text": "Table 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "8" |
| }, |
| { |
| "text": "The Berkeley Entity Resolution System is available at http://nlp.cs.berkeley.edu.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "8" |
| }, |
| { |
| "text": "System available at http://nlp.cs.berkeley.edu", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "Transactions of the Association for Computational Linguistics, vol. 2, pp. 477-490, 2014. Action Editor: Jason Eisner. Submitted 8/2014; Revised 10/2014; Published November 1, 2014. c 2014 Association for Computational Linguistics.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "Our model could potentially be extended to handle relation extraction or mention detection, which has also been addressed in past joint modeling efforts(Daum\u00e9 and Marcu, 2005;Li and Ji, 2014), but that is outside the scope of the current work.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "Monospaced fonts indicate titles of Wikipedia articles.4 This decision was largely driven by a need to match the ACE linking annotations provided byBentivogli et al. (2010).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "For the next few sections, we assume a fixed-mention version of the NER task, which looks like multi-way classification of semantic types. In Section 6.3.1, we adapt the model to the standard non-fixed-mention setting for OntoNotes.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "Pairwise potentials in sequence-based NER are useful for producing coherent output (e.g. prohibiting configurations like O I-PER), but since we have so far defined the task as operating over fixed mentions, this structural constraint does not come into play for our system.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "These parameters allow us to trade off contributions to the objective from the different tasks, addressing's objection to single objectives for joint models.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "In addition to inferential benefits, pruning an arc allows us to prune entire joint coreference factors and avoid instantiating their associated features, which reduces the memory footprint and time needed to build a factor graph.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "The NER-coreference portion of the model now resembles the skip-chain CRF fromFinkel et al. (2005), though with soft coreference.12 The systems ofChang et al. (2013) and Webster and Curran (2014) perform similarly to the FERNANDES system; changes in the reference implementation of the metrics make exact comparison to printed numbers difficult.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "This work was partially supported by BBN under DARPA contract HR0011-12-C-0014, by an NSF fellowship for the first author, and by a Google Faculty Research Award to the second author. Thanks to Angela Fahrni for helpful discussions about entity linking and for providing system output, to the anonymous reviewers for their insightful comments, and to our action editor Jason Eisner.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgments", |
| "sec_num": null |
| } |
| ], |
| "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 Conference on Language Resources and Evaluation Workshop on Linguistics Coreference", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Amit Bagga and Breck Baldwin. 1998. Algorithms for Scoring Coreference Chains. In Proceedings of the Conference on Language Resources and Evaluation Workshop on Linguistics Coreference.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Coreference Semantics from Web Features", |
| "authors": [ |
| { |
| "first": "Mohit", |
| "middle": [], |
| "last": "Bansal", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mohit Bansal and Dan Klein. 2012. Coreference Seman- tics from Web Features. In Proceedings of the Associ- ation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Extending English ACE", |
| "authors": [ |
| { |
| "first": "Luisa", |
| "middle": [], |
| "last": "Bentivogli", |
| "suffix": "" |
| }, |
| { |
| "first": "Pamela", |
| "middle": [], |
| "last": "Forner", |
| "suffix": "" |
| }, |
| { |
| "first": "Claudio", |
| "middle": [], |
| "last": "Giuliano", |
| "suffix": "" |
| }, |
| { |
| "first": "Alessandro", |
| "middle": [], |
| "last": "Marchetti", |
| "suffix": "" |
| }, |
| { |
| "first": "Emanuele", |
| "middle": [], |
| "last": "Pianta", |
| "suffix": "" |
| }, |
| { |
| "first": "Kateryna", |
| "middle": [], |
| "last": "Tymoshenko", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Luisa Bentivogli, Pamela Forner, Claudio Giuliano, Alessandro Marchetti, Emanuele Pianta, and Kateryna Tymoshenko. 2010. Extending English ACE", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Corpus Annotation with Ground-truth Links to Wikipedia", |
| "authors": [], |
| "year": null, |
| "venue": "Proceedings of the Workshop on The People's Web Meets NLP: Collaboratively Constructed Semantic Resources", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Corpus Annotation with Ground-truth Links to Wikipedia. In Proceedings of the Workshop on The People's Web Meets NLP: Collaboratively Con- structed Semantic Resources.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Learning Structured Perceptrons for Coreference Resolution with Latent Antecedents and Non-local Features", |
| "authors": [ |
| { |
| "first": "Anders", |
| "middle": [], |
| "last": "Bj\u00f6rkelund", |
| "suffix": "" |
| }, |
| { |
| "first": "Jonas", |
| "middle": [], |
| "last": "Kuhn", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Anders Bj\u00f6rkelund and Jonas Kuhn. 2014. Learn- ing Structured Perceptrons for Coreference Resolution with Latent Antecedents and Non-local Features. In Proceedings of the Association for Computational Lin- guistics.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Fast Inference in Phrase Extraction Models with Belief Propagation", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Burkett", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the North American Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "David Burkett and Dan Klein. 2012. Fast Inference in Phrase Extraction Models with Belief Propagation. In Proceedings of the North American Chapter of the As- sociation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "A Constrained Latent Variable Model for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Kai-Wei", |
| "middle": [], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "Rajhans", |
| "middle": [], |
| "last": "Samdani", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Kai-Wei Chang, Rajhans Samdani, and Dan Roth. 2013. A Constrained Latent Variable Model for Coreference Resolution. In Proceedings of the Conference on Em- pirical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Relational Inference for Wikification", |
| "authors": [ |
| { |
| "first": "Xiao", |
| "middle": [], |
| "last": "Cheng", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Xiao Cheng and Dan Roth. 2013. Relational Inference for Wikification. In Proceedings of the Conference on Empirical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Large-Scale Named Entity Disambiguation Based on Wikipedia Data", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Silviu Cucerzan", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL)", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Silviu Cucerzan. 2007. Large-Scale Named Entity Dis- ambiguation Based on Wikipedia Data. In Proceed- ings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL).", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "A Large-scale Exploration of Effective Global Features for a Joint Entity Detection and Tracking Model", |
| "authors": [ |
| { |
| "first": "Hal", |
| "middle": [], |
| "last": "Daum\u00e9", |
| "suffix": "" |
| }, |
| { |
| "first": ",", |
| "middle": [], |
| "last": "Iii", |
| "suffix": "" |
| }, |
| { |
| "first": "Daniel", |
| "middle": [], |
| "last": "Marcu", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Hal Daum\u00e9, III and Daniel Marcu. 2005. A Large-scale Exploration of Effective Global Features for a Joint Entity Detection and Tracking Model. In Proceedings of the Conference on Empirical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Specialized Models and Ranking for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Pascal", |
| "middle": [], |
| "last": "Denis", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Baldridge", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Pascal Denis and Jason Baldridge. 2008. Specialized Models and Ranking for Coreference Resolution. In Proceedings of the Conference on Empirical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Entity Disambiguation for Knowledge Base Population", |
| "authors": [ |
| { |
| "first": "Mark", |
| "middle": [], |
| "last": "Dredze", |
| "suffix": "" |
| }, |
| { |
| "first": "Paul", |
| "middle": [], |
| "last": "Mcnamee", |
| "suffix": "" |
| }, |
| { |
| "first": "Delip", |
| "middle": [], |
| "last": "Rao", |
| "suffix": "" |
| }, |
| { |
| "first": "Adam", |
| "middle": [], |
| "last": "Gerber", |
| "suffix": "" |
| }, |
| { |
| "first": "Tim", |
| "middle": [], |
| "last": "Finin", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the International Conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mark Dredze, Paul McNamee, Delip Rao, Adam Ger- ber, and Tim Finin. 2010. Entity Disambiguation for Knowledge Base Population. In Proceedings of the In- ternational Conference on Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Adaptive Subgradient Methods for Online Learning and Stochastic Optimization", |
| "authors": [ |
| { |
| "first": "John", |
| "middle": [], |
| "last": "Duchi", |
| "suffix": "" |
| }, |
| { |
| "first": "Elad", |
| "middle": [], |
| "last": "Hazan", |
| "suffix": "" |
| }, |
| { |
| "first": "Yoram", |
| "middle": [], |
| "last": "Singer", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Journal of Machine Learning Research", |
| "volume": "12", |
| "issue": "", |
| "pages": "2121--2159", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "John Duchi, Elad Hazan, and Yoram Singer. 2011. Adaptive Subgradient Methods for Online Learning and Stochastic Optimization. Journal of Machine Learning Research, 12:2121-2159, July.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Easy Victories and Uphill Battles in Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Greg", |
| "middle": [], |
| "last": "Durrett", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Greg Durrett and Dan Klein. 2013. Easy Victories and Uphill Battles in Coreference Resolution. In Proceed- ings of the Conference on Empirical Methods in Natu- ral Language Processing, October.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Decentralized Entity-Level Modeling for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Greg", |
| "middle": [], |
| "last": "Durrett", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Hall", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Greg Durrett, David Hall, and Dan Klein. 2013. Decen- tralized Entity-Level Modeling for Coreference Reso- lution. In Proceedings of the Association for Compu- tational Linguistics.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "A Latent Variable Model for Discourse-aware Concept and Entity Disambiguation", |
| "authors": [ |
| { |
| "first": "Angela", |
| "middle": [], |
| "last": "Fahrni", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Strube", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the European Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Angela Fahrni and Michael Strube. 2014. A Latent Variable Model for Discourse-aware Concept and En- tity Disambiguation. In Proceedings of the European Chapter of the Association for Computational Linguis- tics.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Latent Structure Perceptron with Feature Induction for Unrestricted Coreference Resolution", |
| "authors": [ |
| { |
| "first": "C\u00edcero", |
| "middle": [], |
| "last": "Eraldo Rezende Fernandes", |
| "suffix": "" |
| }, |
| { |
| "first": "Santos", |
| "middle": [], |
| "last": "Nogueira Dos", |
| "suffix": "" |
| }, |
| { |
| "first": "Ruy Luiz", |
| "middle": [], |
| "last": "Milidi\u00fa", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the Joint Conference on Empirical Methods in Natural Language Proceedings and Conference on Computational Natural Language Learning -Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Eraldo Rezende Fernandes, C\u00edcero Nogueira dos Santos, and Ruy Luiz Milidi\u00fa. 2012. Latent Structure Per- ceptron with Feature Induction for Unrestricted Coref- erence Resolution. In Proceedings of the Joint Con- ference on Empirical Methods in Natural Language Proceedings and Conference on Computational Nat- ural Language Learning -Shared Task.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Joint Parsing and Named Entity Recognition", |
| "authors": [ |
| { |
| "first": "Jenny", |
| "middle": [ |
| "Rose" |
| ], |
| "last": "Finkel", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [ |
| "D" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the North American Chapter for the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jenny Rose Finkel and Christopher D. Manning. 2009. Joint Parsing and Named Entity Recognition. In Pro- ceedings of the North American Chapter for the Asso- ciation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "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 Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jenny Rose Finkel, Trond Grenager, and Christopher Manning. 2005. Incorporating Non-local Information into Information Extraction Systems by Gibbs Sam- pling. In Proceedings of the Association for Computa- tional Linguistics.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "Softmax-Margin CRFs: Training Log-Linear Models with Cost Functions", |
| "authors": [ |
| { |
| "first": "Kevin", |
| "middle": [], |
| "last": "Gimpel", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Noah", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Smith", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the North American Chapter for the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Kevin Gimpel and Noah A. Smith. 2010. Softmax- Margin CRFs: Training Log-Linear Models with Cost Functions. In Proceedings of the North American Chapter for the Association for Computational Lin- guistics.", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Improving Candidate Generation for Entity Linking", |
| "authors": [ |
| { |
| "first": "Yuhang", |
| "middle": [], |
| "last": "Guo", |
| "suffix": "" |
| }, |
| { |
| "first": "Bing", |
| "middle": [], |
| "last": "Qin", |
| "suffix": "" |
| }, |
| { |
| "first": "Yuqin", |
| "middle": [], |
| "last": "Li", |
| "suffix": "" |
| }, |
| { |
| "first": "Ting", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "Sheng Li", |
| "middle": [], |
| "last": "Li", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Natural Language Processing and Information Systems", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Yuhang Guo, Bing Qin, Yuqin Li, Ting Liu, and Sheng Li Li. 2013. Improving Candidate Generation for Entity Linking. In Natural Language Processing and Infor- mation Systems.", |
| "links": null |
| }, |
| "BIBREF21": { |
| "ref_id": "b21", |
| "title": "Evaluating Entity Linking with Wikipedia", |
| "authors": [ |
| { |
| "first": "Ben", |
| "middle": [], |
| "last": "Hachey", |
| "suffix": "" |
| }, |
| { |
| "first": "Will", |
| "middle": [], |
| "last": "Radford", |
| "suffix": "" |
| }, |
| { |
| "first": "Joel", |
| "middle": [], |
| "last": "Nothman", |
| "suffix": "" |
| }, |
| { |
| "first": "Matthew", |
| "middle": [], |
| "last": "Honnibal", |
| "suffix": "" |
| }, |
| { |
| "first": "James", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Artificial Intelligence", |
| "volume": "194", |
| "issue": "", |
| "pages": "130--150", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ben Hachey, Will Radford, Joel Nothman, Matthew Hon- nibal, and James R. Curran. 2013. Evaluating En- tity Linking with Wikipedia. Artificial Intelligence, 194:130-150, January.", |
| "links": null |
| }, |
| "BIBREF22": { |
| "ref_id": "b22", |
| "title": "Simple Coreference Resolution with Rich Syntactic and Semantic Features", |
| "authors": [ |
| { |
| "first": "Aria", |
| "middle": [], |
| "last": "Haghighi", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Aria Haghighi and Dan Klein. 2009. Simple Coreference Resolution with Rich Syntactic and Semantic Features. In Proceedings of the Conference on Empirical Meth- ods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF23": { |
| "ref_id": "b23", |
| "title": "Coreference Resolution in a Modular, Entity-Centered Model", |
| "authors": [ |
| { |
| "first": "Aria", |
| "middle": [], |
| "last": "Haghighi", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the North American Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Aria Haghighi and Dan Klein. 2010. Coreference Res- olution in a Modular, Entity-Centered Model. In Pro- ceedings of the North American Chapter of the Asso- ciation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF24": { |
| "ref_id": "b24", |
| "title": "Joint Coreference Resolution and Named-Entity Linking with Multi-Pass Sieves", |
| "authors": [ |
| { |
| "first": "Hannaneh", |
| "middle": [], |
| "last": "Hajishirzi", |
| "suffix": "" |
| }, |
| { |
| "first": "Leila", |
| "middle": [], |
| "last": "Zilles", |
| "suffix": "" |
| }, |
| { |
| "first": "Daniel", |
| "middle": [ |
| "S" |
| ], |
| "last": "Weld", |
| "suffix": "" |
| }, |
| { |
| "first": "Luke", |
| "middle": [], |
| "last": "Zettlemoyer", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Hannaneh Hajishirzi, Leila Zilles, Daniel S. Weld, and Luke Zettlemoyer. 2013. Joint Coreference Res- olution and Named-Entity Linking with Multi-Pass Sieves. In Proceedings of the Conference on Empir- ical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF25": { |
| "ref_id": "b25", |
| "title": "Robust Disambiguation of Named Entities in Text", |
| "authors": [ |
| { |
| "first": "Johannes", |
| "middle": [], |
| "last": "Hoffart", |
| "suffix": "" |
| }, |
| { |
| "first": "Mohamed", |
| "middle": [ |
| "Amir" |
| ], |
| "last": "Yosef", |
| "suffix": "" |
| }, |
| { |
| "first": "Ilaria", |
| "middle": [], |
| "last": "Bordino", |
| "suffix": "" |
| }, |
| { |
| "first": "Hagen", |
| "middle": [], |
| "last": "F\u00fcrstenau", |
| "suffix": "" |
| }, |
| { |
| "first": "Manfred", |
| "middle": [], |
| "last": "Pinkal", |
| "suffix": "" |
| }, |
| { |
| "first": "Marc", |
| "middle": [], |
| "last": "Spaniol", |
| "suffix": "" |
| }, |
| { |
| "first": "Bilyana", |
| "middle": [], |
| "last": "Taneva", |
| "suffix": "" |
| }, |
| { |
| "first": "Stefan", |
| "middle": [], |
| "last": "Thater", |
| "suffix": "" |
| }, |
| { |
| "first": "Gerhard", |
| "middle": [], |
| "last": "Weikum", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Johannes Hoffart, Mohamed Amir Yosef, Ilaria Bordino, Hagen F\u00fcrstenau, Manfred Pinkal, Marc Spaniol, Bilyana Taneva, Stefan Thater, and Gerhard Weikum. 2011. Robust Disambiguation of Named Entities in Text. In Proceedings of the Conference on Empirical Methods in Natural Language Processing.", |
| "links": null |
| }, |
| "BIBREF26": { |
| "ref_id": "b26", |
| "title": "OntoNotes: The 90% Solution", |
| "authors": [ |
| { |
| "first": "Eduard", |
| "middle": [], |
| "last": "Hovy", |
| "suffix": "" |
| }, |
| { |
| "first": "Mitchell", |
| "middle": [], |
| "last": "Marcus", |
| "suffix": "" |
| }, |
| { |
| "first": "Martha", |
| "middle": [], |
| "last": "Palmer", |
| "suffix": "" |
| }, |
| { |
| "first": "Lance", |
| "middle": [], |
| "last": "Ramshaw", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Weischedel", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the North American Chapter of the Association for Computational Linguistics: Short Papers", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Eduard Hovy, Mitchell Marcus, Martha Palmer, Lance Ramshaw, and Ralph Weischedel. 2006. OntoNotes: The 90% Solution. In Proceedings of the North Ameri- can Chapter of the Association for Computational Lin- guistics: Short Papers.", |
| "links": null |
| }, |
| "BIBREF27": { |
| "ref_id": "b27", |
| "title": "Knowledge Base Population: Successful Approaches and Challenges", |
| "authors": [ |
| { |
| "first": "Heng", |
| "middle": [], |
| "last": "Ji", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Grishman", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Heng Ji and Ralph Grishman. 2011. Knowledge Base Population: Successful Approaches and Challenges. In Proceedings of the Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF28": { |
| "ref_id": "b28", |
| "title": "Exploiting Wikipedia as External Knowledge for Named Entity Recognition", |
| "authors": [ |
| { |
| "first": "Kentaro", |
| "middle": [], |
| "last": "Jun'ichi Kazama", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Torisawa", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jun'ichi Kazama and Kentaro Torisawa. 2007. Exploit- ing Wikipedia as External Knowledge for Named En- tity Recognition. In Proceedings of the Joint Confer- ence on Empirical Methods in Natural Language Pro- cessing and Computational Natural Language Learn- ing.", |
| "links": null |
| }, |
| "BIBREF29": { |
| "ref_id": "b29", |
| "title": "Simple Semi-supervised Dependency Parsing", |
| "authors": [ |
| { |
| "first": "Terry", |
| "middle": [], |
| "last": "Koo", |
| "suffix": "" |
| }, |
| { |
| "first": "Xavier", |
| "middle": [], |
| "last": "Carreras", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Collins", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Terry Koo, Xavier Carreras, and Michael Collins. 2008. Simple Semi-supervised Dependency Parsing. In Pro- ceedings of the Association for Computational Lin- guistics.", |
| "links": null |
| }, |
| "BIBREF30": { |
| "ref_id": "b30", |
| "title": "Conditional Random Fields: Probabilistic Models for Segmenting and Labeling Sequence Data", |
| "authors": [ |
| { |
| "first": "John", |
| "middle": [ |
| "D" |
| ], |
| "last": "Lafferty", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [], |
| "last": "Mccallum", |
| "suffix": "" |
| }, |
| { |
| "first": "Fernando", |
| "middle": [ |
| "C N" |
| ], |
| "last": "Pereira", |
| "suffix": "" |
| } |
| ], |
| "year": 2001, |
| "venue": "Proceedings of the International Conference on Machine Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. 2001. Conditional Random Fields: Proba- bilistic Models for Segmenting and Labeling Sequence Data. In Proceedings of the International Conference on Machine Learning.", |
| "links": null |
| }, |
| "BIBREF31": { |
| "ref_id": "b31", |
| "title": "Stanford's Multi-Pass Sieve Coreference Resolution System at the CoNLL-2011 Shared Task", |
| "authors": [ |
| { |
| "first": "Heeyoung", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "Yves", |
| "middle": [], |
| "last": "Peirsman", |
| "suffix": "" |
| }, |
| { |
| "first": "Angel", |
| "middle": [], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "Nathanael", |
| "middle": [], |
| "last": "Chambers", |
| "suffix": "" |
| }, |
| { |
| "first": "Mihai", |
| "middle": [], |
| "last": "Surdeanu", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Jurafsky", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Conference on Computational Natural Language Learning: Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Heeyoung Lee, Yves Peirsman, Angel Chang, Nathanael Chambers, Mihai Surdeanu, and Dan Jurafsky. 2011. Stanford's Multi-Pass Sieve Coreference Resolution System at the CoNLL-2011 Shared Task. In Proceed- ings of the Conference on Computational Natural Lan- guage Learning: Shared Task.", |
| "links": null |
| }, |
| "BIBREF32": { |
| "ref_id": "b32", |
| "title": "Incremental Joint Extraction of Entity Mentions and Relations", |
| "authors": [ |
| { |
| "first": "Qi", |
| "middle": [], |
| "last": "Li", |
| "suffix": "" |
| }, |
| { |
| "first": "Heng", |
| "middle": [], |
| "last": "Ji", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Qi Li and Heng Ji. 2014. Incremental Joint Extraction of Entity Mentions and Relations. In Proceedings of the Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF33": { |
| "ref_id": "b33", |
| "title": "On Coreference Resolution Performance Metrics", |
| "authors": [ |
| { |
| "first": "Xiaoqiang", |
| "middle": [], |
| "last": "Luo", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Xiaoqiang Luo. 2005. On Coreference Resolution Per- formance Metrics. In Proceedings of the Conference on Empirical Methods in Natural Language Process- ing.", |
| "links": null |
| }, |
| "BIBREF34": { |
| "ref_id": "b34", |
| "title": "Learning to Link with Wikipedia", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Milne", |
| "suffix": "" |
| }, |
| { |
| "first": "Ian", |
| "middle": [ |
| "H" |
| ], |
| "last": "Witten", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Conference on Information and Knowledge Management", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "David Milne and Ian H. Witten. 2008. Learning to Link with Wikipedia. In Proceedings of the Conference on Information and Knowledge Management.", |
| "links": null |
| }, |
| "BIBREF35": { |
| "ref_id": "b35", |
| "title": "Supervised Noun Phrase Coreference Research: The First Fifteen Years", |
| "authors": [ |
| { |
| "first": "Vincent", |
| "middle": [], |
| "last": "Ng", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Vincent Ng. 2010. Supervised Noun Phrase Coreference Research: The First Fifteen Years. In Proceedings of the Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF36": { |
| "ref_id": "b36", |
| "title": "The ACE 2005 Evaluation Plan", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Nist", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "NIST", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "NIST. 2005. The ACE 2005 Evaluation Plan. In NIST.", |
| "links": null |
| }, |
| "BIBREF37": { |
| "ref_id": "b37", |
| "title": "Learning Multilingual Named Entity Recognition from Wikipedia", |
| "authors": [ |
| { |
| "first": "Joel", |
| "middle": [], |
| "last": "Nothman", |
| "suffix": "" |
| }, |
| { |
| "first": "Nicky", |
| "middle": [], |
| "last": "Ringland", |
| "suffix": "" |
| }, |
| { |
| "first": "Will", |
| "middle": [], |
| "last": "Radford", |
| "suffix": "" |
| }, |
| { |
| "first": "Tara", |
| "middle": [], |
| "last": "Murphy", |
| "suffix": "" |
| }, |
| { |
| "first": "James", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Artificial Intelligence", |
| "volume": "194", |
| "issue": "", |
| "pages": "151--175", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Joel Nothman, Nicky Ringland, Will Radford, Tara Mur- phy, and James R. Curran. 2013. Learning Multilin- gual Named Entity Recognition from Wikipedia. Arti- ficial Intelligence, 194:151-175, January.", |
| "links": null |
| }, |
| "BIBREF38": { |
| "ref_id": "b38", |
| "title": "Lexicon Infused Phrase Embeddings for Named Entity Resolution", |
| "authors": [ |
| { |
| "first": "Alexandre", |
| "middle": [], |
| "last": "Passos", |
| "suffix": "" |
| }, |
| { |
| "first": "Vineet", |
| "middle": [], |
| "last": "Kumar", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [], |
| "last": "Mccallum", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Alexandre Passos, Vineet Kumar, and Andrew McCal- lum. 2014. Lexicon Infused Phrase Embeddings for Named Entity Resolution. In Proceedings of the Con- ference on Computational Natural Language Learn- ing.", |
| "links": null |
| }, |
| "BIBREF39": { |
| "ref_id": "b39", |
| "title": "Learning Accurate, Compact, and Interpretable Tree Annotation", |
| "authors": [ |
| { |
| "first": "Slav", |
| "middle": [], |
| "last": "Petrov", |
| "suffix": "" |
| }, |
| { |
| "first": "Leon", |
| "middle": [], |
| "last": "Barrett", |
| "suffix": "" |
| }, |
| { |
| "first": "Romain", |
| "middle": [], |
| "last": "Thibaux", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the Conference on Computational Linguistics and the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Slav Petrov, Leon Barrett, Romain Thibaux, and Dan Klein. 2006. Learning Accurate, Compact, and Inter- pretable Tree Annotation. In Proceedings of the Con- ference on Computational Linguistics and the Associ- ation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF40": { |
| "ref_id": "b40", |
| "title": "Exploiting Semantic Role Labeling, WordNet and Wikipedia for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Paolo", |
| "middle": [], |
| "last": "Simone", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Ponzetto", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Strube", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the North American Chapter of the Association of Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Simone Paolo Ponzetto and Michael Strube. 2006. Exploiting Semantic Role Labeling, WordNet and Wikipedia for Coreference Resolution. In Proceed- ings of the North American Chapter of the Association of Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF41": { |
| "ref_id": "b41", |
| "title": "CoNLL-2011 Shared Task: Modeling Unrestricted Coreference in OntoNotes", |
| "authors": [ |
| { |
| "first": "Sameer", |
| "middle": [], |
| "last": "Pradhan", |
| "suffix": "" |
| }, |
| { |
| "first": "Lance", |
| "middle": [], |
| "last": "Ramshaw", |
| "suffix": "" |
| }, |
| { |
| "first": "Mitchell", |
| "middle": [], |
| "last": "Marcus", |
| "suffix": "" |
| }, |
| { |
| "first": "Martha", |
| "middle": [], |
| "last": "Palmer", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Weischedel", |
| "suffix": "" |
| }, |
| { |
| "first": "Nianwen", |
| "middle": [], |
| "last": "Xue", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Conference on Computational Natural Language Learning: Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sameer Pradhan, Lance Ramshaw, Mitchell Marcus, Martha Palmer, Ralph Weischedel, and Nianwen Xue. 2011. CoNLL-2011 Shared Task: Modeling Unre- stricted Coreference in OntoNotes. In Proceedings of the Conference on Computational Natural Language Learning: Shared Task.", |
| "links": null |
| }, |
| "BIBREF42": { |
| "ref_id": "b42", |
| "title": "CoNLL-2012 Shared Task: Modeling Multilingual Unrestricted Coreference in OntoNotes", |
| "authors": [ |
| { |
| "first": "Alessandro", |
| "middle": [], |
| "last": "Sameer Pradhan", |
| "suffix": "" |
| }, |
| { |
| "first": "Nianwen", |
| "middle": [], |
| "last": "Moschitti", |
| "suffix": "" |
| }, |
| { |
| "first": "Olga", |
| "middle": [], |
| "last": "Xue", |
| "suffix": "" |
| }, |
| { |
| "first": "Yuchen", |
| "middle": [], |
| "last": "Uryupina", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Joint Conference on EMNLP and CoNLL -Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Olga Uryupina, and Yuchen Zhang. 2012. CoNLL- 2012 Shared Task: Modeling Multilingual Unre- stricted Coreference in OntoNotes. In Joint Confer- ence on EMNLP and CoNLL -Shared Task.", |
| "links": null |
| }, |
| "BIBREF43": { |
| "ref_id": "b43", |
| "title": "Scoring Coreference Partitions of Predicted Mentions: A Reference Implementation", |
| "authors": [ |
| { |
| "first": "Xiaoqiang", |
| "middle": [], |
| "last": "Sameer Pradhan", |
| "suffix": "" |
| }, |
| { |
| "first": "Marta", |
| "middle": [], |
| "last": "Luo", |
| "suffix": "" |
| }, |
| { |
| "first": "Eduard", |
| "middle": [], |
| "last": "Recasens", |
| "suffix": "" |
| }, |
| { |
| "first": "Vincent", |
| "middle": [], |
| "last": "Hovy", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Ng", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Strube", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sameer Pradhan, Xiaoqiang Luo, Marta Recasens, Ed- uard Hovy, Vincent Ng, and Michael Strube. 2014. Scoring Coreference Partitions of Predicted Mentions: A Reference Implementation. In Proceedings of the Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF44": { |
| "ref_id": "b44", |
| "title": "A Multi-Pass Sieve for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Heeyoung", |
| "middle": [], |
| "last": "Karthik Raghunathan", |
| "suffix": "" |
| }, |
| { |
| "first": "Sudarshan", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "Nathanael", |
| "middle": [], |
| "last": "Rangarajan", |
| "suffix": "" |
| }, |
| { |
| "first": "Mihai", |
| "middle": [], |
| "last": "Chambers", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Surdeanu", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [], |
| "last": "Jurafsky", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Karthik Raghunathan, Heeyoung Lee, Sudarshan Ran- garajan, Nathanael Chambers, Mihai Surdeanu, Dan Jurafsky, and Christopher Manning. 2010. A Multi- Pass Sieve for Coreference Resolution. In Proceed- ings of the Conference on Empirical Methods in Natu- ral Language Processing.", |
| "links": null |
| }, |
| "BIBREF45": { |
| "ref_id": "b45", |
| "title": "Coreference Resolution with World Knowledge", |
| "authors": [ |
| { |
| "first": "Altaf", |
| "middle": [], |
| "last": "Rahman", |
| "suffix": "" |
| }, |
| { |
| "first": "Vincent", |
| "middle": [], |
| "last": "Ng", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Association for Computational Linguistics: Human Language Technologies", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Altaf Rahman and Vincent Ng. 2011. Coreference Res- olution with World Knowledge. In Proceedings of the Association for Computational Linguistics: Hu- man Language Technologies.", |
| "links": null |
| }, |
| "BIBREF46": { |
| "ref_id": "b46", |
| "title": "Design Challenges and Misconceptions in Named Entity Recognition", |
| "authors": [ |
| { |
| "first": "Lev", |
| "middle": [], |
| "last": "Ratinov", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Lev Ratinov and Dan Roth. 2009. Design Challenges and Misconceptions in Named Entity Recognition. In Proceedings of the Conference on Computational Nat- ural Language Learning.", |
| "links": null |
| }, |
| "BIBREF47": { |
| "ref_id": "b47", |
| "title": "Learning-based Multi-sieve Co-reference Resolution with Knowledge", |
| "authors": [ |
| { |
| "first": "Lev", |
| "middle": [], |
| "last": "Ratinov", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Lev Ratinov and Dan Roth. 2012. Learning-based Multi-sieve Co-reference Resolution with Knowledge. In Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Com- putational Natural Language Learning.", |
| "links": null |
| }, |
| "BIBREF48": { |
| "ref_id": "b48", |
| "title": "Local and Global Algorithms for Disambiguation to Wikipedia", |
| "authors": [ |
| { |
| "first": "Lev", |
| "middle": [], |
| "last": "Ratinov", |
| "suffix": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Lev Ratinov, Dan Roth, Doug Downey, and Mike Ander- son. 2011. Local and Global Algorithms for Disam- biguation to Wikipedia. In Proceedings of the Associ- ation for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF49": { |
| "ref_id": "b49", |
| "title": "Re-ranking for Joint Named-Entity Recognition and Linking", |
| "authors": [ |
| { |
| "first": "Avirup", |
| "middle": [], |
| "last": "Sil", |
| "suffix": "" |
| }, |
| { |
| "first": "Alexander", |
| "middle": [], |
| "last": "Yates", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the International Conference on Information and Knowledge Management", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Avirup Sil and Alexander Yates. 2013. Re-ranking for Joint Named-Entity Recognition and Linking. In Pro- ceedings of the International Conference on Informa- tion and Knowledge Management.", |
| "links": null |
| }, |
| "BIBREF50": { |
| "ref_id": "b50", |
| "title": "Joint Inference of Entities, Relations, and Coreference", |
| "authors": [ |
| { |
| "first": "Sameer", |
| "middle": [], |
| "last": "Singh", |
| "suffix": "" |
| }, |
| { |
| "first": "Sebastian", |
| "middle": [], |
| "last": "Riedel", |
| "suffix": "" |
| }, |
| { |
| "first": "Brian", |
| "middle": [], |
| "last": "Martin", |
| "suffix": "" |
| }, |
| { |
| "first": "Jiaping", |
| "middle": [], |
| "last": "Zheng", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [], |
| "last": "Mccallum", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the 2013 Workshop on Automated Knowledge Base Construction", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sameer Singh, Sebastian Riedel, Brian Martin, Jiaping Zheng, and Andrew McCallum. 2013. Joint Inference of Entities, Relations, and Coreference. In Proceed- ings of the 2013 Workshop on Automated Knowledge Base Construction.", |
| "links": null |
| }, |
| "BIBREF51": { |
| "ref_id": "b51", |
| "title": "Dependency Parsing by Belief Propagation", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [ |
| "A" |
| ], |
| "last": "Smith", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Eisner", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "David A. Smith and Jason Eisner. 2008. Dependency Parsing by Belief Propagation. In Proceedings of the Conference on Empirical Methods in Natural Lan- guage Processing.", |
| "links": null |
| }, |
| "BIBREF52": { |
| "ref_id": "b52", |
| "title": "A Machine Learning Approach to Coreference Resolution of Noun Phrases", |
| "authors": [], |
| "year": 2001, |
| "venue": "Computational Linguistics", |
| "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 Coref- erence Resolution of Noun Phrases. Computational Linguistics, 27(4):521-544, December.", |
| "links": null |
| }, |
| "BIBREF53": { |
| "ref_id": "b53", |
| "title": "Conundrums in Noun Phrase Coreference Resolution: Making Sense of the Stateof-the-Art", |
| "authors": [ |
| { |
| "first": "Veselin", |
| "middle": [], |
| "last": "Stoyanov", |
| "suffix": "" |
| }, |
| { |
| "first": "Nathan", |
| "middle": [], |
| "last": "Gilbert", |
| "suffix": "" |
| }, |
| { |
| "first": "Claire", |
| "middle": [], |
| "last": "Cardie", |
| "suffix": "" |
| }, |
| { |
| "first": "Ellen", |
| "middle": [], |
| "last": "Riloff", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Veselin Stoyanov, Nathan Gilbert, Claire Cardie, and Ellen Riloff. 2009. Conundrums in Noun Phrase Coreference Resolution: Making Sense of the State- of-the-Art. In Proceedings of the Association for Com- putational Linguistics.", |
| "links": null |
| }, |
| "BIBREF54": { |
| "ref_id": "b54", |
| "title": "Coreference Resolution with Reconcile", |
| "authors": [ |
| { |
| "first": "Veselin", |
| "middle": [], |
| "last": "Stoyanov", |
| "suffix": "" |
| }, |
| { |
| "first": "Claire", |
| "middle": [], |
| "last": "Cardie", |
| "suffix": "" |
| }, |
| { |
| "first": "Nathan", |
| "middle": [], |
| "last": "Gilbert", |
| "suffix": "" |
| }, |
| { |
| "first": "Ellen", |
| "middle": [], |
| "last": "Riloff", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Buttler", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Hysom", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the Association for Computational Linguistics: Short Papers", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Veselin Stoyanov, Claire Cardie, Nathan Gilbert, Ellen Riloff, David Buttler, and David Hysom. 2010. Coref- erence Resolution with Reconcile. In Proceedings of the Association for Computational Linguistics: Short Papers.", |
| "links": null |
| }, |
| "BIBREF55": { |
| "ref_id": "b55", |
| "title": "Dennis Connolly, and Lynette Hirschman. 1995. A Model-Theoretic 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 Conference on Message Understanding", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "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 Proceed- ings of the Conference on Message Understanding.", |
| "links": null |
| }, |
| "BIBREF56": { |
| "ref_id": "b56", |
| "title": "Limited Memory Incremental Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Kellie", |
| "middle": [], |
| "last": "Webster", |
| "suffix": "" |
| }, |
| { |
| "first": "James", |
| "middle": [ |
| "R" |
| ], |
| "last": "Curran", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the Conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Kellie Webster and James R. Curran. 2014. Limited Memory Incremental Coreference Resolution. In Pro- ceedings of the Conference on Computational Linguis- tics.", |
| "links": null |
| }, |
| "BIBREF57": { |
| "ref_id": "b57", |
| "title": "A Robust Risk Minimization Based Named Entity Recognition System", |
| "authors": [ |
| { |
| "first": "Tong", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Johnson", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of the Conference on Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Tong Zhang and David Johnson. 2003. A Robust Risk Minimization Based Named Entity Recognition Sys- tem. In Proceedings of the Conference on Natural Language Learning.", |
| "links": null |
| }, |
| "BIBREF58": { |
| "ref_id": "b58", |
| "title": "Dynamic Knowledge-Base Alignment for Coreference Resolution", |
| "authors": [ |
| { |
| "first": "Jiaping", |
| "middle": [], |
| "last": "Zheng", |
| "suffix": "" |
| }, |
| { |
| "first": "Luke", |
| "middle": [], |
| "last": "Vilnis", |
| "suffix": "" |
| }, |
| { |
| "first": "Sameer", |
| "middle": [], |
| "last": "Singh", |
| "suffix": "" |
| }, |
| { |
| "first": "Jinho", |
| "middle": [ |
| "D" |
| ], |
| "last": "Choi", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [], |
| "last": "Mccallum", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jiaping Zheng, Luke Vilnis, Sameer Singh, Jinho D. Choi, and Andrew McCallum. 2013. Dynamic Knowledge-Base Alignment for Coreference Resolu- tion. In Proceedings of the Conference on Computa- tional Natural Language Learning.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "type_str": "figure", |
| "num": null, |
| "text": "Revenues of $14.5 billion were posted by Dell1. The company1 ... en.wikipedia.org/wiki/Dell en.wikipedia.org/wiki/Michael_Dell Infobox type: company Infobox type: personORGANIZATIONPERSON Coreference can help resolve ambiguous cases of semantic types or entity links: propagating information across coreference arcs can inform us that, in this context, Dell is an organization and should therefore link to the article on Dell in Wikipedia.", |
| "uris": null |
| }, |
| "TABREF0": { |
| "num": null, |
| "content": "<table><tr><td>en.wikipedia.org/wiki/Freddie_Mac</td></tr><tr><td>NIL</td></tr><tr><td>PERSON</td></tr><tr><td>Figure 2: Entity links can help resolve ambiguous cases of coreference and entity types. Standard NER and coreference systems might fail to handle Freddie Mac correctly, but incorporating semantic information from Wikipedia makes this decision easier.</td></tr><tr><td>mance of the model on all three tasks.</td></tr></table>", |
| "html": null, |
| "type_str": "table", |
| "text": "Donald Layton1 took the helm of Freddie Mac2 after his1 ..." |
| }, |
| "TABREF2": { |
| "num": null, |
| "content": "<table><tr><td>MUC</td><td>Dev B 3 CEAFe</td><td>Avg. NER</td><td>Link MUC</td><td>B 3</td><td>Test</td></tr></table>", |
| "html": null, |
| "type_str": "table", |
| "text": "CEAFe Avg. NER Link INDEP. 77.95 74.81 71.84 74.87 83.04 73.07 81.03 74.89 72.56 76.16 82.35 74.71 JOINT 79.41 75.56 73.34 76.10 85.94 75.69 81.41 74.70 72.93 76.35 85.60 76.78 \u2206 +1.46 +0.75 +1.50 +1.23 +2.90 +2.62 +0.42 \u22120.19 +0.37 +0.19 +3.25 +2.07" |
| }, |
| "TABREF3": { |
| "num": null, |
| "content": "<table><tr><td/><td>Non-NILS</td><td/><td>NILS</td><td/></tr><tr><td>Prec.</td><td>Rec.</td><td>F 1 Prec.</td><td>Rec.</td><td>F 1</td></tr></table>", |
| "html": null, |
| "type_str": "table", |
| "text": "Accuracy FAHRNI 81.15 78.10 79.60 41.25 61.10 49.25 76.87 INDEP. 80.26 76.30 78.23 33.39 54.47 41.40 74.71 JOINT 83.26 77.67 80.37 35.19 65.42 45.77 76.78 \u2206 over INDEP. +3.00 +1.37 +2.14 +1.80 +10.95 +3.37 +2.07" |
| }, |
| "TABREF4": { |
| "num": null, |
| "content": "<table><tr><td>Coref</td><td>NER</td><td>Link</td></tr><tr><td colspan=\"3\">INDEP. 74.87 83.04 73.07</td></tr><tr><td colspan=\"3\">INDEP+LINKNER INDEP+COREFNER +0.56 +1.15 +1.85 +2.41 INDEP+COREFLINK +0.48 \u22120.16 JOINT\u2212LINKNER +0.79 +1.28 \u22120.06 JOINT\u2212COREFNER +0.56 +1.94 +2.07 JOINT\u2212COREFLINK +0.85 +2.68 +2.57</td></tr><tr><td colspan=\"3\">JOINT +1.23 +2.90 +2.62</td></tr><tr><td colspan=\"3\">JOINT/LATENTLINK +1.26 +3.47 \u221218.8</td></tr></table>", |
| "html": null, |
| "type_str": "table", |
| "text": ", hence it is quite competitive." |
| }, |
| "TABREF5": { |
| "num": null, |
| "content": "<table><tr><td>Prec.</td><td>MUC Rec.</td><td>F 1</td><td>Prec.</td><td>B 3 Rec.</td><td>F 1</td><td>Prec.</td><td>CEAF e Rec.</td><td>F 1</td><td>Avg. F 1</td></tr></table>", |
| "html": null, |
| "type_str": "table", |
| "text": "BERKELEY 72.85 65.87 69.18 63.55 52.47 57.48 54.31 54.36 54.34 60.33 FERNANDES \u2212 \u2212 70.51 \u2212 \u2212 57.58 \u2212 \u2212 53.86 60.65 BJORKELUND 74.30 67.46 70.72 62.71 54.96 58.58 59.40 52.27 55.61 61.63 INDEP. 72.25 69.30 70.75 60.92 55.73 58.21 55.33 54.14 54.73 61.23 JOINT 72.61 69.91 71.24 61.18 56.43 58.71 56.17 54.23 55.18 61.71" |
| }, |
| "TABREF6": { |
| "num": null, |
| "content": "<table/>", |
| "html": null, |
| "type_str": "table", |
| "text": "CoNLL metric scores for our systems on the CoNLL 2012 blind test set, compared to Durrett and Klein (2013) (the Berkeley system), Fernandes et al. (2012) (the winner of the CoNLL shared task), and Bj\u00f6rkelund and Kuhn (2014) (the best reported results on the dataset to date). INDEP. and JOINT are the contributions of this work; JOINT improves substantially over INDEP. (these improvements are statistically significant with p < 0.05 according to a bootstrap resampling test) and achieves state-of-the-art results." |
| } |
| } |
| } |
| } |