<!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>Rule Mining for Semantifying Wikilinks</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Luis Galárraga</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Danai Symeonidou</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jean-Claude Moissinac Télécom ParisTech</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Paris</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>France</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>luis.galarraga</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>danai.symeonidou</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>jean-claude.moissinac}@telecom-paristech.fr</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Table 3: Average</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>Wikipedia-centric Knowledge Bases (KBs) such as YAGO and DBpedia store the hyperlinks between articles in Wikipedia using wikilink relations. While wikilinks are signals of semantic connection between entities, the meaning of such connection is most of the times unknown to KBs, e.g., for 89% of wikilinks in DBpedia no other relation between the entities is known. The task of discovering the exact relations that hold between the endpoints of a wikilink is called wikilink semanti cation. In this paper, we apply rule mining techniques on the already semanti ed wikilinks to propose relations for the unsemanti ed wikilinks in a subset of DBpedia. By mining highly supported and con dent logical rules from KBs, we can semantify wikilinks with very high precision.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        Some of the most prominent KBs such as DBpedia [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
or YAGO [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] build upon accurate information extraction
on the semi-structured parts of Wikipedia articles such as
infoboxes, Wikipedia categories and hyperlinks between
articles, namely wikilinks. Even though wikilinks account for
more than 25% of the non-literal facts in DBpedia, they
are rarely exploited. Nevertheless, the fact that two entities
are connected via a hyperlink accurately suggests a
semantic connection between them. The goal of this paper is to
discover the exact meanings of such connections.
      </p>
      <p>
        Some wikilinks are already semanti ed in KBs. YAGO
and DBpedia, for example, know that Barack Obama links
to USA and is also a citizen and the President of that
country. KBs can extract such information because it is usually
available in the infoboxes; however if the information lies
somewhere outside the infoboxes, KBs will not see it,
leading to unsemanti ed wikilinks (see [
        <xref ref-type="bibr" rid="ref21 ref9">9, 21</xref>
        ] for automatic
population of infoboxes from text). This is the case for 89% of
wikilinks in DBpedia. For instance, the Wikipedia article of
Barack Obama links to the article of the 2009 Nobel Prize,
but DBpedia does not know that he won the Nobel Prize.
In some other cases, the semantic connection encoded in a
wikilink can be vague and opaque and even not modeled in
the schema of the KB. For example, Obama's article also
links to the articles for cocaine and ovarian cancer.
      </p>
      <p>In this work, we show how to leverage the already
semanti ed wikilinks to semantify the others. This is achieved
by learning frequent semantic patterns from the relations in
the KB and the wikilinks. If we observe that people often
link to the countries where they come from, we can suggest
that unsemanti ed wikilinks from people to countries
convey a nationality relationship. This example also implies
that the types of entities play an important role when
semantifying wikilinks. For instance, the fact that France links
to Spain suggests that the implicit relation carried by the
wikilink holds between countries (or even places) and
therefore discards any relation with an incompatible signature. If
we assume that wikilinks between countries encode a trade
partnership, we can formulate this pattern as a logical rule:
linksTo(x; y)^is(x; Country)^is(y; Country) ) deals(x; y)
Given an unsemanti ed wikilink between two countries, this
rule will predict that they must be trade partners. Such
predictions could be proposed as candidate facts to
populate KBs. Still, this application scenario would require the
rules to have certain quality, i.e., they should be statistically
signi cant and draw correct conclusions in most cases. This
would avoid capturing noisy or irrelevant patterns and make
wrong predictions.</p>
      <p>
        The process of learning logical rules from structured data
is known as Rule Mining. In this paper, we resort to a
method called AMIE [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] to mine logical rules from KBs. We
then use the rules to draw conclusions and compute a list
of the most likely candidate meanings (relations) between
the entities of unsemanti ed wikilinks. Using a
straightforward inference method, we can discover meanings for 180K
unsemanti ed wikilinks with very high precision.
      </p>
      <p>In addition to the semanti cation of wikilinks, and to
further emphasize their value, we discuss their e ect in the
task of rule mining. We observe that sometimes, they can
increase the con dence of the obtained rules. For instance,
assuming that a rule mining approach learns the rule:
currentM ember(x; y) ) team(x; y)
we observe that by requiring the existing of a wikilink
between the entities:</p>
      <p>linksT o(x; y) ^ currentM ember(x; y) ) team(x; y)
we achieve higher con dence. This observation could be
leveraged by data inference and link prediction approaches.
It also provides additional insights about the KB.</p>
    </sec>
    <sec id="sec-2">
      <title>RELATED WORK</title>
      <p>Link prediction. The task of discovering semantic links
between entities in KBs is often referred in the literature
as link prediction. Due to the prominence of the Semantic
Web, the problem has been extensively studied using
multiple paradigms.</p>
      <p>
        Statistical graphical models such as Bayesian Networks [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]
and Markov Logic Networks (MLN) [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] o er a theoretically
rigorous framework for data inference in KBs. Given a KB
and a set of soft weighted rules expressed in rst order logic,
MLNs support multiple inference tasks such as probability
calculation for queries and predictions, and MAP (Maximum
a Posteriori) inference. The major drawback of such
methods is that in the original formulation they do not scale to the
size of current KBs. Nevertheless, there have been initiatives
to extend the applicability of MLNs to large datasets [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>
        Some approaches represent KBs as matrices or tensors [
        <xref ref-type="bibr" rid="ref12 ref13">12,
13</xref>
        ]. Under this paradigm, for instance, a KB can be
represented as a three-dimensional tensor where the fact r(x; y) is
encoded as 1 in the cell with coordinates (r; x; y). Methods
such as RESCAL [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], among others [
        <xref ref-type="bibr" rid="ref13 ref18">13, 18</xref>
        ] resort to tensor
factorization and latent factor analysis on the matrix
representation of the KB, in order to estimate the con dence of
the missing cells, i.e., how likely the missing facts are true
based on the latent features in the data. Even though the
scores are often given a probabilistic interpretation, they are
not probabilities in a strict sense. Unlike our approach, this
line of methods does not rely on explicitly formulated rules
to perform inference.
      </p>
      <p>
        A third family of approaches [
        <xref ref-type="bibr" rid="ref20 ref3 ref7">7, 20, 3</xref>
        ] resorts to
embedding models to formulate the link prediction problem.
In [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], entities are represented as vectors in an
embedding space, while relations are de ned as transformations
on those vectors, e.g., the transformation nationality maps
the vector of Barack Obama to the vector of USA. Methods
based on embedding methods are very e ective at predicting
values for functional relations, e.g., place of birth and still
perform fairly well for one-to-many relations, e.g., children.
      </p>
      <p>
        Unlike the previous methods, the approach proposed in [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]
relies on a graph representation for KBs and applies
random walks and path ranking methods to discover new facts
in large KBs. In a similar fashion [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] mines frequent
metapaths on data graphs, i.e., sequences of data types connected
by labeled edges, and uses them to predict links between
entities.
      </p>
      <p>All the approaches mentioned so far tackle the link
prediction problem in KBs in a general way. Our approach in
contrast, has a more focused scope, since we aim at
predicting semantic links for entities for which there exists a signal
of semantic connection, namely a wikilink.</p>
      <p>
        Wikilinks for type induction. Some approaches have
leveraged the semantic value conveyed by wikilinks for the
task of type inference in KBs. The work presented in [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]
represents the set of wikilinks as a directed graph where
each entity is replaced by its more speci c type in the
DBpedia type hierarchy. The method discovers frequent
subgraph patterns on such graph. These are called Encyclopedic
Knowledge Patterns (EKP). EKPs can be used to describe
classes of entities and therefore predict the types for untyped
entities, e.g., instances of soccer players will often link to
instances of coaches and soccer leagues. While this method
also makes use of the instance information to mine patterns,
it does not aim to discover relations between entities. Thus,
it does not make use of any other relations holding between
the endpoints of wikilinks. In the same spirit, [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] builds
upon EKPs and uses the instance information to map both
entities and classes to a vector space. A similarity function
on this space is used to compute the distance of an entity to
the prototypical vector of classes and predict the types for
untyped entities.
3.
3.1
      </p>
    </sec>
    <sec id="sec-3">
      <title>PRELIMINARIES</title>
    </sec>
    <sec id="sec-4">
      <title>Rule Mining</title>
      <p>Our proposal to semantify wikilinks relies on logical rules
mined from a KB and its wikilinks. In this paper we use a
logical notation to represent rules and facts in a KB, e.g., the
fact that Angela Merkel is a citizen of Germany is expressed
as nationality(Angela Merkel, Germany). An atom is a fact
where at least one of the arguments of the relation is a
variable, e.g., nationality(x, Germany). We say that an atom
holds in a KB if there exists an assignment for the variables
in the atom that results in a fact in the KB. Moreover,we say
that two atoms are connected if they share at least one
variable. The building blocks for logical rules are conjunctions
of transitively connected atoms. For example, the rule that
says that married couples have the same nationality can be
expressed as:</p>
      <p>nationality(x; y) ^ spouse(x; z) ) nationality(z; y)
This is a Horn rule. The left-hand side of the implication is a
conjunction of connected atoms called the body, whereas the
right-hand side is the head. In this paper, we focus on closed
Horn rules, i.e., rules where each variable occurs in at least
two atoms of the rule. Closed Horn rules always conclude
concrete facts for assignments of the variables to values in
the KB. If the KB knows nationality(Barack Obama, USA)
and spouse(Barack Obama, Michelle Obama), our example
rule will conclude nationality(Michelle Obama, USA). If the
conclusion of a rule does not exist in the KB, we call it
a prediction. Rule Mining approaches require a notion of
counter-examples and precision for rules, to account for the
cases where the rules err. In the next section we describe
such notions as well as a method to learn closed Horn rules
from potentially incomplete KBs.
3.2</p>
    </sec>
    <sec id="sec-5">
      <title>AMIE</title>
      <p>
        AMIE [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] is a system that learns closed Horn rules of the
form:
      </p>
      <p>B1 ^</p>
      <p>^ Bn ) r(x; y) Abbrev. B ) r(x; y)
AMIE assesses the quality of rules in two dimensions:
statistical signi cance and con dence. The rst dimension is
measured by the support of the rule. This metric is de ned
according to the following formula:</p>
      <p>
        supp(B ) r(x; y)) := #(x; y) : 9z1; :::; zm : B ^ r(x; y)
In other words, the support is the number of distinct
assignments of the head variables for which the rule concludes a
fact in the KB. Support is de ned to be monotonic; given
a rule, the addition of a new atom will never increase its
support. Moreover, support is a measure of statistical
evidence, thus, it does not gauge the precision of the rule, i.e.,
how often it draws correct or incorrect conclusions. This
requires a notion of negative examples. Since KBs do not
encode negative information, rule mining approaches resort
to di erent assumptions to derive counter-evidence.
Methods based on traditional association rule mining [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] resort to
the Closed World Assumption (CWA). Under the CWA, any
conclusion of the rule that is absent in the KB, is a
counterexample. This mechanism, however, contradicts the Open
World Assumption that KBs make. In constrast, AMIE
uses the Partial Completeness Assumption (PCA) to deduce
counter-examples. The PCA is the assumption that if a KB
knows some r-values for an instance, then it knows all its
values. If a rule predicts a second nationality for Barack
Obama, knowing that he is American, the PCA will count
such deduction as a counter-example. On other hand if the
KB did not know any nationality for Obama, then such case
would be disregarded as evidence, while the CWA would still
count it as negative evidence. Notice that, the PCA is
perfectly safe for functional relations, e.g., place of birth and
still feasible for quasi-functions such as nationality.
      </p>
      <p>The con dence of a rule under the PCA follows the
formula:
pcaconf (B ) r(x; y)) :=
supp(B ) r(x; y))
#(x; y) : 9z1; : : : ; zk; y0 : B ^ r(x; y0)
The PCA con dence normalizes the support of the rule
(number of positive examples) over the number of both the
positive and the negative examples according to the PCA.</p>
      <p>AMIE uses support and con dence as quality metrics for
rules and the user can threshold on these metrics. In
addition, AMIE implements a set of strategies to guarantee
good runtime and rules of good quality. Examples of such
strategies are prune by support and the skyline technique. To
prune the search space e ciently, AMIE relies on the
monotonicity of support, that is, once a rule has dropped below
the given support threshold, the system can safely discard
the rule and all its derivations with more atoms. The skyline
technique, on the other hand, is an application of the Occam
Razor principle: among a set of hypotheses with the same
predictive power, the one with fewer assumptions (the
simplest) should be preferred. If the system has already learned
a rule of the form B ) r(x; y) and then nds a more speci c
version of the rule, i.e., B ^ rn(xn; yn) ) r(x; y), the more
speci c rule will be output only if it has higher con dence.</p>
    </sec>
    <sec id="sec-6">
      <title>4. SEMANTIFYING WIKILINKS</title>
      <p>Our approach to semantify wikilinks relies on the
intuition that (a) wikilinks often convey a semantic connection
between entities, (b) some of them are already semanti ed
in KBs, (c) the types of the entities in the wikilink de ne the
signature of its implicit relation and (d) the already
semantied wikilinks can help us semantify the others. The already
semanti ed wikilinks constitute our training set. From this
training set, we mine a set of semantic patterns in the form
of logical rules.</p>
      <p>To justify our intuition, we look at the types of the
endpoints of semanti ed wikilinks in DBpedia. We restrict our
analysis to the classes Person, Place and Organization.
Table 1 shows the most common relations holding between
pairs of those entities for which there exists at least one
wikilink. For example, we observe that when a person links to a
place, in 56% of the cases, the person was born in that place.
Similarly, when an organization links to a place, in 19% of
the cases, this corresponds to its location. We also observe
that in our dataset, 81% of the links for these classes are
not semanti ed. Rule mining techniques can help us learn
the patterns suggested by Table 1 and semantify more links.
For example, the fact that organizations link to the places
where they are located can be expressed as:</p>
      <p>linksT o(x; y) ^ is(x; Org) ^ is(y; Loc) ) location(x; y)
Such a rule would allow us to predict the relation location
for unsemanti ed wikilinks between organizations and
locations. This is a link prediction task and has a great value
for web-extracted KBs such as YAGO or DBpedia.</p>
      <p>We start by constructing a training set K from DBpedia
3.81 consisting of 4.2M facts and 1.7M entities, including
people, places and organizations. We enhance this dataset
with the type information about the entities, i.e., 8M rdf:type
statements, and the wikilinks between those entities. Since
we can only learn from already semanti ed wikilinks, we
restrict the set of wikilinks to those where both endpoints
participate in a relation in the data, i.e., linksT o(a; b) 2 K
i 9 r; r0; x; y : (r(x; a) _ r(a; x)) ^ (r0(y; a) _ r0(a; y)). This
procedure led us to a training set K with a total of 18M
facts. We ran AMIE on this dataset and con gured it to
mine closed Horn rules of the form:</p>
      <p>linksT o (x; y) ^ B ^ is(x; C) ^ is(y; C0) ) r(x; y)
where linksTo is an alias for wikiPageWikiLink, linksTo*
denotes either linksTo or linksTo 1, "is" is a synonym for
rdf:type and B is a conjunction of up to 2 atoms. We call
them semanti cation rules. With support and PCA con
dence thresholds 100 and 0.2 respectively, AMIE found 3546
semanti cation rules on the training set K. Table 2 shows
examples of those rules.</p>
      <p>We then use the rules to draw predictions of the form
p := r(a; b), i.e., r(a; b) 2= K. We restrict even further
the set of predictions, by requiring the arguments to be
the endpoints of unsemanti ed wikilinks, more precisely,
@ r0 : r0 6= linksT o ^ r0(a; b) 2 K. Recall that those
predictions may have a di erent degree of con dence depending
on the con dence of the rules that are used to deduce them.
Moreover, a prediction can in principle be deduced by
multiple rules since AMIE explores the search space of rules in an
exhaustive fashion. To take this observation into account,
we de ne the con dence of a prediction p according to the
following formula:
conf (p) := 1
pcaconf (Ri)])
(1)
jRj
Y (1 [ (Ri; p)
i=1
where R is the set of semanti cation rules and (Ri; p) = 1
if Ri ` p, i.e., if p is concluded from rule Ri; otherwise
(Ri; p) = 0. The rationale behind Formula 1 is that the
more rules lead to a prediction, the higher the con dence on
that prediction should be. The con dence is then de ned as
the probability that at least one of the rules Ri that
concludes p applies. This can be calculated as 1 minus the
probability that none of the rules holds. The latter probability
is de ned as the product of the probabilities that each rule
in isolation does not hold, in other words (1 pcaconf (Ri)).
Formula 1 thus, makes two strong assumptions. First, it
confers a probabilistic interpretation to the PCA con dence.
1We learn rules on DBpedia 3.8 to corroborate some of their
predictions automatically in DBpedia 3.9</p>
      <sec id="sec-6-1">
        <title>Place</title>
        <p>Place
Place</p>
      </sec>
      <sec id="sec-6-2">
        <title>Organization Organization Organization</title>
      </sec>
      <sec id="sec-6-3">
        <title>Place</title>
        <p>Person
Organization</p>
      </sec>
      <sec id="sec-6-4">
        <title>Organization</title>
        <p>Person
Place
successor
birthPlace
team
isPartOf
leaderName
owner
sisterStation
currentMember
location</p>
        <p>Second, it assumes that rules are independent events. While
we do not claim these assumptions to be correct, they still
provide a naive baseline to estimate the likelihood of facts
without resorting to more sophisticated approaches for data
inference. As we show later, such a naive estimator delivers
satisfactory results in our scenario.</p>
        <p>
          Given an unsemanti ed wikilink l := linksT o(a; b),
Formula 1 allows us to propose a list of candidate meanings for
l. If among the set of predictions there are several facts of
the form ri(a; b), then each relation ri is a semanti cation
candidate for l with con dence conf (ri(a; b)). For each
unsemanti ed link, we propose a list of semanti cation
candidates sorted by con dence. Our procedure proposes relation
candidates for 180K unsemanti ed wikilinks in the training
set. Since, we can semantify only 1% of them by
automatically checking our predictions in DBpedia 3.9, we evaluate
the precision of our approach on a sample of 60
unsemanti ed wikilinks. We then evaluate the correcteness of their
rankings of semanti cation candidates as follows: for each
wikilink we count the number of correct candidates at top
1 and top 3 of the ranking, we then add up these counts
and divide them by the total number of candidates at top
1 and top 3 respectively. This gives us an estimation of the
precision of our approach. Table 3 shows the estimated
precision values drawn from the sample as well as the size of
the Wilson Score Interval [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] at con dence 95%. The results
imply that, for example, the precision at top 1 for the whole
set of wikilinks lies in the interval 77% 10% with 95%
probability.
        </p>
        <p>Table 4 shows some examples of wikilinks and the
ranking of semanti cation candidates proposed by our approach.
The number in parentheses corresponds to the con dence of
the semanti cation candidate. The candidates evaluated as
correct according to the our evaluation are in italics.</p>
      </sec>
      <sec id="sec-6-5">
        <title>Rules without wikilink</title>
        <p>Rules with wikilink
Rules with con dence gain
Weighted average gain (wag)
Rules with gain 0.1</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>WIKILINKS FOR RULE MINING</title>
      <p>The skyline technique implemented in AMIE prevents the
system from reporting low quality rules. If AMIE nds two
rules B ) r(x; y) and B ^ rn(xn; yn) ) r(x; y) and the
latter has lower con dence, the system will not output it
because it is worse in all dimensions, i.e., it has also lower
support. We therefore investigate the con dence gain
carried by the addition of wikilink atoms in rules.</p>
      <p>
        We rst run AMIE on the DBpedia mapping-based triples.
In a second run, we add the wikilinks to the mapping-based
triples and instruct the system to mine, when possible, rules
of the form linksT o (x; y) ^ B ) r(x; y), i.e., if the skyline
technique does not prune the longer rule. In both cases, we
set a threshold of 100 positive examples for support and no
con dence threshold. We report our ndings in Table 5. We
observe that requiring the head variables to be connected via
a wikilink increases the number of rules from 857 to 1509.
This occurs because in the second run, AMIE sometimes
mines versions of the rules with and without the linksTo
atom. In other words, for some rules the addition of a
wikilink atom provides a con dence gain. This is the case for
1389 rules as Table 5 shows. We are interested in nding
how much con dence gain is carried by those rules. Thus,
we de ne the gain of a wikilink rule as a variant of the gain
metric used in association rule mining [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]:
gain(R) := supp(R) (pcaconf (R)
pcaconf (R:linksTo ))
That is, the gain of a wikilink rule is the product of its
support and the di erence in con dence with respect to the
rule without the linksTo atom. Table 5 reports an
average gain of 0.03. We nd, however, that for 10% of rules,
      </p>
      <sec id="sec-7-1">
        <title>WikiLink</title>
        <p>Interstate 76 (west) ! Colorado State Highway
J. Bracken Lee ! Herbert B. Maw
WHQX ! WTZE</p>
      </sec>
      <sec id="sec-7-2">
        <title>Semanti cation candidates</title>
        <p>routeJunction (1.0)
predecessor (1.0), parent(0.998), governor(0.882)
sisterStation (1.0)
Rule
producer(x; y) ^ recordLabel(x; y) ) artist(x; y)
debutT eam(x; y) ) team(x; y)
of f icialLanguage(x; y) ) spokenIn(x; y)
the gain can be higher than 0.1. We show some of those
rules with their corresponding con dence gain in Table 6. It
follows that, in the majority of cases, the wikilinks do not
provide a signi cant con dence gain to rule mining in
DBpedia. The reason lies on the fact that for 99% of the triples
in the DBpedia mapping-based dataset, there is a wikilink
between the arguments of the triples, that is, the addition
of a wikilink atom does not provide additional information
to the rule. On the other hand, for certain relations, the
arguments are not sometimes not connected with a wikilink.
This is the case for 100K triples. In such cases, the addition
of a linksT o atom may convey a con dence gain that can
be used to improve the quality of the rules.</p>
        <p>All our datasets and experimental results are available
under http://luisgalarraga.de/semantifying-wikilinks.</p>
      </sec>
    </sec>
    <sec id="sec-8">
      <title>CONCLUSIONS</title>
      <p>While none of the major Wikipedia-centric KBs make
further use of the wikilinks, in this work we have shown that
they often encode latent relations between entities. Such
relations may not be captured in KBs. We have shown that
rule mining techniques and naive inference methods are a
feasible alternative to accurately discover those implicit
semantics. This wikilink semanti cation task can be seen as a
particular case of the link prediction problem in KBs. With
this work, we aim at turning the attention to the wikilinks,
as they convey valuable information that can help improve
the completeness of KBs.</p>
    </sec>
    <sec id="sec-9">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work is supported by the Chair \Machine Learning
for Big Data" of Telecom ParisTech and Labex DigiCosme
(project ANR-11-LABEX-0045-DIGICOSME) operated by
ANR as part of the program \In- vestissement d'Avenir" Idex
Paris-Saclay (ANR-11-IDEX-0003-02).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>S.</given-names>
            <surname>Auer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Bizer</surname>
          </string-name>
          , G. Kobilarov,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lehmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Cyganiak</surname>
          </string-name>
          , and
          <string-name>
            <surname>Z. Ives.</surname>
          </string-name>
          <article-title>DBpedia: A nucleus for a web of open data</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R. J.</given-names>
            <surname>Bayardo</surname>
          </string-name>
          .
          <article-title>Mining the most interesting rules</article-title>
          .
          <source>pages 145{154</source>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bordes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Usunier</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Garc</surname>
          </string-name>
          a-Duran,
          <string-name>
            <given-names>J.</given-names>
            <surname>Weston</surname>
          </string-name>
          , and
          <string-name>
            <given-names>O.</given-names>
            <surname>Yakhnenko</surname>
          </string-name>
          .
          <article-title>Translating embeddings for modeling multi-relational data</article-title>
          .
          <source>In NIPS</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L. D.</given-names>
            <surname>Brown</surname>
          </string-name>
          , T. T. Cai,
          <article-title>and</article-title>
          <string-name>
            <surname>A. DasGupta.</surname>
          </string-name>
          <article-title>Interval estimation for a binomial proportion</article-title>
          .
          <source>Statistical Science</source>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>N.</given-names>
            <surname>Friedman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Getoor</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Koller</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>A.</surname>
          </string-name>
          <article-title>Pfe er. Learning probabilistic relational models</article-title>
          .
          <source>In IJCAI</source>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>L.</given-names>
            <surname>Galarraga</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>Te ioudi, K. Hose</article-title>
          , and
          <string-name>
            <given-names>F.</given-names>
            <surname>Suchanek</surname>
          </string-name>
          . AMIE:
          <article-title>Association rule mining under incomplete evidence in ontological knowledge bases</article-title>
          .
          <source>In WWW</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Garc</surname>
          </string-name>
          a-Duran,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bordes</surname>
          </string-name>
          , and
          <string-name>
            <given-names>N.</given-names>
            <surname>Usunier</surname>
          </string-name>
          .
          <article-title>E ective blending of two and three-way interactions for modeling multi-relational data</article-title>
          .
          <source>In ECML-PKDD</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>B.</given-names>
            <surname>Goethals</surname>
          </string-name>
          and
          <string-name>
            <given-names>J. Van den Bussche. Relational</given-names>
            <surname>Association</surname>
          </string-name>
          <article-title>Rules: Getting WARMER</article-title>
          .
          <source>In Pattern Detection and Discovery</source>
          , volume
          <volume>2447</volume>
          . Springer Berlin / Heidelberg,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>D.</given-names>
            <surname>Lange</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>Bohm, and</article-title>
          <string-name>
            <given-names>F.</given-names>
            <surname>Naumann</surname>
          </string-name>
          .
          <article-title>Extracting structured information from wikipedia articles to populate infoboxes</article-title>
          .
          <source>In CIKM</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>N.</given-names>
            <surname>Lao</surname>
          </string-name>
          , T. Mitchell, and
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Cohen</surname>
          </string-name>
          .
          <article-title>Random walk inference and learning in a large scale knowledge base</article-title>
          .
          <source>In EMNLP</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>C.</given-names>
            <surname>Meng</surname>
          </string-name>
          , R. Cheng, S. Maniu,
          <string-name>
            <given-names>P.</given-names>
            <surname>Senellart</surname>
          </string-name>
          , and
          <string-name>
            <surname>W. Zhang.</surname>
          </string-name>
          <article-title>Discovering meta-paths in large heterogeneous information networks</article-title>
          .
          <source>In WWW</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M.</given-names>
            <surname>Nickel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Tresp</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.-P.</given-names>
            <surname>Kriegel</surname>
          </string-name>
          .
          <article-title>A three-way model for collective learning on multi-relational data</article-title>
          .
          <source>In ICML</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>M.</given-names>
            <surname>Nickel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Tresp</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.-P.</given-names>
            <surname>Kriegel. Factorizing</surname>
          </string-name>
          <string-name>
            <surname>YAGO</surname>
          </string-name>
          :
          <article-title>Scalable machine learning for linked data</article-title>
          .
          <source>In WWW</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>F.</given-names>
            <surname>Niu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Re</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Doan</surname>
          </string-name>
          , and
          <string-name>
            <given-names>J.</given-names>
            <surname>Shavlik</surname>
          </string-name>
          .
          <article-title>Tu y: Scaling up statistical inference in markov logic networks using an rdbms</article-title>
          .
          <source>VLDB Endowment</source>
          .,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>A.</given-names>
            <surname>Nuzzolese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gangemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Presutti</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Ciancarini</surname>
          </string-name>
          .
          <article-title>Encyclopedic knowledge patterns from wikipedia links</article-title>
          .
          <source>In ISWC</source>
          .
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>A. G.</given-names>
            <surname>Nuzzolese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gangemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Presutti</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Ciancarini</surname>
          </string-name>
          .
          <article-title>Type inference through the analysis of wikipedia links</article-title>
          .
          <source>In LDOW</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>M.</given-names>
            <surname>Richardson</surname>
          </string-name>
          and
          <string-name>
            <given-names>P.</given-names>
            <surname>Domingos</surname>
          </string-name>
          .
          <article-title>Markov logic networks</article-title>
          .
          <source>Mach. Learn.</source>
          ,
          <volume>62</volume>
          (
          <issue>1-2</issue>
          ):
          <volume>107</volume>
          {
          <fpage>136</fpage>
          ,
          <string-name>
            <surname>Feb</surname>
          </string-name>
          .
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>A. P.</given-names>
            <surname>Singh</surname>
          </string-name>
          and
          <string-name>
            <given-names>G. J.</given-names>
            <surname>Gordon</surname>
          </string-name>
          .
          <article-title>Relational learning via collective matrix factorization</article-title>
          .
          <source>In KDD</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>F. M.</given-names>
            <surname>Suchanek</surname>
          </string-name>
          , G. Kasneci, and
          <string-name>
            <given-names>G.</given-names>
            <surname>Weikum. Yago</surname>
          </string-name>
          :
          <article-title>A Core of Semantic Knowledge</article-title>
          .
          <source>In WWW</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Feng, and
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          .
          <article-title>Knowledge graph embedding by translating on hyperplanes</article-title>
          .
          <source>In AAAI</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>F.</given-names>
            <surname>Wu</surname>
          </string-name>
          and
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Weld</surname>
          </string-name>
          .
          <article-title>Autonomously semantifying wikipedia</article-title>
          .
          <source>In CIKM</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>