<!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>Identifying Wrong Links between Datasets by Multi-dimensional Outlier Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Heiko Paulheim</string-name>
          <email>heiko@informatik.uni-mannheim.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Mannheim, Germany Research Group Data and Web Science</institution>
        </aff>
      </contrib-group>
      <fpage>27</fpage>
      <lpage>38</lpage>
      <abstract>
        <p>Links between datasets are an essential ingredient of Linked Open Data. Since the manual creation of links is expensive at large-scale, link sets are often created using heuristics, which may lead to errors. In this paper, we propose an unsupervised approach for nding erroneous links. We represent each link as a feature vector in a higher dimensional vector space, and nd wrong links by means of di erent multidimensional outlier detection methods. We show how the approach can be implemented in the RapidMiner platform using only o -the-shelf components, and present a rst evaluation with real-world datasets from the Linked Open Data cloud showing promising results, with an F-measure of up to 0.54, and an area under the ROC curve of up to 0.86.</p>
      </abstract>
      <kwd-group>
        <kwd>Linked Open Data</kwd>
        <kwd>Link Quality</kwd>
        <kwd>Data Quality</kwd>
        <kwd>Link Debugging</kwd>
        <kwd>Outlier Detection</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Links between datasets are an essential ingredient for Linked Open Data [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
For reasons of scalability, such interlinks are often not created manually, but
generated (semi-)automatically by heuristics, which leads to occasional wrong
links.
      </p>
      <p>
        There are di erent reasons why link sets may contain errors. The rst (and
probably most frequent) reason is that the heuristic mechanism that creates
the links does not work at an accuracy of 100%. Typical heuristic approaches for
generating links combine di erent string metric of the entities' labels, sometimes
combined with some ltering by type (e.g., only linking entities of type Person)
[
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]. Those heuristics can work well, but are not free from errors, e.g., linking
two di erent persons which share the same name, or a river and a region with
the same name. Moreover, with such heuristics, there is a trade-o between
recall and precision, which leads to incorrect links. For example, [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ] reports
that around 20% of the links between DBpedia and Freebase are incorrect. A
further problem is that the link generation heuristics are usually not re-created
every time one of the linked data sources changes, thus, links may be outdated,
e.g., pointing to to resources that do not exist anymore.
      </p>
      <p>
        Another source of errors is that entities are linked which are not exactly the
same. While in theory, entities linked by owl:sameAs should refer to the same
real-world entity, this is not often the case, e.g., when linking a description of
the company Starbucks to an actual Starbucks cafe. A study in 2010 has shown
that only about half of all owl:sameAs actually denote two descriptions of the
same real world entity [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>In order to increase the quality of links between datasets, we propose an
approach which uses multi-dimensional outlier techniques for detecting wrong
links. To that end, features for each link are created, so that the link can be
described as a point in a high dimensional feature space. We use outlier detection
methods to nd those links that are represented by points which are far from
the overall distribution, assuming that those points represent wrong links.</p>
      <p>The rest of this paper is structured as follows. In section 2, we show our
approach for nding wrong links with outlier detection. In section 3, we introduce
the experimental setup we used for validating our approach, and discuss the
results. We conclude the paper with a review of related work in section 4, and
an outlook on future work in section 5.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Approach</title>
      <p>For nding wrong links with outlier detection, we rst represent each link as
a feature vector. Possible features are, e.g., the direct types of resources in the
linked datasets, i.e., all objects of statements that have the linked resource as a
subject and rdf:type as a predicate. A simpli ed example is shown in Fig. 1:
two datasets contain links between artists and music works. Instances of Song
and Album in dataset 1 are linked to instances of Music Work in dataset 2,
and instances of Artist in dataset 1 are mapped to instances of Music Artist
in dataset 2. It can be observed that in that feature space, there are relatively
dense clusters, and single outliers (such as the one dot in the upper middle, which
represents an album wrongly linked to an artist). Assuming that the majority
of links between two datasets is correct, the clusters are likely to represent the
correct links, while the singular outliers are likely to be wrong links.</p>
      <p>
        Such singular outliers can be found by methods of outlier or anomaly
detection [
        <xref ref-type="bibr" rid="ref15 ref8">8, 15</xref>
        ]. These methods automatically assign labels or scores to data points
which signi cantly deviate from the majority of data points in the overall dataset.
The outlier detection approach to be used has to be multi-dimensional, i.e., nd
data points that are abnormal w.r.t. the combination of their coordinates. In
contrast, single-dimensional or univariate outlier detection methods (such as
Grubbs' test or IQR) nd suspicious data points in only one dimension, e.g.,
unusually large or small temperature values measured by a sensor. In Fig. 1, the
outlying data point would not be an outlier if only considering one dimension,
i.e., only the type in dataset 1 or the type in dataset 2.
      </p>
      <p>To facilitate the detection of wrong links by outlier detection, our approach
consists of three basic steps:
1. Read a link set, and create a feature vector representation for each link
2. Perform outlier detection on the set of vectors, i.e., assign an outlier score
to each link
3. Order the links by outlier score, and store them
In a semi-automatic setting, a user would work through the list from top to
bottom until the false positive rate begins to rise above a certain limit. For fully
automatic link correction, all links with an outlier score above a threshold
would be regarded as outliers.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Experiments</title>
      <p>
        To evaluate our approach, we have set up a process in the RapidMiner1 platform
for data mining, combining operators from the Linked Open Data extension [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]
and the Anomaly Detection extension [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. The basic pipeline is shown in Fig. 2:
rst, a set of links is read, e.g., from a SPARQL endpoint, and for both resources
linked, features are added to the feature vector representation using the Linked
Open Data extension. The resulting vector is then passed to an outlier detection
algorithm, which assigns outlier scores. The output is written to a le containing
pairs of resources, augmented with scores.2
      </p>
      <sec id="sec-3-1">
        <title>1 http://www.rapidminer.com</title>
        <p>2 A step-by-step explanation of how to set up such a process is shown at http:
//dws.informatik.uni-mannheim.de/en/research/rapidminer-lod-extension/
rapidminer-lod-extension-example-discovering-wrong-links-between-datasets/</p>
        <p>Prepare and Write Output File
We examine two di erent strategies of creating feature vectors:
{ Using all direct types. A binary feature is created for each schema class,
which is set to true for a link if the linked resource has the class de ned as
its rdf:type.
{ Using all ingoing and outgoing properties. Two binary features are created for
each data and object property, which are set to true if the linked resource
is the subject resp. the object of a triple which uses the property as its
predicate.</p>
        <p>The same feature creation technique is applied to each of the two linked
resources, where distinct features are created for both resources. Furthermore, we
examine the union of both feature sets.
3.2</p>
        <sec id="sec-3-1-1">
          <title>Datasets</title>
          <p>
            We evaluate our approach on two link sets between three datasets of the Linked
Open Data cloud. The three datasets are:
{ DBpedia, a cross-domain dataset created from Wikipedia infoboxes [
            <xref ref-type="bibr" rid="ref20">20</xref>
            ].
{ Peel Sessions, a dataset describing the John Peel Sessions at BBC, the artists
involved, and the songs performed [
            <xref ref-type="bibr" rid="ref25">25</xref>
            ].
{ DBTropes, a dataset collecting information about movies, TV shows,
computer games, and books, among others, as well as tropes used in those [
            <xref ref-type="bibr" rid="ref17">17</xref>
            ].
          </p>
          <p>For DBpedia, we use the mapping-based types and the mapping-based
properties datasets of the 3.9 release3. For the Peel Sessions dataset, we use the dump</p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>3 http://wiki.dbpedia.org/Downloads39</title>
        <p>available at the web site4. For the DBTropes dataset, which provides daily
snapshots, we use a snapshot obtained on November 8th, 2013.5</p>
        <p>Both the Peel Sessions and the DBTropes data set are linked to DBpedia. The
Peel Sessions dataset contains 2,087 owl:sameAs links to DBpedia, the DBTropes
dataset contains 4,229 owl:sameAs links to DBpedia. While the Peel Sessions
dataset is rather restricted to the type of entities it links (in particular: artists
and songs), DBTropes contains a larger variety of entities, including general
concepts such as Celtic Mythology.</p>
        <p>Besides random links two homonymous resources (e.g., the TV series
Material Girl and the Madonna song), one typical source of errors is the linking
of instances derived from disambiguation pages (both DBpedia and DBTropes,
which is also derived from a Wiki, have such instances). A typical source of
errors for the Peel Session dataset is the linking of songs to albums with the same
name. Furthermore, the Peel Sessions dataset links di erent persons of the same
name { e.g., a blues musician named Jimmy Carter to the U.S. president.</p>
        <p>Table 1 depicts the sizes of the feature vectors for both link sets, i.e., the
number of classes and properties used for the elements that are mapped. The
counts of DBpedia classes and properties, show that the variety of objects linked
from DBTropes is higher. Furthermore, it is noteworthy that although DBTropes
uses two classes, one of those is only used for two objects, while the remaining
4,219 instances have the class TVTItem, which is only a generic class comparable
to owl:Thing. The properties used in the dataset are similarly generic.</p>
        <p>For our experiment, we have randomly sampled 100 links from both link sets,
and manually evaluated them for correctness, thus creating small partial gold
standards. From the Peel Session link set, 90 out of the 100 links are correct, for
the DBTropes link set, 76 out of the 100 links are correct. For the gold standard,
we use a strict de nition of owl:sameAs, e.g., a book and its protagonist are not
considered the same, neither are a book and a movie based on that book.
3.3</p>
        <sec id="sec-3-2-1">
          <title>Outlier Detection Methods</title>
          <p>To detect outliers, we compare six di erent multi-dimensional outlier detection
methods. For all outlier detection methods, we use the implementation in the
RapidMiner Anomaly Detection extension, and used the default parameters
unless speci ed otherwise.</p>
          <p>
            { The k-NN global anomaly score (GAS) is the average distance to the k
nearest neighbors [
            <xref ref-type="bibr" rid="ref5">5</xref>
            ], following the intuition that outliers are located in rather
4 http://dbtune.org/bbc/peel/, downloaded on November 6th, 2013
5 http://skipforward.opendfki.de/wiki/DBTropes
sparsely populated areas of the vector space (cf. Fig. 1). Since values for k
between 10 and 50 are recommended [
            <xref ref-type="bibr" rid="ref11">11</xref>
            ], we compute a GAS with k = 10,
k = 25, and k = 50.
{ The Local Outlier Factor (LOF) is computed from the density of data points
around the point under inspection, which in turn is computed from the
distances to the k nearest neighbors [
            <xref ref-type="bibr" rid="ref7">7</xref>
            ]. Since the algorithm allows the setting
of a minimum and a maximum k, we use kmin = 10 and kmax = 50 following
the recommendation above.
{ The Local Outlier Probability (LoOP) follows a similar idea as LOF, but maps
the outlier scores to probabilities in a [0; 1] interval (the scores assigned by
other methods are usually unbound) [
            <xref ref-type="bibr" rid="ref19">19</xref>
            ]. Like for GAS, we compute LoOP
with k = 10, k = 25, and k = 50.
{ The Cluster-based Local Outlier Factor (CBLOF) uses the output of a
clustering algorithm. It follows the intuition that outliers are located outside of
larger clusters, and thus assigns an outlier score based on the size of the
cluster in which a data point is located, and the distance to the next large
cluster [
            <xref ref-type="bibr" rid="ref14">14</xref>
            ]. According to the recommendation in [
            <xref ref-type="bibr" rid="ref11">11</xref>
            ], we set the value to
the expected percentage of correct instances, i.e., 0:90 for the Peel dataset,
and 0:76 for the DBtropes dataset.6 As a clustering algorithm, we use the
X-means algorithm, which restarts k-means with di erent values for k, in
order to nd an optimal one [
            <xref ref-type="bibr" rid="ref24">24</xref>
            ]. For the X-means clustering, we set kmin = 2
and kmax = 60.
{ The Local Density Cluster-based Outlier Factor (LDCOF) works similar to
CBLOF, but also takes the local density of the cluster into account [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ]. We
again use it together with X-means in the same con guration as above.
{ One-Class Support Vector Machines aim at training a support vector
machine covering only positive examples, so that the majority of data points is
separated from the rest. In our experiment, we use one-class SVMs with a
robust kernel de ned particularly for outlier detection [
            <xref ref-type="bibr" rid="ref4">4</xref>
            ].
          </p>
          <p>Most of the above methods (including the clustering algorithm) require the
definition of a distance function. Here, we use cosine similarity, since we want two
links to be more similar if they share a feature (both are of type Person), but
not if they share the absence of a feature (e.g., both are not of type City). In
contrast, other distance functions, such as Euclidean distance, would weigh the
shared presence and absence of a feature equally.
3.4</p>
        </sec>
        <sec id="sec-3-2-2">
          <title>Results</title>
          <p>We have tested each of the above outlier detection methods with three di erent
feature groups { direct types, properties, and the combination of both { on both
datasets, performing a total of 60 runs of the approach. The results are depicted
in table 2. We report the area under the ROC curve (AUC), the best F1-measure
6 Strictly speaking, setting these values according to observations on a labeled sample
of the data makes the approach using CBLOF no longer fully supervised.
that can be achieved, the threshold that has to be set on the outlier score in
order to achieve that F1-measure, and the total number of outliers that are
identi ed at that threshold.</p>
          <p>Multiple observations can be made from the table. First, in particular in
terms of AUC, the results on the Peel dataset are much better than those on the
DBTropes dataset. There are two main reasons for that: on the one hand, the
schema used in the Peel dataset is more ne-grained than that of the DBTropes
dataset, where the latter essentially has only major class, which is TVTItem.
Second, with around 24%, the fraction of outliers on the DBTropes dataset
is rather large, and larger than the amount of outliers many outlier detection
methods are built for. This can be observed very well on the results for the 1-class
SVM method, which reaches the best AUC on the Peel dataset, but performs
only average on the DBTropes dataset.</p>
          <p>Second, using only the type features works best, and the results do not
improve when combining both feature sets. As shown in table 1, the number of
features created from direct types is much smaller than that created from
relations, i.e., the outlier detection problem to be solved has a much lower
dimensionality. A large number of dimensions, however, is a problem for many outlier
detection methods, in particular those based on nearest neighbor methods. The
combination of type features and LoOP yields good results, with an AUC of
0.803 and 0.581, respectively, while the optimal results are achieved by the
1class SVM (AUC=0.857) and CBLOF (F1=0.537) on the Peel dataset, and by
LOF (AUC=0.619, F1=0.5) on the DBTropes dataset. The absolute numbers of
identi ed outliers for the optimal F1 show that in those cases, the F1 is
optimized mainly because of a high recall value, agging up to three quarters of all
links as outliers. This shows that selecting an optimal con guration is di cult.</p>
          <p>In order to obtain a more ne-grained picture of the di erences between the
approaches, gures 3 and 4 show the ROC curves of all approaches, using only
type features. It shows that in particular the LoOP approaches show very good
results on both datasets. The steep ascend of the respective ROC curves show
that there are ve actually wrong links among the top 10 identi ed outliers.</p>
          <p>The approach runs very fast in most cases. While the creation of feature
vectors strongly depends on the data access method (e.g., working with a public
SPARQL endpoint over the internet is much slower than using a local dump),
the outlier detection itself takes less than 10 seconds on both datasets for all the
methods used in our experiments. The only exceptions are the clustering-based
methods, where the clustering can take up to 30 seconds, and most dominantly
the One-Class SVM method, which can take up to 15 minutes.
4</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Related Work</title>
      <p>
        In this paper, we have analyzed the use of multi-dimensional outlier detection
for nding erroneous links. This work is orthogonal to the approach sketched in
[
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], where we use outlier detection in a one-dimensional setting to nd wrong
numeric literals in DBpedia.
      </p>
      <p>While a larger body of work is concerned with automatically creating links,
there are not too many approaches that try to automatically nd errors in links
between datasets. Moreover, most approaches discussed so far assume some prior
knowledge about the datasets, e.g., links on the schema level.</p>
      <p>
        [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] use a set of ve network metrics, such as degree and centrality, to predict
typical properties of nodes in two interlinked datasets, as well as try to nd
wrongly linked resources. They report a recall of 0.68 and a precision of 0.49
(although on a di erent dataset), i.e., a result quality comparable to the approach
discussed in this paper. In [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], links between more than two datasets are exploited
to nd the set of owl:sameAs that minimize the contradictions. The authors
show that they are capable of identifying a signi cant amount of contradictions,
however, they do not state the precision of their approach. A similar problem
is addressed in [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], where the authors aim at nding the most coherent set of
links from a set of possible link candidates.
      </p>
      <p>
        An approach using statistical distributions of properties, such as average
degrees, is discussed in [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. Like our approach, the authors compute con dence
scores for owl:sameAs links. However, there is a fundamental di erence: the
authors expect the same schema to be used by both linked resources. In
contrast, our approach can cope with entities using di erent schemas. The two link
sets used in this paper could not have been processed with such an approach
expecting the same schema for both linked datasets.
      </p>
      <p>
        The Databugger framework allows for nding typical patterns of wrong and/or
incomplete data, formulated as SPARQL queries [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. The key di erence is that,
while Databugger relies on schema information (e.g., owl:equivalentClass
definitions), our approach is agnostic with respect to the schemas used in the
datasets at hand. In [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], a crowd sourcing approach is introduced for
evaluating the quality of interlinks between datasets. While a considerable precision
of 0:94 is achieved using majority voting over Amazon MTurk tasks, the results
are not directly comparable, since the approach discussed in this paper works
fully automatically and unsupervised, while the authors exploit the wisdom of
the crowd. In [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], an approach is discussed for assessing the completeness of link
sets, based on manually de ned schema mappings. This is complementary to our
work, which is concerned with correctness, not completeness.
      </p>
      <p>
        The approaches in this paper focus on debugging link sets between
individuals, i.e., links on the A-box level. A related problem is the debugging of schema
mappings, i.e., links on the T-box level. Here, reasoning based approaches are
frequently used [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. While reasoning would also be a possible approach for A-box
level link set debugging, the problems here are scalability and missing
expressivity of the schemas used for Linked Open Data, and the A-box data often being
too noisy for reasoning to yield useful results [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ].
5
      </p>
    </sec>
    <sec id="sec-5">
      <title>Conclusion and Outlook</title>
      <p>In this paper, we have presented an approach for nding wrong links between
datasets, which uses multi-dimensional outlier detection techniques. An
evaluation on two datasets has shown promising results, with an area under the ROC
curve up to 0:86 (i.e., wrong links get lower scores than correct links with a
probability of 86%), and an F-measure up to 0:54. The approach is scalable, as
it processes link sets between real datasets from the LOD cloud in a few seconds
to a few minutes, depending on the con guration used.</p>
      <p>Although the datasets used for evaluation only use owl:sameAs links, it can
be applied to all sorts of datasets interlinks, the approach is not limited to a
particular type of links. It may also be used, e.g., on a dataset of persons linked
to a dataset of locations using foaf:basedNear links, or even for nding wrong
instantiations of any property within a single dataset.</p>
      <p>Given the amount of work that has been done in supervised or active learning
of dataset interlinks, a link validation method such as the one introduced in this
paper could be an interesting counterpart to be used in such learning systems.
Given that the features used for learning and for validating the links are di erent,
our method could provide a direct feedback loop for re ning the learned links.</p>
      <p>
        In essence, there are two basic degrees of freedom in our approach: the
strategy for creating feature vectors, and the outlier detection algorithm (and its
parametrization). With respect to feature vectors, we have experimented with
direct types and properties so far. A further option are quali ed relations, as
discussed in [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ], which, however, may impose scalability issues. Network
measures, as discussed in some related works, are an interesting option for generating
possible features, and domain or dataset speci c features, such as Wikipedia
categories for DBpedia, may also be csonidered. Furthermore, since many outlier
detection algorithms experience problems in higher dimensional spaces, applying
feature selection might be a useful preprocessing step, which, however, has to be
taken with great care, since particularly in our setting, the very sparse features
(which are likely to be eliminated by many feature selection approaches) are
often those which are well suited for nding outliers.
      </p>
      <p>As far as the selection of outlier detection methods is concerned, we have
observed some trends, in particular that Local Outlier Factor, Local Outlier
Probabilities, and 1-class SVMs perform quite well, however, especially the latter
two need to be carefully parametrized. Since many automatic parameter tuning
methods rely on a supervised rather than an unsupervised setting, it might be
an interesting option to wrap our approach in a semi-supervised setting, using
a small set of labeled links for automatic parameter tuning.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>Maribel</given-names>
            <surname>Acosta</surname>
          </string-name>
          , Amrapali Zaveri, Elena Simperl, Dimitris Kontokostas, Soren Auer, and
          <string-name>
            <given-names>Jens</given-names>
            <surname>Lehmann</surname>
          </string-name>
          .
          <article-title>Crowdsourcing linked data quality assessment</article-title>
          .
          <source>In International Semantic Web Conference (ISWC)</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>Riccardo</given-names>
            <surname>Albertoni</surname>
          </string-name>
          and
          <article-title>Asuncion Gomez Perez</article-title>
          .
          <article-title>Assessing linkset quality for complementing third-party datasets</article-title>
          .
          <source>In Proceedings of the Joint EDBT/ICDT 2013 Workshops</source>
          , pages
          <volume>52</volume>
          {
          <fpage>59</fpage>
          . ACM,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Mennatallah</given-names>
            <surname>Amer</surname>
          </string-name>
          and
          <string-name>
            <given-names>Markus</given-names>
            <surname>Goldstein</surname>
          </string-name>
          .
          <article-title>Nearest-neighbor and clustering based anomaly detection algorithms for rapidminer</article-title>
          .
          <source>In Proc. of the 3rd RapidMiner Community Meeting and Conference (RCOMM</source>
          <year>2012</year>
          ), pages
          <fpage>1</fpage>
          {
          <fpage>12</fpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Mennatallah</surname>
            <given-names>Amer</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Markus</given-names>
            <surname>Goldstein</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Slim</given-names>
            <surname>Abdennadher</surname>
          </string-name>
          .
          <article-title>Enhancing oneclass support vector machines for unsupervised anomaly detection</article-title>
          .
          <source>In Proceedings of the ACM SIGKDD Workshop on Outlier Detection and Description</source>
          , pages
          <volume>8</volume>
          {
          <fpage>15</fpage>
          . ACM,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>Fabrizio</given-names>
            <surname>Angiulli</surname>
          </string-name>
          and
          <string-name>
            <given-names>Clara</given-names>
            <surname>Pizzuti</surname>
          </string-name>
          .
          <article-title>Fast outlier detection in high dimensional spaces</article-title>
          .
          <source>In Principles of Data Mining and Knowledge Discovery</source>
          , pages
          <volume>15</volume>
          {
          <fpage>27</fpage>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Christian</given-names>
            <surname>Bizer</surname>
          </string-name>
          , Tom Heath, and
          <string-name>
            <surname>Tim</surname>
          </string-name>
          Berners-Lee.
          <article-title>Linked Data - The Story So Far</article-title>
          .
          <source>International Journal on Semantic Web and Information Systems</source>
          ,
          <volume>5</volume>
          (
          <issue>3</issue>
          ):1{
          <fpage>22</fpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Markus</surname>
            <given-names>M Breunig</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hans-Peter Kriegel</surname>
          </string-name>
          ,
          <string-name>
            <surname>Raymond T Ng</surname>
          </string-name>
          ,
          <article-title>and Jorg Sander. Lof: identifying density-based local outliers</article-title>
          .
          <volume>29</volume>
          (
          <issue>2</issue>
          ):
          <volume>93</volume>
          {
          <fpage>104</fpage>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>Varun</given-names>
            <surname>Chandola</surname>
          </string-name>
          , Arindam Banerjee, and
          <string-name>
            <given-names>Vipin</given-names>
            <surname>Kumar</surname>
          </string-name>
          .
          <article-title>Anomaly detection: A survey</article-title>
          .
          <source>ACM Computing Surveys (CSUR)</source>
          ,
          <volume>41</volume>
          (
          <issue>3</issue>
          ),
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9. Gerard de Melo.
          <article-title>Not quite the same: Identity constraints for the web of linked data</article-title>
          .
          <source>In Proceedings of the American Association for Arti cial Intelligence</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Arnab</surname>
            <given-names>Dutta</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Christian</given-names>
            <surname>Meilicke</surname>
          </string-name>
          , and Simone Paolo Ponzetto.
          <article-title>A probabilistic approach for integrating heterogeneous knowledge sources</article-title>
          .
          <source>In Extended Semantic Web Conference</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <given-names>Markus</given-names>
            <surname>Goldstein</surname>
          </string-name>
          .
          <article-title>Anomaly detection</article-title>
          .
          <source>In RapidMiner { Data Mining Use Cases and Business Analytics Applications</source>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Christophe</surname>
            <given-names>Gueret</given-names>
          </string-name>
          , Paul Groth, Claus Stadler, and
          <string-name>
            <given-names>Jens</given-names>
            <surname>Lehmann</surname>
          </string-name>
          .
          <article-title>Assessing linked data mappings using network measures</article-title>
          .
          <source>In Extended Semantic Web Conference (ESWC)</source>
          , pages
          <fpage>87</fpage>
          {
          <fpage>102</fpage>
          . Springer,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Harry</surname>
            <given-names>Halpin</given-names>
          </string-name>
          , PatrickJ. Hayes, JamesP. McCusker,
          <string-name>
            <surname>DeborahL. McGuinness</surname>
          </string-name>
          , and
          <article-title>HenryS</article-title>
          . Thompson.
          <article-title>When owl:sameAs Isn't the Same: An Analysis of Identity in Linked Data</article-title>
          .
          <source>In The Semantic Web { ISWC</source>
          <year>2010</year>
          , pages
          <fpage>305</fpage>
          {
          <fpage>320</fpage>
          . Springer Berlin Heidelberg,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Zengyou</surname>
            <given-names>He</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xiaofei Xu</surname>
            ,
            <given-names>and Shengchun</given-names>
          </string-name>
          <string-name>
            <surname>Deng</surname>
          </string-name>
          .
          <article-title>Discovering cluster-based local outliers</article-title>
          .
          <source>Pattern Recognition Letters</source>
          ,
          <volume>24</volume>
          (
          <issue>9</issue>
          ):
          <volume>1641</volume>
          {
          <fpage>1650</fpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Victoria</surname>
            J Hodge and
            <given-names>Jim</given-names>
          </string-name>
          <string-name>
            <surname>Austin</surname>
          </string-name>
          .
          <article-title>A survey of outlier detection methodologies</article-title>
          .
          <source>Arti cial Intelligence Review</source>
          ,
          <volume>22</volume>
          (
          <issue>2</issue>
          ):
          <volume>85</volume>
          {
          <fpage>126</fpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Aidan</surname>
            <given-names>Hogan</given-names>
          </string-name>
          , Axel Polleres, Jurgen Umbrich, and
          <string-name>
            <given-names>Antoine</given-names>
            <surname>Zimmermann</surname>
          </string-name>
          .
          <article-title>Some entities are more equal than others: statistical methods to consolidate linked data</article-title>
          .
          <source>In 4th International Workshop on New Forms of Reasoning for the Semantic Web: Scalable and Dynamic (NeFoRS2010)</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <article-title>Malte Kiesel and Gunnar Aastrand Grimnes</article-title>
          .
          <article-title>Dbtropes|a linked data wrapper approach incorporating community feedback</article-title>
          .
          <source>In EKAW 2010 Demo &amp; Poster Abstracts. International Conference on Knowledge Engineering and Knowledge Management (EKAW-10)</source>
          ,
          <source>17th International Conference on Knowledge Engineering and Knowledge Management, October 11-15</source>
          , Lisbon, Portugal,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Dimitris</surname>
            <given-names>Kontokostas</given-names>
          </string-name>
          , Patrick Westphal, Soren Auer, Sebastian Hellmann, Jens Lehmann, and
          <string-name>
            <given-names>Roland</given-names>
            <surname>Cornelissen</surname>
          </string-name>
          .
          <article-title>Test-driven evaluation of linked data quality</article-title>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Hans-Peter Kriegel</surname>
            , Peer Kroger, Erich Schubert, and
            <given-names>Arthur</given-names>
          </string-name>
          <string-name>
            <surname>Zimek</surname>
          </string-name>
          .
          <article-title>Loop: local outlier probabilities</article-title>
          .
          <source>In Proceedings of the 18th ACM conference on Information and knowledge management</source>
          , pages
          <volume>1649</volume>
          {
          <fpage>1652</fpage>
          . ACM,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Jens</surname>
            <given-names>Lehmann</given-names>
          </string-name>
          , Robert Isele, Max Jakob, Anja Jentzsch, Dimitris Kontokostas,
          <string-name>
            <given-names>Pablo N.</given-names>
            <surname>Mendes</surname>
          </string-name>
          , Sebastian Hellmann, Mohamed Morsey, Patrick van Kleef,
          <article-title>Soren Auer, and Christian Bizer</article-title>
          .
          <article-title>DBpedia { A Large-scale, Multilingual Knowledge Base Extracted from Wikipedia</article-title>
          .
          <source>Semantic Web Journal</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <given-names>Christian</given-names>
            <surname>Meilicke</surname>
          </string-name>
          . Alignment Incoherence in Ontology Matching. University of Mannheim,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          and
          <string-name>
            <given-names>Christian</given-names>
            <surname>Bizer</surname>
          </string-name>
          .
          <article-title>Type inference on noisy rdf data</article-title>
          .
          <source>In 12th International Semantic Web Conference (ISWC)</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <article-title>Heiko Paulheim and Johannes Furnkranz. Unsupervised Generation of Data Mining Features from Linked Open Data</article-title>
          .
          <source>In International Conference on Web Intelligence</source>
          , Mining, and
          <source>Semantics (WIMS'12)</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Dan</surname>
            <given-names>Pelleg</given-names>
          </string-name>
          , Andrew W Moore, et al.
          <article-title>X-means: Extending k-means with e cient estimation of the number of clusters</article-title>
          . In ICML, pages
          <volume>727</volume>
          {
          <fpage>734</fpage>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Yves</surname>
            <given-names>Raimond</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Christopher</given-names>
            <surname>Sutton</surname>
          </string-name>
          , and Mark B Sandler.
          <article-title>Automatic interlinking of music datasets on the semantic web</article-title>
          .
          <source>In Linked Data on the Web</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Julius</surname>
            <given-names>Volz</given-names>
          </string-name>
          , Christian Bizer,
          <string-name>
            <given-names>Martin</given-names>
            <surname>Gaedke</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Georgi</given-names>
            <surname>Kobilarov</surname>
          </string-name>
          .
          <article-title>Discovering and Maintaining Links on the Web of Data</article-title>
          .
          <source>In The Semantic Web - ISWC</source>
          <year>2009</year>
          , pages
          <fpage>650</fpage>
          {
          <fpage>665</fpage>
          . Springer Berlin Heidelberg,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <given-names>Dominik</given-names>
            <surname>Wienand</surname>
          </string-name>
          and
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Detecting incorrect numerical data in dbpedia</article-title>
          .
          <source>In Extended Semantic Web Conference</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Amrapali</surname>
            <given-names>Zaveri</given-names>
          </string-name>
          , Dimitris Kontokostas,
          <article-title>Mohamed A Sherif, Lorenz Buhmann, Mohamed Morsey, Soren Auer, and Jens Lehmann. User-driven quality evaluation of dbpedia</article-title>
          .
          <source>In 9th International Conference on Semantic Systems (I-SEMANTICS '13)</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>