<!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>A Comparison of Propositionalization Strategies for Creating Features from Linked Open Data</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Mannheim, Germany Research Group Data and Web Science</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>Linked Open Data has been recognized as a valuable source for background information in data mining. However, most data mining tools require features in propositional form, i.e., binary, nominal or numerical features associated with an instance, while Linked Open Data sources are usually graphs by nature. In this paper, we compare di erent strategies for creating propositional features from Linked Open Data (a process called propositionalization), and present experiments on di erent tasks, i.e., classi cation, regression, and outlier detection. We show that the choice of the strategy can have a strong in uence on the results.</p>
      </abstract>
      <kwd-group>
        <kwd>Linked Open Data</kwd>
        <kwd>Data Mining</kwd>
        <kwd>Propositionalization</kwd>
        <kwd>Feature Generation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Linked Open Data [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] has been recognized as a valuable source of background
knowledge in many data mining tasks. Augmenting a dataset with features taken
from Linked Open Data can, in many cases, improve the results of a data mining
problem at hand, while externalizing the cost of maintaining that background
knowledge [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ].
      </p>
      <p>Most data mining algorithms work with a propositional feature vector
representation of the data, i.e., each instance is represented as a vector of features
hf1; f2; :::; fni, where the features are either binary (i.e., fi 2 ftrue; f alseg),
numerical (i.e., fi 2 R), or nominal (i.e., fi 2 S, where S is a nite set of symbols).
Linked Open Data, however, comes in the form of graphs, connecting resources
with types and relations, backed by a schema or ontology.</p>
      <p>
        Thus, for accessing Linked Open Data with existing data mining tools,
transformations have to be performed, which create propositional features from the
graphs in Linked Open Data, i.e., a process called propositionalization [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ].
Usually, binary features (e.g., true if a type or relation exists, false otherwise) or
numerical features (e.g., counting the number of relations of a certain type) are
used [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. Other variants, e.g., computing the fraction of relations of a certain
type, are possible, but rarely used.
      </p>
      <p>Our hypothesis in this paper is that the strategy of creating propositional
features from Linked Open Data may have an in uence on the data mining result.
For example, promiximity-based algorithms like k-NN will behave di erently
depending on the strategy used to create numerical features, as that strategy
has a direct in uence on most distance functions.</p>
      <p>In this paper, we compare a set of di erent strategies for creating features
from types and relations in Linked Open Data. We compare those strategies
on a number of di erent datasets and across di erent tasks, i.e., classi cation,
regression, and outlier detection.</p>
      <p>The rest of this paper is structured as follows. Section 2 gives a brief overview
on related work. In section 3, we discuss a number of strategies used for the
generation of propositional features. Section 4 introduces the datasets and tasks
used for evaluation, and provides a discussion of results. We conclude with a
review of our ndings, and an outlook on future work.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>
        In the recent past, a few approaches for propositionalizing Linked Open Data
for data mining purposes have been proposed. Many of those approaches are
supervised, i.e., they let the user formulate SPARQL queries, which means that
they leave the propositionalization strategy up to the user, and a fully automatic
feature generation is not possible. Usually, the resulting features are binary, or
numerical aggregates using SPARQL COUNT constructs [
        <xref ref-type="bibr" rid="ref10 ref16 ref2 ref8 ref9">2, 8, 9, 16, 10</xref>
        ]. In [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], we
have proposed an unsupervised approach allowing for both binary features and
numerical aggregates.
      </p>
      <p>
        A similar problem is handled by Kernel functions, which compute the
distance between two data instances. They are used in kernel-based data mining and
machine learning algorithms, most commonly support vector machines (SVMs),
but can also be exploited for tasks such as clustering.. Several kernel functions
suitable for Linked Open Data have been proposed [
        <xref ref-type="bibr" rid="ref14 ref3 ref7">3, 7, 14</xref>
        ]. While Kernel
functions can be designed in a exible manner, and support vector machines are
often performing quite well on classi cation and regression tasks, they cannot
be combined with arbitrary machine learning methods, e.g., decision tree
learning.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Strategies</title>
      <p>When creating features for a resource, we take into account the relation to other
resources. We distinguish strategies that use the object of speci c relations, and
strategies that only take into account the presence of relations as such.
3.1</p>
      <sec id="sec-3-1">
        <title>Strategies for Features Derived from Speci c Relations</title>
        <p>Some relations in Linked Open Data sources play a speci c role. One
example are rdf:type relations assigning a direct type to a resource. A statement r
+64 other relations</p>
        <p>dbpedia:Industrial_rock
dbpedia:New_Wave_music
+7 more</p>
        <p>rdfs:subclassOf
rdfs:subclassOf
dbpedia-owl:genre</p>
        <p>rdfs:subclassOf
rdfs:subclassOf</p>
        <p>owl:Thing
dbpedia:Artist
dbpedia:Person
dbpedia:Artist
dbpedia:MusicArtist
rdf:type</p>
        <p>
          dbpedia:Trent_Reznor
dbpedia-owl:instrument
dbpedia:Piano
dbpedia:Guitar
+19 more
rdf:type C is typically translated into description logics as C(r), i.e., rdf:type
is treated di erently from any other predicate. For some datasets, similar
relations exist, e.g., the dcterms:subject relations in DBpedia [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] which contain
a link to the category of the original Wikipedia article a DBpedia resource is
derived from.
        </p>
        <p>For such relations, we propose three strategies:
{ Creating a binary feature indicating presence or absence of the relation's
object.
{ Creating a relative count feature indicating the relative count of the relation's
object. For a resource that has a relation to n objects, each feature value is
n1 . N
{ Creating a TF-IDF feature, whose value is n1 log jfrjC(r)gj , where N is the
total number of resources in the dataset, and jfrjC(r)gj denotes the number
of resources that have the respective relation r to C.</p>
        <p>The rationale for using relative counts is that if there are only a few relations
of a particular kind, each individual related object may be more important. For
example, for a general book which has a hundred topics, each of those topics
is less characteristic for the book than a speci c book with only a few topics.
Thus, that strategy takes into account both the existence and the importance of
a certain relation.</p>
        <p>The rationale for using TF-IDF is to further reduce the in uence of too
general features, in particular when using a distance-based mining algorithm.
Table 1 shows the features generated for the example depicted in Fig.1. It can
be observed that using TF-IDF implicitly gives a higher weight to more speci c
features, which can be important in distance-based mining algorithms (i.e., it
increases the similarity of two objects more if they share a more speci c type
than a more abstract one).
Generic relations describe how resources are related to other resources. For
example, a writer is connected to her birthplace, her alma mater, and the books
she has written. Such relations between a resource r and a resource r0 are
expressed in description logics as p(r; r0) (for an outgoing relation) or p(r0; r) (for
an incoming relation), where p can be any relation.</p>
        <p>In general, we treat incoming (rel in) and outgoing (rel out) relations. For
such generic relations, we propose four strategies:
{ Creating a binary feature for each relation.
{ Creating a count feature for each relation, specifying the number of resources
connected by this relation.
{ Creating a relative count feature for each relation, specifying the fraction of
resources connected by this relation. For a resource that has total number of
P outgoing relations, the relative count value for a relation p(r; r0) is de ned
as nPp , where np is the number of outgoing relations of type p. The feature
is de ned accordingly for incoming relations
{ Creating a TF-IDF feature for each relation, whose value is nPp log jfrj9r0:p(r;r0)gj ,
N
where N is the overall number of resources, and jfrj9r0 : p(r; r0)gj denotes
the number of resources for which the relation p(r; r0) exists. The feature is
de ned accordingly for incoming relations.</p>
        <p>The rationale of using relative counts is that resources may have multiple
types of connections to other entities, but not all of them are equally important.
For example, a person who is mainly a musician may also have written one book,
but recorded many records, so that the relations get di erent weights. In that
case, he will be more similar to other musicians than to other authors { which
is not the case if binary features are used.</p>
        <p>The rationale of using TF-IDF again is to reduce the in uence of too general
relations. For example, two persons will be more similar if both of them have
recorded records, rather than if both have a last name. The IDF factor accounts
for that weighting. Table 1 shows the features generated from the example in
Fig. 1.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Evaluation</title>
      <p>We evaluated the strategies outlined above on six di erent datasets, two for each
task of classi cation, regression, and outlier detection.
4.1</p>
      <sec id="sec-4-1">
        <title>Tasks and Datasets</title>
        <p>
          The following datasets were used in the evaluation:
{ The Auto MPG data set1, a dataset that captures di erent characteristics
of cars (such as cyclinders, transmission horsepower), and the target is to
predict the fuel consumption in Miles per Gallon (MPG) as a regression
task [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ]. Each car in the dataset was linked to the corresponding resource
in DBpedia.
{ The Cities dataset contains a list of cities and their quality of living (as
a numerical score), as captured by Mercer [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ]. The cities are mapped to
DBpedia. We use the dataset both for regression as well as for classi cation,
discretizing the target variable into high, medium, and low.
{ The Sports Tweets dataset consists of a number of tweets, with the target
class being whether the tweet is related to sports or not.2 The dataset was
mapped to DBpedia using DBpedia Spotlight [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ].
{ The DBpedia-Peel dataset is a dataset where each instance is a link between
the DBpedia and the Peel Sessions LOD datasets. Outlier detection is used
to identify links whose characteristics deviate from the majority of links,
which are then regarded to be wrong. A partial gold standard of 100 links
exists, which were manually annotated as right or wrong [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ].
{ The DBpedia-DBTropes dataset is a similar dataset with links between
DBpedia and DBTropes.
        </p>
        <p>For the classi cation and regression tasks, we use direct types (i.e., rdf:type)
and DBpedia categories (i.e., dcterms:subject), as well as all strategies for
generic relations. For the outlier detection tasks, we only use direct types and
generic relations, since categories do not exist in the other LOD sources involved.
An overview of the datasets, as well as the size of each feature set, is given in
Table 2.</p>
        <p>For classi cation tasks, we use Nave Bayes, k-Nearest Neighbors (with k=3),
and C4.5 decision tree. For regression, we use Linear Regression, M5Rules, and
k-Nearest Neighbors (with k=3). For outlier detection, we use Global Anomaly
Score (GAS, with k=25), Local Outlier Factor (LOF), and Local Outlier
Probabilities (LoOP, with k=25). We measure accuracy for classi cation tasks,
rootmean-square error (RMSE) for regression tasks, and area under the ROC curve
(AUC) for outlier detection tasks.
1 http://archive.ics.uci.edu/ml/datasets/Auto+MPG
2 https://github.com/vinaykola/twitter-topic-classifier/blob/master/
training.txt</p>
        <p>
          The evaluations are performed in RapidMiner, using the Linked Open Data
extension [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ]. For classi cation, regression, and outlier detection, we use the
implementation in RapidMiner where available, otherwise, the corresponding
implementations from the Weka3 and Anomaly Detection [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] extension in
RapidMiner were used. The RapidMiner processes and datasets used for the
evaluation can be found online.4 The strategies for creating propositional features from
Linked Open Data are implemented in the RapidMiner Linked Open Data
extension5 [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ].
4.2
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>Results</title>
        <p>For each of the three tasks we report the results for each of the feature sets,
generated using di erent propositionalization strategies. The classi cation and
regression results are calculated using strati ed 10-fold cross validation, while
for the outlier detection the evaluations were made on the partial gold standard
of 100 links for each of the datasets.6</p>
        <p>Table 3 shows the classi cation accuracy for the Cities and Sports Tweets
datasets. We can observe that the results are not consistent, but the best results
for each classi er and for each feature set are achieved using di erent
representation strategy. Only for the incoming relations feature set, the best results for the
Cities dataset for each classi er are achieved when using the Binary strategy,
while for the Sports Tweets dataset the best results are achieved when using
Count strategy. We can observe that for most of the generic relation feature sets
using TF-IDF strategy leads to poor results. That can be explained with the
fact that TF-IDF tends to give higher weights to relations that appear rarely in
the dataset, which also might be a result of erroneous data. Also, on the Cities
dataset it can be noticed that when using k-NN on the incoming relations feature
set, the di erence in the results using di erent strategies is rather high.
3 https://marketplace.rapid-i.com/UpdateServer/faces/product_details.</p>
        <p>xhtml?productId=rmx_weka
4 http://data.dws.informatik.uni-mannheim.de/propositionalization_
strategies/
5 http://dws.informatik.uni-mannheim.de/en/research/</p>
        <p>rapidminer-lod-extension
6 Note that we measure the capability of nding errors by outlier detection, not of
outlier detection as such, i.e., natural outliers may be counted as false positives.</p>
        <p>Table 4 shows the results of the regression task for the Auto MPG and
Cities datasets. For the Auto MPG dataset, for M5Rules and k-NN classi ers
the best results are achieved when using Relative Count and TF-IDF for all
feature sets, while the results for LR are mixed. For the Cities dataset we can
observe that the results are mixed for the types and categories feature set, but
for the generic relations feature sets, the best results are achieved when using
Binary representation. Also, it can be noticed that when using linear regression,
there is a drastic di erence in the results between the strategies.</p>
        <p>
          Table 5 shows the results of the outlier detection task for the
DBpediaPeel and DBpedia-DBTropes datasets. In this task we can observe much higher
di erence in performances when using di erent propositionalization strategies.
We can observe that the best results are achieved when using relative count
features. The explanation is that in this task, we look at the implicit types
of entities linked when searching for errors (e.g., a book linked to a movie of
the same name), and those types are best characterized by the distribution of
relations, as also reported in [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]. On the other hand, TF-IDF again has the
tendency to assign high weights to rare features, which may also be an e ect of
noise.
        </p>
        <p>By analyzing the results on each task, we can conclude that the chosen
propositionalization strategy has major impact on the overall results. Also, in some
cases there is a drastic performance di erences between the strategies that are
used. Therefore, in order to achieve the best performances, it is important to
choose the most suitable propositionalization strategy, which mainly depends on
the given dataset, the given data mining task, and the data mining algorithm to
be used.</p>
        <p>When looking at aggregated results, we can see that for the classi cation and
regression tasks, binary and count features work best in most cases. Furthermore,
we can observe that algorithms that rely on the concept of distance, such as
k-NN, linear regression, and most outlier detection methods, show a stronger
variation of the results across the di erent strategies than algorithms that do
not use distances (such as decision trees).
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Conclusion and Outlook</title>
      <p>Until now, the problem of nding the most suitable propositionalization strategy
for creating features from Linked Open Data has not been tackled, as previous
researches focused only on binary, or in some cases numerical representation of
features. In this paper, we have compared di erent strategies for creating
propositional features from types and relations in Linked Open Data. We have
implemented three propositionalization strategies for speci c relations, like rdf:type
and dcterms:subject, and four strategies for generic relations. We conducted
experiments on six di erent datasets, across three di erent data mining tasks,
i.e. classi cation, regression and outlier detection. The experiments show that
the chosen propositionalization strategy might have a major impact on the
overall results. However, it is di cult to come up with a general recommendation for
a strategy, as it depends on the given data mining task, the given dataset, and
the data mining algorithm to be used.</p>
      <p>For future work, additional experiments can be performed on more feature
sets. For example, a feature sets of quali ed incoming and outgoing relation
can be generated, where quali ed relations attributes beside the type of the
relation take the type of the related resource into account. The evaluation can
be extended on more datasets, using and combining attributes from multiple
Linked Open Data sources. Also, it may be interesting to examine the impact
of the propositionalization strategies on even more data mining tasks, such as
clustering and recommender systems.</p>
      <p>So far, we have considered only statistical measures for feature representation
without exploiting the semantics of the data. More sophisticated strategies that
combine statistical measures with the semantics of the data can be developed.
For example, we can represent the connection between di erent resources in the
graph by using some of the standard properties of the graph, such as the depth of
the hierarchy level of the resources, the fan-in and fan-out values of the resources,
etc.</p>
      <p>
        The problem of propositionalization and feature weighting has been
extensively studied in the area of text categorization [
        <xref ref-type="bibr" rid="ref12 ref4">4, 12</xref>
        ]. Many approaches have
been proposed, which can be adapted and applied on Linked Open Data datasets.
For example, adapting supervised weighting approaches, such as [
        <xref ref-type="bibr" rid="ref25 ref5">5, 25</xref>
        ], might
resolve the problem with the erroneous data when using TF-IDF strategy.
      </p>
      <p>
        Furthermore, some of the statistical measures can be used as feature
selection metrics when extracting data mining features from Linked Open Data. For
example, considering the semantics of the resources, the IDF value can be
computed upfront for all feature candidates, and can be used for selecting the most
valuable features before the costly feature generation. Thus, intertwining
propositionalization and feature selection strategies for Linked Open Data [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] will be
an interesting line of future work.
      </p>
      <p>In summary, this paper has revealed some insights in a problem largely
overlooked so far, i.e., choosing di erent propositionalization for mining Linked Open
Data. We hope that these insights help researchers and practicioners in designing
methods and systems for mining Linked Open Data.</p>
      <sec id="sec-5-1">
        <title>Acknowledgements</title>
        <p>The work presented in this paper has been partly funded by the German
Research Foundation (DFG) under grant number PA 2373/1-1 (Mine@LOD).</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <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="ref2">
        <mixed-citation>
          2. Weiwei Cheng, Gjergji Kasneci, Thore Graepel, David Stern,
          <string-name>
            <given-names>and Ralf</given-names>
            <surname>Herbrich</surname>
          </string-name>
          .
          <article-title>Automated feature generation from structured knowledge</article-title>
          .
          <source>In 20th ACM Conference on Information and Knowledge Management (CIKM</source>
          <year>2011</year>
          ),
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Gerben</given-names>
            <surname>Klaas Dirk de Vries and Steven de Rooij</surname>
          </string-name>
          .
          <article-title>A fast and simple graph kernel for rdf</article-title>
          .
          <source>In Proceedings of the Second International Workshop on Knowledge Discovery and Data Mining Meets Linked Open Data</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Zhi-Hong</surname>
            <given-names>Deng</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shi-Wei</surname>
            <given-names>Tang</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dong-Qing</surname>
            <given-names>Yang</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ming Zhang</surname>
          </string-name>
          Li-Yu
          <string-name>
            <surname>Li</surname>
            , and
            <given-names>KunQing</given-names>
          </string-name>
          <string-name>
            <surname>Xie</surname>
          </string-name>
          .
          <article-title>A comparative study on feature weight in text categorization</article-title>
          .
          <source>In Advanced Web Technologies and Applications</source>
          , pages
          <volume>588</volume>
          {
          <fpage>597</fpage>
          . Springer,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>Jyoti</given-names>
            <surname>Gautam</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ela</given-names>
            <surname>Kumar</surname>
          </string-name>
          .
          <article-title>An integrated and improved approach to terms weighting in text classi cation</article-title>
          .
          <source>IJCSI International Journal of Computer Science Issues</source>
          ,
          <volume>10</volume>
          (
          <issue>1</issue>
          ),
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <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="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Yi</given-names>
            <surname>Huang</surname>
          </string-name>
          , Maximilian Nickel, Volker Tresp, and
          <string-name>
            <surname>Hans-Peter Kriegel</surname>
          </string-name>
          .
          <article-title>A scalable kernel approach to learning in semantic graphs with applications to linked data</article-title>
          .
          <source>In 1st Workshop on Mining the Future Internet</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>Venkata</given-names>
            <surname>Narasimha Pavan Kappara</surname>
          </string-name>
          , Ryutaro Ichise, and
          <string-name>
            <given-names>O.P.</given-names>
            <surname>Vyas. Liddm</surname>
          </string-name>
          :
          <article-title>A data mining system for linked data</article-title>
          .
          <source>In Workshop on Linked Data on the Web (LDOW2011)</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Mansoor</given-names>
            <surname>Ahmed</surname>
          </string-name>
          <string-name>
            <surname>Khan</surname>
          </string-name>
          , Gunnar Aastrand Grimnes, and
          <string-name>
            <given-names>Andreas</given-names>
            <surname>Dengel</surname>
          </string-name>
          .
          <article-title>Two pre-processing operators for improved learning from semanticweb data</article-title>
          .
          <source>In First RapidMiner Community Meeting And Conference (RCOMM</source>
          <year>2010</year>
          ),
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Christoph</surname>
            <given-names>Kiefer</given-names>
          </string-name>
          , Abraham Bernstein, and
          <string-name>
            <given-names>Andre</given-names>
            <surname>Locher</surname>
          </string-name>
          .
          <article-title>Adding data mining support to sparql via statistical relational learning methods</article-title>
          .
          <source>In Proceedings of the 5th European Semantic Web Conference on The Semantic Web: Research and Applications</source>
          , ESWC'
          <volume>08</volume>
          , pages
          <fpage>478</fpage>
          {
          <fpage>492</fpage>
          , Berlin, Heidelberg,
          <year>2008</year>
          . Springer-Verlag.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Stefan</surname>
            <given-names>Kramer</given-names>
          </string-name>
          , Nada Lavrac, and
          <string-name>
            <given-names>Peter</given-names>
            <surname>Flach</surname>
          </string-name>
          .
          <article-title>Propositionalization approaches to relational data mining</article-title>
          . In Saso Dzeroski and Nada Lavrac, editors,
          <source>Relational Data Mining</source>
          , pages
          <volume>262</volume>
          {
          <fpage>291</fpage>
          . Springer Berlin Heidelberg,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Man</surname>
            <given-names>Lan</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chew-Lim</surname>
            <given-names>Tan</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hwee-Boon Low</surname>
          </string-name>
          , and
          <string-name>
            <surname>Sam-Yuan Sung</surname>
          </string-name>
          .
          <article-title>A comprehensive comparative study on term weighting schemes for text categorization with support vector machines</article-title>
          .
          <source>In Special Interest Tracks and Posters of the 14th International Conference on World Wide Web, WWW '05</source>
          , pages
          <fpage>1032</fpage>
          {
          <fpage>1033</fpage>
          , New York, NY, USA,
          <year>2005</year>
          . ACM.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <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="ref14">
        <mixed-citation>
          14. Uta Losch, Stephan Bloehdorn, and
          <string-name>
            <given-names>Achim</given-names>
            <surname>Rettinger</surname>
          </string-name>
          .
          <article-title>Graph kernels for rdf data</article-title>
          .
          <source>In The Semantic Web: Research and Applications</source>
          , pages
          <volume>134</volume>
          {
          <fpage>148</fpage>
          . Springer,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Pablo</surname>
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Mendes</surname>
            , Max Jakob,
            <given-names>Andres</given-names>
          </string-name>
          <string-name>
            <surname>Garc</surname>
            a-Silva, and
            <given-names>Christian</given-names>
          </string-name>
          <string-name>
            <surname>Bizer</surname>
          </string-name>
          .
          <article-title>Dbpedia spotlight: Shedding light on the web of documents</article-title>
          .
          <source>In Proceedings of the 7th International Conference on Semantic Systems (I-Semantics)</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <given-names>Jindrich</given-names>
            <surname>Mynarz</surname>
          </string-name>
          and
          <string-name>
            <given-names>Vojtech</given-names>
            <surname>Svatek</surname>
          </string-name>
          .
          <article-title>Towards a benchmark for lod-enhanced knowledge discovery from structured data</article-title>
          .
          <source>In Proceedings of the Second International Workshop on Knowledge Discovery and Data Mining Meets Linked Open Data</source>
          , pages
          <volume>41</volume>
          {
          <fpage>48</fpage>
          .
          <string-name>
            <surname>CEUR-WS</surname>
          </string-name>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Generating possible interpretations for statistics from linked open data</article-title>
          .
          <source>In 9th Extended Semantic Web Conference (ESWC)</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Exploiting linked open data as background knowledge in data mining</article-title>
          .
          <source>In Workshop on Data Mining on Linked Open Data</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Identifying wrong links between datasets by multi-dimensional outlier detection</article-title>
          .
          <source>In Workshop on Debugging Ontologies and Ontology Mappings (WoDOOM)</source>
          ,
          <year>2014</year>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <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 International Semantic Web Conference</source>
          , pages
          <volume>510</volume>
          {
          <fpage>525</fpage>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <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="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Heiko</surname>
            <given-names>Paulheim</given-names>
          </string-name>
          , Petar Ristoski, Evgeny Mitichkin, and
          <string-name>
            <given-names>Christian</given-names>
            <surname>Bizer</surname>
          </string-name>
          .
          <article-title>Data mining with background knowledge from the web</article-title>
          . In RapidMiner World,
          <year>2014</year>
          . To appear.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>J. Ross Quinlan.</surname>
          </string-name>
          <article-title>Combining instance-based and model-based learning</article-title>
          .
          <source>In ICML, page 236</source>
          ,
          <year>1993</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <given-names>Petar</given-names>
            <surname>Ristoski</surname>
          </string-name>
          and
          <string-name>
            <given-names>Heiko</given-names>
            <surname>Paulheim</surname>
          </string-name>
          .
          <article-title>Feature selection in hierarchical feature spaces</article-title>
          .
          <source>In Discovery Science</source>
          ,
          <year>2014</year>
          . To appear.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <given-names>Pascal</given-names>
            <surname>Soucy</surname>
          </string-name>
          and
          <string-name>
            <given-names>Guy W.</given-names>
            <surname>Mineau</surname>
          </string-name>
          .
          <article-title>Beyond t df weighting for text categorization in the vector space model</article-title>
          .
          <source>In Proceedings of the 19th International Joint Conference on Arti cial Intelligence</source>
          ,
          <source>IJCAI'05</source>
          , pages
          <fpage>1130</fpage>
          {
          <fpage>1135</fpage>
          , San Francisco, CA, USA,
          <year>2005</year>
          . Morgan Kaufmann Publishers Inc.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>