<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Inductive Entity Typing Alignment</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Giuseppe</forename><surname>Rizzo</surname></persName>
							<email>giuseppe.rizzo@eurecom.fr</email>
							<affiliation key="aff0">
								<orgName type="institution">EURECOM</orgName>
								<address>
									<settlement>Sophia Antipolis</settlement>
									<country key="FR">France</country>
								</address>
							</affiliation>
							<affiliation key="aff1">
								<orgName type="institution">Università di Torino</orgName>
								<address>
									<settlement>Turin</settlement>
									<country key="IT">Italy</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Marieke</forename><surname>Van Erp</surname></persName>
							<email>marieke.van.erp@vu.nl</email>
							<affiliation key="aff2">
								<orgName type="institution">VU University Amsterdam</orgName>
								<address>
									<country key="NL">The Netherlands</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Raphaël</forename><surname>Troncy</surname></persName>
							<email>raphael.troncy@eurecom.fr</email>
							<affiliation key="aff0">
								<orgName type="institution">EURECOM</orgName>
								<address>
									<settlement>Sophia Antipolis</settlement>
									<country key="FR">France</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Inductive Entity Typing Alignment</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">3A882AC65839FFEF0A469888E9EE2B34</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T22:07+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Aligning named entity taxonomies for comparing or combining di↵erent named entity extraction systems is a di cult task. Often taxonomies are mapped manually onto each other or onto a standardized ontology but at the loss of subtleties between di↵erent class extensions and domain specific uses of the taxonomy. In this paper, we present an approach and experiments for learning customized taxonomy alignments between di↵erent entity extractors for di↵erent domains. Our inductive data-driven approach recasts the alignment problem as a classification problem. We present experiments on two named entity recognition benchmark datasets, namely the CoNLL2003 newswire dataset and the MSM2013 microposts dataset. Our results show that the automatically induced mappings outperform manual alignments and are agnostic to changes in the extractor taxonomies, implying that alignments are highly contextual.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>Named recognition and classification is an important task in providing more fine-grained access to textual resources than simple keyword search can o↵er. In recent years, many named entity recognition and classification tools have become available such as DBpedia Spotlight <ref type="bibr" target="#b7">[8]</ref> and OpenCalais <ref type="foot" target="#foot_0">4</ref> . Each of these tools has a slightly di↵erent goal and di↵erent inner workings. Often, the entity schemas that these systems use internally are di↵erent, requiring prior alignment of the schemas in order to compare these systems. In previous work, we have manually mapped the taxonomies of 12 of these systems to a single ontology, namely the NERD ontology <ref type="bibr" target="#b11">[12]</ref>. However, as these taxonomies evolve over time, mappings may need to be updated, which is an iterative and time consuming task. Furthermore, a single, static mapping to another taxonomy may result in loss of subtleties between di↵erent class extensions and domain specific uses of the taxonomy.</p><p>In this paper we show that it is possible to inductively learn mappings of entity types between various extractors available in the NERD framework and gold standard benchmark classes for well-defined entity classes such as person, organization and location. Bin-classes such as 'miscellaneous' are more di cult to learn, but inspection of our mappings shows that the extractors uncover inconsistencies in the gold standard datasets that are being used. To assess the feasibility of the inductive approach, we use the learned mappings as input of the NER experiments reported in <ref type="bibr" target="#b10">[11]</ref>, and we observe improvements with respect to the baseline (computed using the manual mappings). The increase in performance is dependent on the used dataset, showing that this approach is better performing with the MSM2013 one.</p><p>The proposed approach enables us to create general conclusions based on the observation of individual cases. This is what is observed in the domain of the Natural Language Processing (NLP), in particular for the entity recognition, where the taxonomy is generally encoded implicitly in the data. The learning algorithms, after observing the distributions of tokens and types, train the classifier. Quite recently, with the introduction of the entity extractors, that together with the entity recognition also perform entity linking, the problem of using a rich upper level schema (the majority as advances proposed in the Linked Data movement) of the data has been exploited. Nowadays, the DBpedia Ontology, Freebase, and Schema.org (to name few) are schemas largely used by a plethora of commercial and research entity extractors. Most of these extractors can be used as o↵-the-shelf extractors, hence there is no chance to feed in a data schema that is di↵erent from the one internally modeled.</p><p>The remainder of this paper is organized as follows. In Section 2, we describe background and related work. In Section 3, we describe the datasets, the set of extractors together with their settings, and the data processing stage. In Section 4, we statistically motivate our approach and we provide two complementary approaches for learning inductively the alignments. In Section 5, we present the experiments and results, followed by a discussion in Section 6. We finish with conclusions and pointers for future work in Section 7.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Background and Related work</head><p>Matching di↵erent schemas for generating correspondences between elements is an extensively explored task. Schema matching is a critical step in many domains such as e-business, data warehouses and databases <ref type="bibr" target="#b2">[3]</ref>. With the advent of the Semantic Web, schema matching has taken a central role in managing highly structured knowledge bases, such as DBpedia and YAGO. Several matching tools have been evaluated but typically under di↵erent conditions and for smaller match problems <ref type="bibr" target="#b1">[2]</ref>. The OAEI yearly organizes shared tasks which include large ontologies, such as medical and library schemas. All these schemas come with a host of additional metadata, that is generally exploited by the matching tools. For instance, Cupid <ref type="bibr" target="#b6">[7]</ref> combines a number of techniques such as linguistic matching, structure-based matching, constraint-based matching, and context-based matching at the schema element level and related metadata. A peculiarity of our work is its aim to be resilient to the schemas' heterogeneity, in terms of number of classes, number of hierarchical layers, and absence of meta-data, conditions with which the discussed ontology matching approaches have di culties.</p><p>Recently, the OAEI has introduced the Instance Matching challenge, which aims to evaluate tools able to identify similar instances, belonging to even di↵erent schemas among di↵erent RDF and OWL datasets. This notion grounds on the data interlinking movement, that has largely investigated the problem of detecting instances co-referring to the same real-world object is positively important in data integration. <ref type="bibr" target="#b14">[15]</ref> and <ref type="bibr" target="#b9">[10]</ref> propose a multi-layer approach for deciding whether or not two individuals are similar, based on contextual and semantic metadata. In particular, <ref type="bibr" target="#b14">[15]</ref> proposes a tailored instance pipeline for RDF datasets composed of four stages ranging from data cleansing, unique subject matching, one-left object matching, and score matching. The scores, computed on the instances filtered by the previous stages working on the exact match, are weighted on the similarity of the metadata that surround them. <ref type="bibr" target="#b9">[10]</ref> uses a twostage approach composed of candidate generation and instance matching. The first phase clusters similar instances, to reduce the number of pairs. The second determines the equivalence of the individuals, measuring the TF-IDF cosine similarity at triple level for strings, inverted disparity for digits, and exact match for dates. The matching is independent from the initial schemas. Our work narrows down the instance matching task as a mere exact match of the same tokens (that occur in the same document, and at the same o↵set) potentially labeled using di↵erent schemas. We investigate the type distributions of the dataset labeled with the gold standard types and the one labeled with extractor types.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Experimental Setup</head><p>In our experiments, we use two entity classification benchmark datasets, namely CoNLL2003 and MSM2013. The corpora are annotated using o↵-the-self extractors that use di↵erent ontologies for classifying the entities, with some of the extractors using more than one ontology. Basic stats of the two datasets are shown in Table <ref type="table" target="#tab_0">1</ref>. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Datasets</head><p>One of the most prominent datasets in NER is the corpus that was created for the CoNLL2003 Language-Independent Named Entity Recognition shared task <ref type="bibr" target="#b13">[14]</ref>. There is fairly little overlap of named entities between the training and test datasets: only 2.9% of the named entities that occur in the training data also occur in the test data. The MSM2013 corpus was created for the Making Sense of Microposts Challenge 2013 <ref type="bibr" target="#b0">[1]</ref> and consists of microposts collected from the end of 2010 to the beginning of 2011. Similarly as for CoNLL2003, the MSM2013 has 8.1% overlap of named entities between the training and test data.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Extractors</head><p>The commercial and research tools that we evaluate via their Web APIs are AlchemyAPI,<ref type="foot" target="#foot_1">5</ref> dataTXT, <ref type="foot" target="#foot_2">6</ref> DBpedia Spotlight, Lupedia, <ref type="foot" target="#foot_3">7</ref> OpenCalais, TextRazor, <ref type="foot" target="#foot_4">8</ref> and Zemanta, <ref type="foot" target="#foot_5">9</ref> . For brevity, we refer to these using the uncapitalized spelling, and we shorten DBpedia Spotlight to dbspotlight. These extractors are selected for our experiments because they either utilize the DBpedia Ontology v3.8,<ref type="foot" target="#foot_6">10</ref> or the Freebase ontology <ref type="foot" target="#foot_7">11</ref> enabling us to more easily compare these extractors than the extractors that use a custom ontology. Furthermore, the DBpedia Ontology can be freely downloaded and browsed which enables us to perform experiments learning mappings at di↵erent levels in the taxonomic hierarchy (see <ref type="bibr">Section 4)</ref>.</p><p>The annotation results vary in terms of the schema used for classifying the phrases. For instance, the entity Barack Obama may be classified (depending on the context) as "Person" from alchemyapi, or as "O ceHolder" by dbspotlight. This example shows at a first glance the subtle di↵erences that exist while harmonizing di↵erent classification schemes. Zemanta o cially claims it uses a sample of the Freebase types, <ref type="foot" target="#foot_8">12</ref> but in our experiments we observe that it uses a larger set of Freebase and DBpedia types.</p><p>We query these extractors by using the NERD framework <ref type="bibr" target="#b11">[12]</ref> that acts as proxy as it harmonizes the retrieval of the annotations.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3">Data Preprocessing</head><p>We split each set into documents (CoNLL2003) and microposts (MSM2013). We then query the extractor e using the NERD framework, with the settings described above. The retrieved output is parsed and converted in the CoNLL format, where the last column is dedicated to list the types T returned by e. Per each extractor, we generate one CoNLL file to list the T NERD (NERD types), and one to list the native (source) types T S returned by the extractor.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Inductive Typing Alignment</head><p>Let E denote the entity list, T the entity type list, S the source extractor types, and GS the types observed in the gold standard. (E, T ) S indicates the ordered list of entities and types given by the source extractor, while O S is the schema used by the source extractor to type the entities. We then define A : T S ! T GS as the set of alignments given to which we apply a transformation from the T S to the T GS . Inspired by <ref type="bibr" target="#b12">[13]</ref>, we model the proposed inductive typing alignment as shown in Figure <ref type="figure" target="#fig_0">1</ref>. Inputs are the ontology depth, the text token, and settings for the machine learning stage. The initial requirement for an inductive typing alignment is to rely on reasonable answers of a set of systems when performing on specific constraints and defined use cases. By the law of large numbers it is possible to infer the value range of a statistical parameter with a bounded high probability (usually from 95% to 99%) from independent random samples. Therefore, relying on a large number of observations, we can draw upon relations from di↵erent entity types. We split the inductive typing alignment into two separate tasks, the first a purely statistical approach, in which we extrapolate the evidence by observing the highest number of matches, and, the second, a machine learning approach, where a classification algorithm is trained using a set of mappings in order to infer the correct mapping for the test case.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1">Statistical Induction</head><p>Generally, by looking at the entity type distributions of a gold standard we can narrow down coarse-grained considerations of the dataset. Let us consider the gold standard schema as the central schema, and the extractor schemas as the O S . The entity surface forms work as matchers, so that we can cross the entity type distributions from the gold standard and the ones observed in the datasets described by O S . Therefore, applying a frequency induction we imply alignments based on the peak of the distributions.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2">Machine Learning Induction</head><p>In our machine learning induction approach, we aim to learn which entity types as assigned by the extractor outputs correspond to which entity classes in the gold standard. We use Weka <ref type="bibr" target="#b5">[6]</ref> v3.6.11 in our experiments. In all experiments we use separate training and test sets. We have experimented with various algorithms, but k -Nearest Neighbour (k -NN) <ref type="bibr" target="#b3">[4]</ref> and Naive Bayes (NB) <ref type="bibr" target="#b8">[9]</ref> are the best performing for our approach, and thus only results using these algorithms are reported.</p><p>For each extractor, we performed the following series of experiments for both k -NN with k set to 1 (called IB1 in Weka) and Naive Bayes.</p><p>NERDType we try to learn the mapping between the types assigned by the NERD ontology and the types in the gold standard dataset. This serves as a baseline to check whether the manually created mappings distribution in NERD for each extractor follows the same implicit patterns as the class distribution in the gold standard datasets.</p><p>URIType in these experiments, we try to learn the mapping between the entity type as given by the extractor and the gold standard type.</p><p>URIType First in these experiments, we try to learn the mapping between the superclass of the entity type as given by the extractor and the gold standard type.</p><p>URIType Second in these experiments, we go up one level in the extractor type ontology and try to learn the mapping between the super-super-class of the entity type as given by the extractor and the gold standard type URIType Third in these experiments, we try to learn the mapping between the super-super-super class of the entity type as given by the extractor and the gold standard type.</p><p>It must be noted that the schemas for alchemyapi and opencalais are released in a textual format, hence we extrapolated them and created the OWLs. <ref type="foot" target="#foot_9">13</ref> Given the reduced depth (flat schema for opencalais, and 2 level hierarchy for alchemyapi) we could not perform experiments in which we traverse the hierarchy. Similarly, the unavailability of a machine readable Freebase schema obliged to consider the Freebase types as sequences of subtypes, separated by the terminator slash. This introduces a bias when the domain type corresponds to the identifier (for instance /person/person).</p><p>Figures <ref type="figure" target="#fig_2">2 and 3</ref> show the results of the mappings learnt for each extractor for the CoNLL2003 and MSM2013 datasets respectively. <ref type="foot" target="#foot_10">14</ref> For both datasets,  we see that the person class can be mapped to the di↵erent extractor schemas most easily. This is not surprising as this class is the least ambiguous. For the organization and location classes, the results drop, but this is mostly due to the recall of the extractors being quite low (see the recall statistics in Figures <ref type="figure" target="#fig_2">3 and  4</ref> of <ref type="bibr" target="#b10">[11]</ref>). The miscellaneous class su↵ers from being a broad and underspecified class in both datasets, which a↵ects both the recognition results as well as the typing and thus also the mapping. In the CoNLL specification for example, the miscellaneous class includes named sports events, whereas many of the extractors also annotate more generic event types such as basketball championship.</p><p>For both datasets, we find that for the extractors that use the DBpedia Ontology (datatxt, dbspotlight, lupedia and textrazor), the automatically learned mappings most often outperform the manual mappings of the NERD ontology, with the exception of the results for dbspotlight. This e↵ect is more pronounced in the CoNLL2003 dataset than in the MSM2013 dataset. Another interesting thing to note is that the lupedia mappings can best be learnt using the IB1 algorithms, whereas the dbspotlight and datatxt mappings perform best when using the NaiveBayes classifier.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Evaluation and Results</head><p>Table <ref type="table" target="#tab_1">2a</ref> shows the results we achieve on applying the inductive approach on <ref type="bibr" target="#b10">[11]</ref> for the extraction and classification of the CoNLL2003 corpus entities. As baseline, we report the results achieved by the same chain, but only using manual mappings. Results are computed using the conlleval script. <ref type="foot" target="#foot_11">15</ref> We observe that the C4.5 classifier is the best performing classifier for combining the linguistic features, the output of the Conditional Random Fields (CRF) <ref type="bibr" target="#b4">[5]</ref>, and the induced mappings from the investigated seven extractors (for both statically induction and machine learning induction), and hence for predicting the correct type. In this paper, the model used results less rich (with a reduced number of extractors) than our baseline approach.</p><p>The most striking finding from these experiments is that for the CoNLL2003 dataset, based on the recall the best mappings are obtained by using a simple frequency based statistical induction, where we choose the most frequently occurring type. This provides us with an increase of 0.45% in recall from the baseline. For the MSM2013 dataset however, the machine learning induction leads to the best results, with an increase in F1 of 0.68%, and an increase in recall of 8.59%. For both datasets, the figures report that the induction is generally promising for the bin classes, such as MISC. This is explained by the fact that the induction fills the gap left by the low number of examples used by the entity recognizer algorithm to build a model on top of that. The top mappings for the MISC class obtained by the datatxt Naive Bayes experiments are shown in Table <ref type="table" target="#tab_2">3</ref>. <ref type="foot" target="#foot_12">16</ref> Here we see the breadth of the MISC class and the di↵erences in the type of entities that fall within this class in the two datasets, supporting our case for customized mappings. It also shows the potential usefulness of having a more fine-grained class than MISC. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">Discussion</head><p>The proposed approach inherits some limitations of the extractors used in this work. The annotations collected from the extractors are imperfect. The machine learning approach aims to compensate the system errors by remapping them to the correct types. Another source of bias is the entity position, that is given by the majority of the extractors, while alchemyapi and opencalais leave the client to compute it. NERD attempts to reduce this ambiguity, recomputing the position just applying a rule-based logic. Four of the extractors potentially use more than one schema for the classification. Although this gives more information to the client, it a↵ects the interpretation of the entity and, hence, introducing ambiguity in performing the further operations by intelligent systems plugged on. It is also unclear how some of the extractors exploit the taxonomies they use internally, which may cause suboptimal alignments. However, as some of these extractors are black boxes we can only infer how they operate by looking at the results. Furthermore, the evaluation datasets used may not be optimal for evaluating these extractors. As mentioned in Subsection 4.2, the gold standard dataset is more conservative in its annotations, resulting in a lower precision for the extractors as they assume broader categories of entities. However, as creating gold standard benchmark datasets is a time consuming and complex task, there are not many around. Modeling choices influence the fit of the dataset for di↵erent tasks and it is inevitable that errors creep in, despite data often being annotated by multiple annotators. Minor errors may creep in, such as 'Keirin' being annotated as a location in the CoNLL dataset, whereas it should be a sport. In the same dataset, we also encounter rugby, tennis and soccer as usually not being annotated as an entity, but in some cases they are. Most of the extractors seem to tag these concepts. This presents us a with a mismatch between the dataset and the task the extractors were created for.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="7">Conclusions and Future Work</head><p>We have shown an approach and experiments for learning customized taxonomy alignments between di↵erent entity extractors for di↵erent domains. We experimented with a statistical data-driven alignment, and a machine learning data-driven alignment on two NLP datasets, namely CoNLL2003 and MSM2013. We used the computed alignments as input of <ref type="bibr" target="#b10">[11]</ref> and compared the overall results with the ones obtained just using a manual mapping. Results are encouraging and show the potentiality of the inductive approach, that remains strictly dependent on the used dataset. This validates the hypothesis that there is no one-size-fits-all approach to align di↵erent taxonomies. Part of our ongoing work is to improve the NER results to get closer to the theoretical limit presented in our previous work. In the ensemble learning domain, we plan to study the feature selection process further, and to estimate the influence of the size of the training corpus for building the classification model. We also plan to experiment with diverse datasets, covering other domains such as TV. A selection of further plots, not reported in this paper, together with the source code of our experiments, are available at https://github.com/giusepperizzo/nerd-inductive.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Fig. 1 :</head><label>1</label><figDesc>Fig. 1: The schemas matching chain.</figDesc><graphic coords="5,211.24,335.32,191.03,78.45" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Fig. 2 :</head><label>2</label><figDesc>Fig. 2: F-scores of mapping experiments on the CoNLL2003 dataset on the person (PER), location (LOC), organisation (ORG), miscellaneous (MISC) and overall (Overall).</figDesc><graphic coords="7,179.40,140.28,254.68,475.10" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Fig. 3 :</head><label>3</label><figDesc>Fig. 3: Results of mapping experiments on the MSM2013 dataset on the person (PER), location (LOC), organisation (ORG), miscellaneous (MISC) and overall (Overall).</figDesc><graphic coords="8,179.40,140.28,254.68,475.10" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1 :</head><label>1</label><figDesc>Statistics on number of articles, tokens, named entities (in total and split out per class) for the CoNLL2003 and MSM2013 datasets.</figDesc><table><row><cell cols="4">CoNLL2003 Articles Tokens NEs PER LOC ORG MISC</cell></row><row><cell>Training</cell><cell cols="3">946 203,621 23,499 6,600 7,140 6,321 3,438</cell></row><row><cell>Testing</cell><cell>231</cell><cell cols="2">46,435 5,648 1,617 1,668 1,661 702</cell></row><row><cell>MSM2013</cell><cell cols="3">Posts Tokens NEs PER LOC ORG MISC</cell></row><row><cell>Training</cell><cell cols="3">2,815 51,521 3,146 1,713 610 221 602</cell></row><row><cell>Testing</cell><cell cols="2">1,450 29,085 1,538 1,116 97 233</cell><cell>92</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 2 :</head><label>2</label><figDesc>Precision, Recall and F1 results on CoNLL2003 (a) and MSM2013 (b) datasets for di↵erent classes and overall. Figures are in percentages. Boldface indicates the best score per measure.</figDesc><table><row><cell>(a)</cell><cell></cell><cell>(b)</cell><cell></cell></row><row><cell>base-statistical</cell><cell>ml</cell><cell>base-statistical</cell><cell>ml</cell></row><row><cell cols="2">line induction induction</cell><cell cols="2">line induction induction</cell></row><row><cell>PER p 91.41 91.56</cell><cell>88.49</cell><cell>PER p 88.90 88.59</cell><cell>90.32</cell></row><row><cell>r 92.15 92.76</cell><cell>90.70</cell><cell>r 84.68 81.79</cell><cell>90.00</cell></row><row><cell>f 91.78 92.16</cell><cell>89.58</cell><cell>f 84.74 85.05</cell><cell>90.16</cell></row><row><cell>LOC p 89.27 85.84</cell><cell>87.94</cell><cell>LOC p 59.43 59.78</cell><cell>51.41</cell></row><row><cell>r 89.81 90.60</cell><cell>89.58</cell><cell>r 64.95 56.12</cell><cell>74.49</cell></row><row><cell>f 89.54 88.16</cell><cell>88.75</cell><cell>f 62.07 57.89</cell><cell>60.83</cell></row><row><cell>ORG p 81.15 81.40</cell><cell>82.14</cell><cell>ORG p 62.58 56.02</cell><cell>61.83</cell></row><row><cell>r 81.64 80.21</cell><cell>79.54</cell><cell>r 43.78 39.74</cell><cell>49.15</cell></row><row><cell>f 81.39 80.80</cell><cell>80.82</cell><cell>f 51.52 46.50</cell><cell>54.76</cell></row><row><cell>MISC p 77.70 78.48</cell><cell>81.50</cell><cell>MISC p 44.44 20.90</cell><cell>18.67</cell></row><row><cell>r 75.93 79.05</cell><cell>78.32</cell><cell>r 13.04 15.05</cell><cell>30.11</cell></row><row><cell>f 76.80 78.76</cell><cell>79.88</cell><cell>f 20.17 17.50</cell><cell>23.05</cell></row><row><cell>Overall p 86.09 85.31</cell><cell>85.68</cell><cell>Overall p 82.56 79.32</cell><cell>76.79</cell></row><row><cell>r 86.35 86.74</cell><cell>85.56</cell><cell>r 72.95 69.77</cell><cell>79.22</cell></row><row><cell>f 86.22 86.02</cell><cell>85.62</cell><cell>f 77.46 74.24</cell><cell>77.99</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 3 :</head><label>3</label><figDesc>Top mappings for MISC class as obtained in the datatxt third Naive-Bayes experiments. 'dbo:' is shorthand for http://dbpedia.org/ontology</figDesc><table><row><cell>CoNLL</cell><cell>MSM2013</cell></row><row><cell>dbo:Event,dbo:SportsEvent</cell><cell>dbo:Work,dbo:Film,</cell></row><row><cell cols="2">dbo:Country,dbo:Place,dbo:PopulatedPlace dbo:Event,dbo:SportsEvent</cell></row><row><cell>dbo:EthnicGroup</cell><cell>dbo:Award</cell></row><row><cell>dbo:Language</cell><cell>dbo:Work,dbo:TelevisionSeason,</cell></row><row><cell>dbo:Event,dbo:SportsEvent,</cell><cell>dbo:Event,dbo:SportsEvent,</cell></row><row><cell>dbo:SoccerTournament</cell><cell>dbo:SoccerTournament</cell></row><row><cell>dbo:Award</cell><cell>dbo:Work,dbo:Film,dbo:TelevisionShow</cell></row><row><cell>dbo:Currency</cell><cell>dbo:Work,dbo:WrittenWork,dbo:Book</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="4" xml:id="foot_0">http://www.opencalais.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_1">http://www.alchemyapi.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="6" xml:id="foot_2">https://dandelion.eu/products/datatxt</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="7" xml:id="foot_3">http://lupedia.ontotext.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="8" xml:id="foot_4">http://www.textrazor.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="9" xml:id="foot_5">http://www.zemanta.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="10" xml:id="foot_6">http://wiki.dbpedia.org/Ontology</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="11" xml:id="foot_7">http://www.freebase.com</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="12" xml:id="foot_8">http://developer.zemanta.com/docs/entity_type/ last access on April 29th, 2014.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="13" xml:id="foot_9">https://github.com/NERD-project/nerd-ontology</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="14" xml:id="foot_10">For reasons of space we only present the F-measures here, for an overview of the precision and recall see https://github.com/giusepperizzo/nerd-inductive.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="15" xml:id="foot_11">http://www.cnts.ua.ac.be/conll2002/ner/bin/conlleval.txt</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="16" xml:id="foot_12">The complete mappings per extractor can be found at https://github.com/ giusepperizzo/nerd-inductive.</note>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Acknowledgments</head><p>The research leading to this paper was partially supported by the European Union's 7th Framework Programme via the projects LinkedTV (GA 287911) and NewsReader (ICT-316404).</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Making Sense of Microposts (#MSM2013) Concept Extraction Challenge</title>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">E C</forename><surname>Basave</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Varga</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Rowe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Stankovic</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">S</forename><surname>Dadzie</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Making Sense of Microposts (#MSM2013) Concept Extraction Challenge</title>
				<imprint>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">On Evaluating Schema Matching and Mapping</title>
		<author>
			<persName><forename type="first">Z</forename><surname>Bellahsene</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Bonifati</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Duchateau</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Velegrakis</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Data-Centric Systems and Applications</title>
				<imprint>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
	<note>Schema Matching and Mapping</note>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Generic Schema Matching, Ten Years Later</title>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">A</forename><surname>Bernstein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Madhavan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Rahm</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">PVLDB</title>
		<imprint>
			<biblScope unit="volume">4</biblScope>
			<biblScope unit="issue">11</biblScope>
			<biblScope unit="page" from="695" to="701" />
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Nearest neighbor pattern classification</title>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">M</forename><surname>Cover</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">E</forename><surname>Hart</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Institute of Electrical and Electronics Engineers Transactions on Information Theory</title>
		<imprint>
			<biblScope unit="volume">13</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="21" to="27" />
			<date type="published" when="1967">1967</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Incorporating Non-local Information into Information Extraction Systems by Gibbs Sampling</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">R</forename><surname>Finkel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Grenager</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Manning</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">43 rd Annual Meeting on Association for Computational Linguistics (ACL &apos;05)</title>
				<imprint>
			<date type="published" when="2005">2005</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">The WEKA Data Mining Software: An Update</title>
		<author>
			<persName><forename type="first">M</forename><surname>Hall</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Frank</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Holmes</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Pfahringer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Reutemann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><forename type="middle">H</forename><surname>Witten</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SIGKDD Explorations</title>
		<imprint>
			<biblScope unit="volume">11</biblScope>
			<biblScope unit="issue">1</biblScope>
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Generic Schema Matching with Cupid</title>
		<author>
			<persName><forename type="first">J</forename><surname>Madhavan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">A</forename><surname>Bernstein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Rahm</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">7 th International Conference on Very Large Data Bases (VLDB&apos;01)</title>
				<imprint>
			<date type="published" when="2001">2001</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Dbpedia spotlight: Shedding light on the web of documents</title>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">N</forename><surname>Mendes</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Jakob</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Garcia-Silva</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Bizer</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">7 th International Conference on Semantic Systems (I-Semantics&apos;11</title>
				<imprint>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Generative and discriminative classifiers: Naive bayes and logistic regression</title>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">M</forename><surname>Mitchell</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">of Machine Learning</title>
				<editor>
			<persName><forename type="first">T</forename><forename type="middle">M</forename><surname>Mitchell</surname></persName>
		</editor>
		<imprint>
			<publisher>McGraw Hill</publisher>
			<date type="published" when="2005-10">October 2005</date>
		</imprint>
	</monogr>
	<note>rough draft chapter intended for possible inclusion in a possible second edition</note>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">SLINT+ results for OAEI 2013 instance matching</title>
		<author>
			<persName><forename type="first">K</forename><surname>Nguyen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Ichise</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">8 th International Workshop on Ontology Matching (OM-13)</title>
				<imprint>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Benchmarking the Extraction and Disambiguation of Named Entities on the Semantic Web</title>
		<author>
			<persName><forename type="first">G</forename><surname>Rizzo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Van Erp</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Troncy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">9 th International Conference on Language Resources and Evaluation (LREC&apos;14)</title>
				<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">NERD: A Framework for Unifying Named Entity Recognition and Disambiguation Extraction Tools</title>
		<author>
			<persName><forename type="first">G</forename><surname>Rizzo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Troncy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">13 th Conference of the European Chapter of the Association for computational Linguistics (EACL&apos;12)</title>
				<imprint>
			<date type="published" when="2012">2012</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Ontology Matching: State of the Art and Future Challenges</title>
		<author>
			<persName><forename type="first">P</forename><surname>Shvaiko</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Euzenat</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">IEEE Transactions on Knowledge and Data Engineering</title>
		<imprint>
			<biblScope unit="volume">25</biblScope>
			<biblScope unit="issue">1</biblScope>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Introduction to the CoNLL-2003 Shared Task: Language-Independent Named Entity Recognition</title>
		<author>
			<persName><forename type="first">Tjong</forename><surname>Kim</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Sang</forename></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">F</forename><surname>Meulder</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">D</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">17 th Conference on Computational Natural Language Learning (CoNLL&apos;03)</title>
				<imprint>
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">RiMOM2013 results for OAEI</title>
		<author>
			<persName><forename type="first">Q</forename><surname>Zheng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Shao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Hu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">8 th International Workshop on Ontology Matching (OM-13)</title>
				<imprint>
			<date type="published" when="2013">2013. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
