<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>OpenTapioca: Lightweight Entity Linking for Wikidata</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science, University of Oxford</institution>
          ,
          <country country="UK">UK</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We propose a simple Named Entity Linking system that can be trained from Wikidata only. This demonstrates the strengths and weaknesses of this data source for this task and provides an easily reproducible baseline to compare other systems against. Our model is lightweight to train, to run and to keep synchronous with Wikidata in real time.</p>
      </abstract>
      <kwd-group>
        <kwd>Entity linking</kwd>
        <kwd>Wikidata</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Named Entity Linking is the task of detecting mentions of entities from a knowledge
base in free text, as illustrated in Figure 1.</p>
      <p>
        Most of the entity linking literature focuses on target knowledge bases which are
derived from Wikipedia, such as DBpedia [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] or YAGO [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. These bases are curated
automatically by harvesting information from the info-boxes and categories on each
Wikipedia page and are therefore not editable directly.
      </p>
      <p>
        Wikidata [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] is an editable, multilingual knowledge base which has recently gained
popularity as a target database for entity linking [
        <xref ref-type="bibr" rid="ref13 ref15 ref22 ref8">8,22,15,13</xref>
        ]. As these new approaches
to entity linking also introduce novel learning methods, it is hard to tell apart the benefits
that come from the new models and those which come from the choice of knowledge
base and the quality of its data.
      </p>
      <p>We review the main differences between Wikidata and static knowledge bases
extracted from Wikipedia, and analyze their implactions for entity linking. We illustrate
these differences by building a simple entity linker, OpenTapioca1, which only uses
data from Wikidata, and show that it is competitive with other systems with access to
larger data sources for some tasks. OpenTapioca can be trained easily from a Wikidata
dump only, and can be efficiently kept up to date in real time as Wikidata evolves. We
also propose tools to adapt existing entity linking datasets to Wikidata, and offer a new
entity linking dataset, consisting of affiliation strings extracted from research articles.</p>
      <p>Copyright © 2020 for this paper by its authors. Use permitted under Creative Commons
License Attribution 4.0 International (CC BY 4.0).
1 The implementation and datasets are available at https://github.com/wetneb/
opentapioca and the demo can be found at https://opentapioca.org/.</p>
      <p>employer (P108)
Associated Press (Q40469)</p>
      <p>Julie Pace (Q34666768)
Associated Press writer Julie Pace
contributed from Washington .</p>
      <p>Washington D.C. (Q61)
Wikidata is a wiki itself, meaning that it can be edited by anyone, but differs from usual
wikis by its data model: information about an entity can only be input as structured
data, in a format that is similar to RDF.</p>
      <p>
        Wikidata stores information about the world in a collection of items, which are
structured wiki pages. Items are identified by ther Q-id, such as Q40469, and they are
made of several data fields. The label stores the preferred name for the entity. It is
supported by a description, a short phrase describing the item to disambiguate it from
namesakes, and aliases are alternate names for the entity. These three fields are stored
separately for each language supported by Wikidata. Items also hold a collection of
statements: these are RDF-style claims which have the item as subject. They can be
backed by references and be made more precise with qualifiers, which all rely on a
controlled vocabulary of properties (similar to RDF predicates). Finally, items can have
site links, connecting them to the corresponding page for the entity in other Wikimedia
projects (such as Wikipedia). Note that Wikidata items do not need to be associated
with any Wikipedia page: in fact, Wikidata’s policy on the notability of the subjects it
covers is much more permissive than in Wikipedia. For a more detailed introduction to
Wikidata’s data model we refer the reader to [
        <xref ref-type="bibr" rid="ref21 ref5">21,5</xref>
        ].
      </p>
      <p>Our goal is to evaluate the usefulness of this crowdsourced structured data for
entity linking. We will therefore refrain from augmenting it with any external data (such
as phrases and topical information extracted from Wikipedia pages), as is generally
done when working with DBpedia or YAGO. By avoiding a complex mash-up of data
coming from disparate sources, our entity linking system is also simpler and easier to
reproduce. Finally, it is possible keep OpenTapioca in real-time synchronization with
the live version of Wikidata, with a lag of a few seconds only. This means that users are
able to fix or improve the knowledge base, for instance by adding a missing alias on an
item, and immediately see the benefits on their entity linking task. This constrasts with
all other systems we are aware of, where the user either cannot directly intervene on the
underlying data, or there is a significant delay in propagating these updates to the entity
linking system.</p>
    </sec>
    <sec id="sec-2">
      <title>Related work</title>
      <p>We review the dominant architecture of entity linking heuristics following [?], and
assess its applicability to Wikidata.</p>
      <p>Entities in the knowledge base are associated with a set (or probability distribution)
of possible surface forms. Given a text to annotate, candidate entities are generated by
looking for occurrences of their surface forms in the text. Because of homonymy, many
of these candidate occurrences turn out to be false matches, so a classifier is used to
predict their correctness. We can group the features they tend to use in the following
categories:
– local compatibility: these features assess the adequacy between an entity and the
phrase that refers to it. This relies on the dictionary of surface forms mentioned
above, and does not take into account the broader context of the phrase to link.
– topic similarity: this measures the compatibility between the topics in the text to
annotate and the topics associated with the candidate entity. Topics can be
represented in various ways, for instance with a bag of words model.
– mapping coherence: entities mentioned in the same text are often related, so
linking decisions are inter-dependent. This relies on a notion of proximity between
entities, which can be defined with random walks in the knowledge base for
instance.
3.1</p>
      <sec id="sec-2-1">
        <title>Local compatibility</title>
        <p>
          These features compare the phrase to annotate with the known surface forms for the
entity. Collecting such forms is often done by extracting mentions from Wikipedia [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ].
Link labels, redirects, disambiguation pages and bold text in abstracts can all be
useful to discover alternate names for an entity. It is also possible to crawl the web for
Wikipedia links to improve the coverage, often at the expense of data quality [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ].
        </p>
        <p>Beyond collecting a set of possible surface forms, these approaches count the
number of times an entity e was mentioned by a phrase w. This makes it possible to use a
Bayesian methodology: the compatibility of a candidate entity e with a given mention
w is P (ejw) = PP((ew;w)) , which can be estimated from the statistics collected.</p>
        <p>In Wikidata, items have labels and aliases in multiple languages. As this information
is directly curated by editors, these phrases tend to be of high quality. However, they
do not come with occurence counts. As items link to each other using their Wikidata
identifiers only, it is not possible to compare the number of times USA was used to refer
United States of America (Q30) or to United States Army (Q9212) inside Wikidata.</p>
        <p>Unlike Wikipedia’s page titles which must be unique in a given language, two
Wikidata items can have the same label in the same language. For instance Curry is the
English label of both the item about the Curry programming language (Q2368856) and
the item about the village in Alaska (Q5195194), and the description field is used to
disambiguate them.</p>
        <p>Manual curation of surface forms implies a fairly narrow coverage, which can be
an issue for general purpose entity linking. For instance, people are commonly refered
to with their given or family name only, and these names are not systematically added
as aliases: at the time of writing, Trump is an alias for Donald Trump (Q22686), but
Cameron is not an alias for David Cameron (Q192). As a Wikidata editor, the main
incentive to add aliases to an item is to make it easier to find the item with Wikidata’s
auto-suggest field, so that it can be edited or linked to more easily. Aliases are not
designed to offer a complete set of possible surface forms found in text: for instance,
adding common mispellings of a name is discouraged.2
3.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Topic similarity</title>
        <p>
          The compatibility of the topic of a candidate entity with the rest of the document
is traditionally estimated by similarity measures from information retrieval such as
TFIDF [
          <xref ref-type="bibr" rid="ref14 ref17">17,14</xref>
          ] or keyword extraction [
          <xref ref-type="bibr" rid="ref10 ref18 ref3">18,10,3</xref>
          ].
        </p>
        <p>
          Wikidata items only consist of structured data, except in their descriptions. This
makes it difficult to compute topical information using the methods above. Vector-based
representations of entities can be extracted from the knowledge base alone [
          <xref ref-type="bibr" rid="ref2 ref24">2,24</xref>
          ], but
it is not clear how to compare them to topic representations for plain text, which would
be computed differently. In more recent work, neural word embeddings were used to
represent topical information for both text and entities [
          <xref ref-type="bibr" rid="ref13 ref4 ref9">4,13,9</xref>
          ]. This requires access
to large amounts of text both to train the word vectors and to derive the entity vectors
from them. These vectors have been shown to encode significant semantic information
by themselves [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], so we refrain from using them in this study.
3.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Mapping coherence</title>
        <p>Entities mentioned in the same context are often topically related, therefore it is useful
not to treat linking decisions in isolation but rather to try to maximize topical coherence
in the chosen items. This is the issue on which entity linking systems differ the most as
it is harder to model.</p>
        <p>
          First, we need to estimate the topical coherence of a sequence of linking decisions.
This is often done by first defining a pairwise relatedness score between the target
entities. For instance, a popular metric introduced by [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ] considers the set of wiki links
jaj; jbj made from or to two entities a, b and computes their relatedness:
rel(a; b) = 1
log(max(jaj; jbj)) log(ja \ bj)
        </p>
        <p>log(jKj) log(min(jaj; jbj))
where jKj is the number of entities in the knowledge base.</p>
        <p>When linking to Wikidata instead of Wikipedia, it is tempting to reuse these
heuristics, replacing wikilinks by statements. However, Wikidata’s linking structure is quite
different from Wikipedia: statements are generally a lot sparser than links and they have
a precise semantic meaning, as editors are restricted by the available properties when
creating new statements. We propose in the next section a similarity measure that we
find to perform well experimentally.</p>
        <p>
          Once a notion of semantic similarity is chosen, we need to integrate it in the
inference process. Most approaches build a graph of candidate entities, where edges indicate
2 The guidelines are available at https://www.wikidata.org/wiki/Help:Aliases
semantic relatedness: the difference between the heuristics lie in the way this graph is
used for the matching decisions. [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] use an approximate algorithm to find the densest
subgraph of the semantic graph. This determines choices of entities for each mention.
In other approaches, the initial evidence given by the local compatibility score is
propagated along the edges of the semantic graph [
          <xref ref-type="bibr" rid="ref10 ref6">10,6</xref>
          ] or aggregated at a global level with
a Conditional Random Field [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ].
4
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>OpenTapioca: an entity linking model for Wikidata</title>
      <p>We propose a model that adapts previous approaches to Wikidata. Let d be a document
(a piece of text). A spot s 2 d is a pair of start and end positions in d. It defines a phrase
d[s], and a set of candidate entities E[s]: those are all Wikidata items for which d[s] is
a label or alias. Given two spots s; s0 we denote by js s0j the number of characters
between them.3 We build a binary classifier which predicts for each s 2 d and e 2 E[s]
if s should be linked to e.
4.1</p>
      <sec id="sec-3-1">
        <title>Local compatibility</title>
        <p>Although Wikidata makes it impossible to count how often a particular label or alias is
used to refer to an entity, these surface forms are carefully curated by the community.
They are therefore fairly reliable.</p>
        <p>Given an entity e and a phrase d[s], we need to compute p(ejd[s]). Having no
access to such a probability distribution, we choose to approximate this quantity by p(pd([es)]) ,
where p(e) is the probability that e is linked to, and p(d[s]) is the probability that d[s]
occurs in a text. In other words, we estimate the popularity of the entity and the
commonness of the phrase separately.</p>
        <p>We estimate the popularity of an entity e by a log-linear combination of its number
of statements ne, site links se and its PageRank log p(e). The PageRank is computed
on the entire Wikidata using statement values and qualifiers as edges.</p>
        <p>The probability p(d[s]) is estimated by a simple word unigram language model that
can be trained either on any large unannotated dataset4.</p>
        <p>The local compatibility is therefore represented by a vector of features F (e; d[s])
and the local compatibility is computed as follows, where is a weights vector:
F (e; d[s]) = ( log p(d[s]); log p(e); ne; se; 1)
p(ejd[s]) / eF (e;d[s])
4.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Semantic similarity</title>
        <p>
          The issue with the features above is that they ignore the context in which a mention
is found. To make it context-sensitive, we adapt the approach of [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] to our setup. The
3 This is the distance between the start position of the later spot and the end position of the
earlier one
4 For the sake of respecting our constraint to use Wikidata only, we train this language model
from Wikidata item labels.
general idea is to define a graph on the candidate entities, linking candidate entities
which are semantically related, and then find a combination of candidate entities which
have both high local compatibility and which are densely related in the graph.
        </p>
        <p>For each pair of entities e; e0 we define a similarity metric S(e; e0). Let l(e) be the set
of items that e links to in its statements. Consider a one-step random walks starting on
e, with probability to stay on e and probability j1l(e)j to reach one of the linked items.
We define S(e; e0) as the probability that two such one-step random walks starting from
e and e0 end up on the same item. This can be computed explicitly as</p>
        <p>S(e; e0) =</p>
        <p>2 e=e0 + (1
+ e02l(e) + (1
jl(e)j
)( e2l(e0)</p>
        <p>jl(e0)j
)2 jl(e) \ l(e0)j
jl(e)jjl(e0)j</p>
        <p>We then build a weighted graph Gd whose vertices are pairs (s 2 d; e 2 E[s]).
In other words, we add a vertex for each candidate entity at a given spot. We fix a
maximum distance D for edges: vertices (s; e) and (s0; e0) can only be linked if js
s0j D and s 6= s0. In this case, we define the weight of such an edge as ( +
s(e; e0)) D jDs s0j , where is a smoothing parameter. In other words, the edge weight is
proportional to the smoothed similarity between the entities, discounted by the distance
between the mentions.</p>
        <p>The weighted graph Gd can be represented as an adjacency matrix. We transform
it into a column-stochastic matrix Md by normalizing its columns to sum to one.5 This
defines a Markov chain on the candidate entities, that we will use to propagate the local
evidence.
4.3</p>
      </sec>
      <sec id="sec-3-3">
        <title>Classifying entities in context</title>
        <p>
          [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] first combine the local features into a local evidence score, and then spread this local
evidence using the Markov chain (where LC(d) is the vector of all p(ejd[s]) for each
spot and candidate at that spot):
        </p>
        <p>G(d) = ( I + (1
)Md)k LC(d)
(1)
We propose a variant of this approach, where each individual local compatibility
feature is propagated independently along the Markov chain.6 Let F be the matrix of all
local features for each candidate entity: F = (F (e1; d[s1]); : : : ; F (en; d[sn])). After k
iterations in the Markov chain, this defines features MdkF . Rather than relying on these
features for a fixed number of steps k, we record the features at each step, which defines
the vector</p>
        <p>(F; Md F; Md2 F; : : : ; Mdk F )
This alleviates the need for an parameter while keeping the number of features small.
We train a linear support vector classifier on these features and this defines the final
5 The matrix Md is a square matrix whose dimension is the number of candidate entities in the
text. This can grow large but the matrix remains sparse due to the locality assumption.
6 It is important for this purpose that features are initially scaled to the unit interval.
score of each candidate entity. For each spot, our system picks the highest-scoring
candidate entity that the classifier predicts as a match, if any.
5</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experimental setup</title>
      <p>Most entity linking datasets are annotated against DBpedia or YAGO. Wikidata contains
items which do not have any corresponding Wikipedia article (in any language), so these
items do not have any DBpedia or YAGO URI either.7 Therefore, converting an entity
linking dataset from DBpedia to Wikidata requires more effort than simply following
owl:sameAs links: we also need to annotate mentions of Wikidata items which do
not have a corresponding DBpedia URI.</p>
      <p>
        We used the RSS-500 dataset of news excerpts annotated against DBpedia and
encoded in NIF format [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. We first translated all DBpedia URIs to Wikidata items8.
Then, we used OpenRefine [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] to extract the entities marked not covered by DBpedia
and matched them against Wikidata. After human review, this added 63 new links to the
524 converted from DBpedia (out of 476 out-of-KB entities).
      </p>
      <p>We also annotated a new dataset from scratch. The ISTEX dataset consists of one
thousand author affiliation strings extracted from research articles and exposed by the
ISTEX text and data mining service9. In this dataset, only 64 of the 2,624 Wikidata
mentions do not have a corresponding DBpedia URI.</p>
      <p>We use the Wikidata JSON dump of 2018-02-24 for our experiments, indexed with
Solr (Lucene). We restrict the index to humans, organizations and locations, by selecting
only items whose type was a subclass of (P279) human (Q5), organization (Q43229)
or geographical object (Q618123). Labels and aliases in all languages are added to a
case-sensitive finite state transducer index.</p>
      <p>
        We trained our classifier and its hyper-parameters by five-fold cross-validation on
the training sets of the ISTEX and RSS datasets. We used GERBIL [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] to evaluate
OpenTapioca against other approaches. We report the InKB micro and macro F1 scores
on test sets, with GERBIL’s weak annotation match method.10
      </p>
      <p>Table 1 compares our approach to other entity linkers available online and
compatible with the GERBIL evaluation platform. Our approach performs best on datasets of
small text fragments (tweets in Microposts 2016, academic affiliations in ISTEX-1000)
where context dependencies between entities are narrow. We suspect that the weakness
of our language model (trained on Wikidata terms only) also hinders performance on
longer texts.
6</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusion</title>
      <p>The surface forms curated by Wikidata editors are sufficient to reach honourable
recall, without the need to expand them with mentions extracted from Wikipedia. Our
7 This is the case of Julie Pace (Q34666768) in Figure 1.
8 We built the nifconverter tool to do this conversion for any NIF dataset.
9 The original data is available under an Etalab license at https://www.istex.fr/
10 The full details can be found at http://w3id.org/gerbil/experiment?id=
201904110006
restriction to people, locations and organizations probably helps in this regard and we
anticipate worse performance for broader domains. Our approach works best for
scientific affiliations, where spelling is more canonical than in newswire. The availability
of Twitter identifiers directly in Wikidata helps us to reach acceptable performance in
this domain. The accuracy degrades on longer texts which require relying more on the
ambiant topical context. In future work, we would like to explore the use of entity
embeddings to improve our approach in this regard.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Auer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bizer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kobilarov</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lehmann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cyganiak</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ives</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          :
          <article-title>DBpedia: A nucleus for a web of open data</article-title>
          .
          <source>The semantic</source>
          web pp.
          <fpage>722</fpage>
          -
          <lpage>735</lpage>
          (
          <year>2007</year>
          ). https://doi.org/10.1007/978- 3-
          <fpage>540</fpage>
          -76298-052
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Bordes</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Usunier</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garcia-Duran</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weston</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yakhnenko</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Translating Embeddings for Modeling Multi-relational Data</article-title>
          .
          <source>In: Advances in Neural Information Processing Systems</source>
          . p.
          <volume>9</volume>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cucerzan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Large-scale named entity disambiguation based on Wikipedia data</article-title>
          .
          <source>In: Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL)</source>
          (
          <year>2007</year>
          ). https://doi.org/10.1007/978-3-
          <fpage>319</fpage>
          -73706-510
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Ganea</surname>
            ,
            <given-names>O.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hofmann</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Deep Joint Entity Disambiguation with Local Neural Attention</article-title>
          .
          <source>In: Conference on Empirical Methods in Natural Language Processing (EMNLP) 2017 (Apr</source>
          <year>2017</year>
          ). https://doi.org/10.18653/v1/
          <fpage>D17</fpage>
          -1277
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Geiß</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spitz</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gertz</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>NECKAr: A named entity classifier for Wikidata</article-title>
          .
          <source>In: International Conference of the German Society for Computational Linguistics and Language Technology</source>
          . pp.
          <fpage>115</fpage>
          -
          <lpage>129</lpage>
          . Springer (
          <year>2017</year>
          ). https://doi.org/10.1007/978-3-
          <fpage>319</fpage>
          -73706-510
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Han</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Collective entity linking in web text: A graphbased method</article-title>
          .
          <source>In: Proceedings of the 34th International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          . pp.
          <fpage>765</fpage>
          -
          <lpage>774</lpage>
          . ACM (
          <year>2011</year>
          ). https://doi.org/10.1145/2009916.2010019
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Huynh</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Morris</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mazzocchi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sproat</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Magdinier</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guidry</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Castagnetto</surname>
            ,
            <given-names>J.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Home</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Johnson-Roberson,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Moffat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            ,
            <surname>Moyano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Leoni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Peilonghui</surname>
          </string-name>
          , Alvarez,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Vishal</surname>
          </string-name>
          <string-name>
            <surname>Talwar</surname>
          </string-name>
          , Wiedemann,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Verlic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Delpeuch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Shixiong</surname>
          </string-name>
          <string-name>
            <surname>Zhu</surname>
          </string-name>
          , Pritchard,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Sardesai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Thomas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Berthereau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Kohn</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          :
          <source>OpenRefine</source>
          (
          <year>2019</year>
          ). https://doi.org/10.5281/zenodo.595996
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Klang</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nugues</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Named Entity Disambiguation in a Question Answering System p</article-title>
          .
          <volume>3</volume>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Kolitsas</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ganea</surname>
            ,
            <given-names>O.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hofmann</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>End-to-End Neural Entity Linking</article-title>
          . arXiv:
          <year>1808</year>
          .07699 [cs] (
          <year>Aug 2018</year>
          ). https://doi.org/10.18653/v1/k18-
          <fpage>1050</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Mihalcea</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Csomai</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Wikify!: Linking documents to encyclopedic knowledge</article-title>
          .
          <source>In: Proceedings of the Sixteenth ACM Conference on Conference on Information and Knowledge Management</source>
          . pp.
          <fpage>233</fpage>
          -
          <lpage>242</lpage>
          . ACM (
          <year>2007</year>
          ). https://doi.org/10.1145/1321440.1321475
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Efficient estimation of word representations in vector space</article-title>
          .
          <source>arXiv preprint arXiv:1301.3781</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Moro</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raganato</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Navigli</surname>
          </string-name>
          , R.:
          <article-title>Entity Linking meets Word Sense Disambiguation: A Unified Approach</article-title>
          .
          <source>Transactions of the Association for Computational Linguistics</source>
          <volume>2</volume>
          (
          <issue>0</issue>
          ),
          <fpage>231</fpage>
          -
          <lpage>244</lpage>
          (May
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Raiman</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raiman</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>DeepType: Multilingual Entity Linking by Neural Type System Evolution</article-title>
          . arXiv:
          <year>1802</year>
          .01021 [cs] (
          <year>Feb 2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Ratinov</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Roth</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Downey</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anderson</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Local and Global Algorithms for Disambiguation to Wikipedia</article-title>
          . In:
          <article-title>Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies</article-title>
          . pp.
          <fpage>1375</fpage>
          -
          <lpage>1384</lpage>
          . Association for Computational Linguistics (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Sorokin</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gurevych</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Mixing Context Granularities for Improved Entity Linking on Question Answering Data across Entity Categories</article-title>
          . arXiv:
          <year>1804</year>
          .08460 [cs] (
          <year>Apr 2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Spitkovsky</surname>
            ,
            <given-names>V.I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>A.X.:</given-names>
          </string-name>
          <article-title>A Cross-Lingual Dictionary for English Wikipedia Concepts</article-title>
          .
          <source>LREC</source>
          pp.
          <fpage>3168</fpage>
          -
          <lpage>3175</lpage>
          (
          <year>2012</year>
          ). https://doi.org/10.1007/978-3-
          <fpage>642</fpage>
          -10871-67
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17. Sˇ tajner, T., Mladenic´,
          <string-name>
            <surname>D.</surname>
          </string-name>
          :
          <article-title>Entity resolution in texts using statistical learning and ontologies</article-title>
          .
          <source>In: Asian Semantic Web Conference</source>
          . pp.
          <fpage>91</fpage>
          -
          <lpage>104</lpage>
          . Springer (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Strube</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ponzetto</surname>
            ,
            <given-names>S.P.</given-names>
          </string-name>
          : WikiRelate!
          <article-title>Computing semantic relatedness using Wikipedia</article-title>
          .
          <source>In: AAAI</source>
          . vol.
          <volume>6</volume>
          , pp.
          <fpage>1419</fpage>
          -
          <lpage>1424</lpage>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Suchanek</surname>
            ,
            <given-names>F.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kasneci</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weikum</surname>
          </string-name>
          , G.:
          <article-title>Yago: A core of semantic knowledge</article-title>
          .
          <source>In: Proceedings of the 16th International Conference on World Wide Web</source>
          . pp.
          <fpage>697</fpage>
          -
          <lpage>706</lpage>
          . ACM (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Usbeck</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eickmann</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ferragina</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lemke</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moro</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Navigli</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Piccinno</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rizzo</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sack</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Speck</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Troncy</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          , Ro¨ der,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Waitelonis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Wesemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ngonga</surname>
          </string-name>
          <string-name>
            <surname>Ngomo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.C.</given-names>
            ,
            <surname>Baron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Both</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          , Bru¨ mmer,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Ceccarelli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Cornolti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Cherix</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          : GERBIL:
          <article-title>General Entity Annotator Benchmarking Framework</article-title>
          .
          <source>In: Proceedings of the 24th International Conference on World Wide Web - WWW '15</source>
          . pp.
          <fpage>1133</fpage>
          -
          <lpage>1143</lpage>
          . ACM Press, Florence, Italy (
          <year>2015</year>
          ). https://doi.org/10.1145/2736277.2741626
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21. Vrandecˇic´,
          <string-name>
            <surname>D.</surname>
          </string-name>
          , Kro¨ tzsch, M.:
          <article-title>Wikidata: A free collaborative knowledge base</article-title>
          .
          <source>Communications of the ACM</source>
          (
          <year>2014</year>
          ). https://doi.org/10.1145/2629489
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Weichselbraun</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kuntschik</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          , Bras¸oveanu,
          <string-name>
            <surname>A.M.</surname>
          </string-name>
          :
          <article-title>Mining and Leveraging Background Knowledge for Improving Named Entity Linking</article-title>
          .
          <source>In: Proceedings of the 8th International Conference on Web Intelligence, Mining and Semantics</source>
          . pp.
          <volume>27</volume>
          :
          <fpage>1</fpage>
          -
          <lpage>27</lpage>
          :
          <fpage>11</fpage>
          . WIMS '18,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          , New York, NY, USA (
          <year>2018</year>
          ). https://doi.org/10.1145/3227609.3227670
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Witten</surname>
            ,
            <given-names>I.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Milne</surname>
            ,
            <given-names>D.N.:</given-names>
          </string-name>
          <article-title>An effective, low-cost measure of semantic relatedness obtained from Wikipedia links (</article-title>
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Xiao</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          :
          <article-title>TransG : A Generative Model for Knowledge Graph Embedding</article-title>
          . In:
          <article-title>Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)</article-title>
          . pp.
          <fpage>2316</fpage>
          -
          <lpage>2325</lpage>
          . Association for Computational Linguistics, Berlin, Germany (
          <year>2016</year>
          ). https://doi.org/10.18653/v1/
          <fpage>P16</fpage>
          -1219
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>