<!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>Benchmarking Classifier Performance with Sparse Measurements</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jan Motl</string-name>
          <email>jan.motl@fit.cvut.cz</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Czech Technical University</institution>
          ,
          <addr-line>Prague</addr-line>
          ,
          <country country="CZ">Czech Republic</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2015</year>
      </pub-date>
      <fpage>172</fpage>
      <lpage>178</lpage>
      <abstract>
        <p>The presented paper describes a methodology, how to perform benchmarking, when classifier performance measurements are sparse. The described methodology is based on missing value imputation and was demonstrated to work, even when 80% of measurements are missing, for example because of unavailable algorithm implementations or unavailable datasets. The methodology was then applied on 29 relational classifiers &amp; propositional tools and 15 datasets, making it the biggest metaanalysis in relational classification up to date. You can't improve what you can't measure. However, in some fields the comparison of different approaches is demanding. For example, in the field of relational classifiers, essentially each classifier uses different syntax and requires data in different format, making the comparison of relational classifiers difficult. Despite these obstacles, each author of a new relational classifier attempts to prove that his algorithm is better than some previous algorithm and takes the burden of comparing his algorithm to a small set of algorithms on a limited set of datasets. But how can we compare the algorithms, if they are not evaluated on the same set of datasets?</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1.1</p>
    </sec>
    <sec id="sec-2">
      <title>Literature Review</title>
      <p>
        The biggest meta-analysis of relational classifiers (to
our best knowledge) is “Is mutagenesis still
challenging?” [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], where 19 algorithms are examined. While this
analysis is highly interesting, it limits itself on comparison
of the classifiers on a single dataset.
      </p>
      <p>
        The biggest analysis in the regard of used datasets is
from Dhafer [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], where a single algorithm is tested on
10 datasets and 20 tasks (some datasets have multiple
targets).
      </p>
      <p>
        If we are interested into comparison of multiple
algorithms on multiple datasets, the counts are comparably
smaller. For example, in the article from Bina [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] 6
algorithms on 5 datasets are examined.
      </p>
      <p>This meta-analysis presents comparison of 29
algorithms on 15 datasets.</p>
    </sec>
    <sec id="sec-3">
      <title>Baseline</title>
      <p>Traditionally, a set of algorithms is evaluated on a set of
datasets. And then the algorithms are ordered with one (or</p>
    </sec>
    <sec id="sec-4">
      <title>Algo. 1</title>
    </sec>
    <sec id="sec-5">
      <title>Algo. 2</title>
    </sec>
    <sec id="sec-6">
      <title>Algo. 3</title>
    </sec>
    <sec id="sec-7">
      <title>Dataset A</title>
    </sec>
    <sec id="sec-8">
      <title>Dataset B</title>
    </sec>
    <sec id="sec-9">
      <title>Dataset C</title>
    </sec>
    <sec id="sec-10">
      <title>Average accuracy</title>
    </sec>
    <sec id="sec-11">
      <title>Average ranking # Wins</title>
    </sec>
    <sec id="sec-12">
      <title>Dataset A</title>
    </sec>
    <sec id="sec-13">
      <title>Dataset B</title>
    </sec>
    <sec id="sec-14">
      <title>Dataset C</title>
    </sec>
    <sec id="sec-15">
      <title>Average accuracy Average ranking # Wins</title>
      <p>0.9
0.9
2
0
multiple) of the following methods:
• Average measure
• Average ranking
• Count of wins</p>
      <p>
        The different ordering methods [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] are illustrated on an
example in Table 1. In this hypothetical scenario 3
algorithms are evaluated on 3 datasets with accuracy. Based
on each ordering method, the first algorithm is the best
and the third algorithm is the worst.
      </p>
      <p>But what if not all the measures are available? With the
same data, but some missing, we can get different results
(Table 2). Based on average accuracy the third algorithm
is the best. But we are getting this result only because the
third algorithm was evaluated on the datasets with high
average accuracy (i.e. easy datasets), while the rest of the
algorithms were evaluated on datasets with lower average
accuracy (i.e. hard datasets).</p>
      <p>Average ranking and count of wins are more robust
to missing values. However, neither of them is
infallible. Imagine that someone publishes an algorithm and its
weaker version and measures the accuracy not only on the
common datasets but also on thousands of randomly
generated datasets that are never ever going to be classified by
any other algorithm. Then the stronger version of the
classifier is going to score at least a thousand wins and place
on the first position on the leaderboard regardless of the
score on the few common datasets.</p>
      <p>If all the algorithms were evaluated on at least one
common dataset, we could also order the algorithms just based
on the common datasets. But if there isn’t any dataset on
which all the algorithms are evaluated, we have to come
out with another solution.</p>
      <p>The solution is to perform missing value imputation and
convert the problem to the problem we can already solve.
end</p>
      <sec id="sec-15-1">
        <title>Where:</title>
        <p>2</p>
        <sec id="sec-15-1-1">
          <title>Imputation</title>
          <p>The proposed missing value imputation iteratively
approximates:
acc ≈ a−→lg ∗ d−→at
(1)
with following pseudocode:
a c c = p i v o t ( i n p u t , @mean )
a l g = rowmean ( a c c )
d a t = o n e s ( 1 , n c o l ( a c c ) )
f o r i = 1 : n i t
d a t = d a t + c o l m e a n ( a c c − a l g ∗ d a t )
a l g = a l g + rowmean ( a c c − a l g ∗ d a t )
input: Matrix with three columns: {algorithm name,
dataset name, measured accuracy}.
acc: Matrix with accuracies, where algorithms are in rows
and datasets in columns.
alg: Column vector with average accuracy of the
algorithms over all the datasets. Initialized to average
algorithm accuracy.
dat: Row vector with relative difficulty of the datasets.</p>
          <p>Initialized to a vector of ones.
nit: Parameter describing the count of iterations. 10
iterations are commonly sufficient.
2.1</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-16">
      <title>Evaluation on a Dense Dataset</title>
      <p>To assess the ability of the proposed imputation to
properly order relational classifiers, a test on a related task was
performed. Arguably the closest task to relational
classification, which is well benchmarkable, is propositional
classification - the most common type of classification, where
a single table is classified.</p>
      <p>
        Conveniently, accuracies of 179 propositional
classifiers on 121 datasets were published in a recent study by
Fernandez-Delgado [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. Since not all the examined
algorithms always finished successfully, e.g. due to colinearity
of data, a dense submatrix of 179 algorithms on 14 datasets
1
0.8
was extracted. The dense submatrix was then randomly
sampled with a variable count of measurements. The
missing values were then imputed. The resulting learning
curve, depicted in figure 1, suggests, that once 20% of all
combinations algorithm × dataset are used, a fairly good
estimate of the actual ordering can be estimated.
      </p>
      <p>
        A comparison of the proposed imputation method to
other imputation methods in regard to Root Mean Square
Error (RMSE) is in figure 2. The reference methods are
from RapidMiner and their parameters were optimized
with grid search.
According to the No-Free-Lunch theorem [
        <xref ref-type="bibr" rid="ref41">41</xref>
        ], the best
classifier will not be the same for all the data sets. Hence
we shouldn’t even attempt to measure and average
classifier’s performance over a wide set of datasets. But merely
describe strengths and weaknesses of different classifiers.
In this respect, the selected imputation method fails
because it is not able to model interactions between datasets
and algorithms. Nevertheless, in the practice, some
classifiers appear to be systematically better then other [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. If all
we want is to order classifiers based on their expected
accuracy on a set of datasets, the absence of ability to model
interactions is irrelevant.
      </p>
      <p>
        Another property of the used methodology is that it
doesn’t permit mixture of measures. That is unfortunate
since some articles [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] report only accuracy, while other
articles [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] report only precision, recall and F-measure.
      </p>
      <p>
        A special attention is necessary when we are comparing
results from several authors, because not only the
evaluation methodology can differ (e.g. 10-fold cross-validation
vs. single hold-out sample), but also datasets can differ
despite the common name. For example, the canonical
version of East-West dataset (further abbreviated as Trains)
contains 10 instances [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ]. However, some authors prefer
an extended version of the dataset with 20 instances [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ].
Nevertheless, data quality is the pitfall common to all
analyses. To alleviate the problem with different datasets in the
future, a new (and the first) relational repository was based
at relational.fit.cvut.cz. Further discussion about
the collected data is provided in the next section.
      </p>
      <p>The final limitation of the method is that it doesn’t
provide trustworthy confidence intervals. The first reason is
that measures for the same algorithm and dataset are
averaged and treated as a single measure. The second reason
is that the algorithm performs missing value imputation,
violating the assumption of sample independence.</p>
      <p>A list summarizing the advantages and constrains of the
proposed method follows:</p>
    </sec>
    <sec id="sec-17">
      <title>Advantages:</title>
      <p>Disadvantages:
• Permits benchmarking with sparse measures.
• Respects that some datasets are tougher than others.
• Allows conflicting measurements (for example, by
different authors).
• Neglects interactions between datasets and
algorithms.
• Requires one common measure (e.g. we cannot mix
accuracy and F-measure).
• Requires comparably prepared datasets (e.g. using
the same instance count).</p>
      <p>• Doesn’t provide confidence intervals.
3</p>
      <sec id="sec-17-1">
        <title>Classification of Relational Data</title>
        <p>The proposed methodology how to benchmark with sparse
measurements is applied on relational classifiers,
including propositional tools. In the following paragraphs
description of the collected measures, benchmarked
algorithms and datasets follow. The collected data can be
downloaded from motl.us\benchmarking.</p>
        <sec id="sec-17-1-1">
          <title>Algorithm</title>
          <p>
            [
            <xref ref-type="bibr" rid="ref35">35</xref>
            ]
[
            <xref ref-type="bibr" rid="ref9">9</xref>
            ]
[
            <xref ref-type="bibr" rid="ref42">42</xref>
            ]
[
            <xref ref-type="bibr" rid="ref37">37</xref>
            ]
[
            <xref ref-type="bibr" rid="ref23">23</xref>
            ]
[
            <xref ref-type="bibr" rid="ref40">40</xref>
            ]
[
            <xref ref-type="bibr" rid="ref26">26</xref>
            ]
[
            <xref ref-type="bibr" rid="ref37">37</xref>
            ]
[
            <xref ref-type="bibr" rid="ref23">23</xref>
            ]
[
            <xref ref-type="bibr" rid="ref29">29</xref>
            ]
[
            <xref ref-type="bibr" rid="ref36">36</xref>
            ]
[
            <xref ref-type="bibr" rid="ref25">25</xref>
            ]
[
            <xref ref-type="bibr" rid="ref37">37</xref>
            ]
[
            <xref ref-type="bibr" rid="ref11">11</xref>
            ]
[
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]
[
            <xref ref-type="bibr" rid="ref43">43</xref>
            ]
[
            <xref ref-type="bibr" rid="ref22">22</xref>
            ]
[
            <xref ref-type="bibr" rid="ref37">37</xref>
            ]
[
            <xref ref-type="bibr" rid="ref17">17</xref>
            ]
[
            <xref ref-type="bibr" rid="ref28">28</xref>
            ]
[
            <xref ref-type="bibr" rid="ref18">18</xref>
            ]
[
            <xref ref-type="bibr" rid="ref16">16</xref>
            ]
[
            <xref ref-type="bibr" rid="ref18">18</xref>
            ]
[
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]
[
            <xref ref-type="bibr" rid="ref2">2</xref>
            ]
[
            <xref ref-type="bibr" rid="ref37">37</xref>
            ]
[
            <xref ref-type="bibr" rid="ref20">20</xref>
            ]
[
            <xref ref-type="bibr" rid="ref20">20</xref>
            ]
[
            <xref ref-type="bibr" rid="ref35">35</xref>
            ]
Since almost all relational classifiers in the literature are
evaluated on classification accuracy (with exceptions like
CLAMF [
            <xref ref-type="bibr" rid="ref10">10</xref>
            ], ACORA [
            <xref ref-type="bibr" rid="ref34">34</xref>
            ] or SAYU [
            <xref ref-type="bibr" rid="ref4">4</xref>
            ], which are
evaluated in the literature only with measures based on
precision &amp; recall) but only a few were evaluated with a
different measure (like precision &amp; recall, F-measure, AUC
or AUC-PR), the meta-analysis limits itself to
classification accuracy. The methods how to measure accuracy may
differ, but only testing accuracies (not training) were
collected.
          </p>
          <p>Other interesting measures, like runtime or memory
consumption, were not evaluated, as they are rarely
published. And even if they were published, they would be
hardly comparable as the measurements are platform
dependent.
The selection of relational classifiers and
propositionalization tools was restricted to algorithms, which:
• Were published in conference or journal paper.
• Were benchmarked on at least four datasets.</p>
          <p>• Were evaluated on classification accuracy.</p>
          <p>The list of compared algorithms is in table 3.
3.3</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-18">
      <title>Dataset Selection</title>
      <p>Datasets were selected based on the following criteria:
• The dataset has a defined classification target.
• The dataset consists of at least two tables.
• The dataset is used by at least four algorithms.</p>
      <p>The used relational datasets are listed in table 4.
4</p>
      <sec id="sec-18-1">
        <title>Results</title>
        <p>Box plot in Figure 3 depicts estimated average
classification accuracies of 29 algorithms on 15 datasets (18 tasks).
The input data consists of 26% of all combinations
algorithm × dataset, making the estimates solid (recall
figure 1). The accuracies were estimated with 1000 bootstrap
samples. Whiskers depict 1.5 IQR.
#Instances
Summary of figure 3 based on algorithm type is in figure 4.
Interestingly, kernel and multi-view approaches are
averagely the most accurate algorithms. But some
propositionalization algorithms, namely Wordification, Lynx-RSM
and RPT (Relational Probabilistic Tree) beat them.
Nevertheless, note that propositionalization algorithms are
overrepresented in the meta-analysis, making it more likely
that some of them place at extreme positions.</p>
        <p>Also note, that performance of algorithms is influenced
by their setting. While algorithms in figure 3 are ordered
based on the average accuracy per combination of
algorithm × dataset, algorithms in figure 5 are ordered based</p>
        <sec id="sec-18-1-1">
          <title>Ordering</title>
          <p>TILDE &lt; FORF-NA &lt; Graph-NB &lt; RelF &lt; Poly &lt; SDF
MRNBC &lt; TILDE &lt; E-NB &lt; HNBC &lt; PIC
TILDE &lt; RELLAGS &lt; CrossMine &lt; MVC-IM
FOIL &lt; TILDE &lt; CrossMine &lt; RELLAGS &lt; MVC</p>
          <p>Comparison of approaches
Multi−View</p>
          <p>Kernel
Propositionalization</p>
          <p>DecisionTree
Probabilistic</p>
          <p>ILP
NeuralNetwork
0.7
0.75 0.8 0.85
Classification accuracy
0.9
on the maximal known accuracy per combination of
algorithm × dataset. Notably, with the right setting, RSD
improves its ranking by 5 positions.</p>
          <p>
            Finally, it is trusted that each individual author
measured accuracy correctly. For example, in the article
from 2014 [
            <xref ref-type="bibr" rid="ref24">24</xref>
            ] authors of Wordification applied
crossvalidation only on the propositional classifiers, leaving
discretization and propositionalization out of the
crossvalidation. This design can lead to overly optimistic
estimates of the accuracy. In the follow up article
from 2015 [
            <xref ref-type="bibr" rid="ref35">35</xref>
            ] the authors of Wordification are
already applying cross-validating on the whole process flow.
Wordification accuracies used in this article are
exclusively from [
            <xref ref-type="bibr" rid="ref35">35</xref>
            ].
5.1
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-19">
      <title>Fairness of Comparison</title>
      <p>
        The comparison solely based on the classification
accuracy can be unfair. For example, CLAMF∗ [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] and
CoMoVi∗ [
        <xref ref-type="bibr" rid="ref32">32</xref>
        ] are designed to work with temporal datasets.
Hence in Financial dataset they estimate probability of
a loan default only from the data before the time of
a loan application, while classifiers designed for the
statical datasets also use data at and after the time of the loan
application. All classifiers used in the meta-analysis treat
all the datasets as if they were statical.
      </p>
      <p>Validation of temporal datasets can be furthermore
complicated by repeated target events. For example, a
customer may apply for a loan many times. And now there are
two perfectly plausible goals - we may want to calculate
probability of default of a current customer with history of
∗The algorithm is not included in the meta-analysis because it’s
accuracy wasn’t measured on enough datasets.</p>
      <sec id="sec-19-1">
        <title>Spearman Correlation</title>
        <p>
          [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]
[
          <xref ref-type="bibr" rid="ref37">37</xref>
          ]
[
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]
[
          <xref ref-type="bibr" rid="ref31">31</xref>
          ]
loans or probability of default of a new customer.
Generally, the second task is tougher because one of the best
predictors of customer’s behavior is the customer’s past
behavior. Nevertheless, all datasets in the meta-analysis
have exactly one target value per classified object
(including Financial dataset). Note that difference between
within/across classification in IMDb and MovieLens datasets
is another issue [
          <xref ref-type="bibr" rid="ref33">33</xref>
          ].
        </p>
        <p>
          Also the goals of modeling can differ. For example
Markov Logic Network∗ in [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] is evaluated as
generative model, so accuracies reported are over all predicates,
not just the target one. And accuracies can vary
substantially with respect to the chosen target predicate. All the
algorithms in the meta-analysis are evaluated in a
discriminative setting.
        </p>
        <p>
          Additionally, not all classifiers are designed to perform
well on a wide spectrum of datasets. Indeed, there are
algorithms like MOLFEA [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] that are designed to work
only on a narrow subset of datasets. A possible
specialization of the algorithms in the meta-analysis is not taken in
the consideration.
        </p>
        <p>
          At last different authors may have different ethos.
Algorithms that were evaluated only by the algorithm authors
(to our best knowledge) were marked with a star in table 3.
And many algorithms that place at the top of the ranking
are stared algorithms. However, this trend can also be
explained with following hypotheses:
• Recent algorithms tend to be better than the old
algorithms. And recent algorithms (like
Wordification [
          <xref ref-type="bibr" rid="ref35">35</xref>
          ]) did not have enough time to accumulate
references.
• New algorithms tend to look better in comparison to
mediocre algorithms than in comparison to the best
algorithm in the field. Hence authors prefer to
compare their algorithms against mediocre algorithms.
• Third-party evaluators do not have the knowledge and
resources to find the best algorithm setting. Hence
popular algorithms have, on average, low accuracy.
This problem is partially mitigated by considering
only the best reported accuracies in figure 5.
        </p>
        <p>Overall, comparison of measurements from several
sources is not a simple task at all.</p>
        <p>Comparison of relational classifiers
Based on the performed analysis, Wordification,
Lynx−RSM and Relational Probabilistic Tree on
average outperform other 26 algorithms for relational
classifications. Other promising categories of relational
classifiers are multi-view and kernel based approaches.</p>
      </sec>
    </sec>
    <sec id="sec-20">
      <title>Acknowledgement</title>
      <p>The research reported in this paper has been supported by
the Czech Science Foundation (GACˇ R) grant 13-17187S.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Berka</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          : Workshop notes on Discovery Challenge PKDD'
          <volume>99</volume>
          ,
          <year>1999</year>
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Bina</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schulte</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Crawford</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qian</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xiong</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Simple decision forests for multi-relational classification</article-title>
          .
          <source>Decision Support Systems</source>
          <volume>54</volume>
          (
          <issue>3</issue>
          )
          <year>2013</year>
          ,
          <fpage>1269</fpage>
          -
          <lpage>1279</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Coursac</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duteil</surname>
            ,
            <given-names>N.: PKDD 2001</given-names>
          </string-name>
          <string-name>
            <surname>Discovery Challenge - Medical Domain</surname>
          </string-name>
          ,
          <year>2001</year>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Davis</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burnside</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Page</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>View learning extended: inventing new tables for statistical relational learning</article-title>
          . ICML Workshop on Open Problems in Statistical Relational Learning,
          <year>2006</year>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Debnath</surname>
            ,
            <given-names>A. K.</given-names>
          </string-name>
          , Lopez de Compadre,
          <string-name>
            <given-names>R. L.</given-names>
            ,
            <surname>Debnath</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Shusterman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. J.</given-names>
            ,
            <surname>Hansch</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          :
          <article-title>Structure-activity relationship of mutagenic aromatic and heteroaromatic nitro compounds. Correlation with molecular orbital energies and hydrophobicity</article-title>
          .
          <source>Journal of Medicinal Chemistry</source>
          <volume>34</volume>
          (
          <issue>2</issue>
          ) (
          <year>1991</year>
          ),
          <fpage>786</fpage>
          -
          <lpage>797</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Demšar</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Statistical comparisons of classifiers over multiple data sets</article-title>
          .
          <source>The Journal of Machine Learning Research</source>
          <volume>7</volume>
          (
          <year>2006</year>
          ),
          <fpage>1</fpage>
          -
          <lpage>30</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Dietterich</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Solving the multiple instance problem with axis-parallel rectangles</article-title>
          .
          <source>Artificial Intelligence89(1-2)</source>
          (
          <year>1997</year>
          ),
          <fpage>31</fpage>
          -
          <lpage>71</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Fernández-Delgado</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cernadas</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barro</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Amorim</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Do we need hundreds of classifiers to solve real world classification problems?</article-title>
          <source>Journal of Machine Learning Research</source>
          <volume>15</volume>
          (
          <year>2014</year>
          ),
          <fpage>3133</fpage>
          -
          <lpage>3181</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>França</surname>
            ,
            <given-names>M. V. M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zaverucha</surname>
          </string-name>
          , G.,
          <string-name>
            <surname>D'Avila Garcez</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Fast relational learning using bottom clause propositionalization with artificial neural networks</article-title>
          .
          <source>Machine Learning 94(1)</source>
          (
          <year>2014</year>
          ),
          <fpage>81</fpage>
          -
          <lpage>104</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Frank</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moser</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ester</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>A method for multirelational classification using single and multi-feature aggregation functions</article-title>
          .
          <source>Lecture Notes in Computer Science</source>
          <volume>4702</volume>
          (
          <year>2007</year>
          ),
          <fpage>430</fpage>
          -
          <lpage>437</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Viktor</surname>
            ,
            <given-names>H. L.</given-names>
          </string-name>
          :
          <article-title>Mining relational databases with multi-view learning</article-title>
          .
          <source>Proceedings of the 4th International Workshop on Multi-Relational Mining - MRDM'05</source>
          ,
          <year>2005</year>
          ,
          <fpage>15</fpage>
          -
          <lpage>24</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Viktor</surname>
            ,
            <given-names>H. L.</given-names>
          </string-name>
          :
          <article-title>Learning from skewed class multi-relational databases</article-title>
          .
          <source>Fundamenta Informaticae</source>
          <volume>89</volume>
          (
          <issue>1</issue>
          ) (
          <year>2008</year>
          ),
          <fpage>69</fpage>
          -
          <lpage>94</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Helma</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kramer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>De Raedt</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>The molecular feature miner MOLFEA</article-title>
          .
          <source>In: Proceedings of the Beilstein Workshop</source>
          <year>2002</year>
          : Molecular Informatics: Confronting Complexity; Beilstein Institut,
          <year>2002</year>
          ,
          <fpage>1</fpage>
          -
          <lpage>16</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Khosravi</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schulte</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Learning compact Markov logic networks with decision trees</article-title>
          .
          <source>Machine Learning 89(3)</source>
          (
          <year>2012</year>
          ),
          <fpage>257</fpage>
          -
          <lpage>277</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>King</surname>
            ,
            <given-names>R. D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sternberg</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Srinivasan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Relating chemical activity to structure: an examination of ILP successes</article-title>
          .
          <source>New Generation Computing</source>
          <volume>13</volume>
          (
          <issue>3-4</issue>
          ) (
          <year>1995</year>
          ),
          <fpage>411</fpage>
          -
          <lpage>433</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Knobbe</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>De Haas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Siebes</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          :
          <article-title>Propositionalisation and aggregates</article-title>
          .
          <source>Lecture Notes in Computer Science</source>
          <volume>2168</volume>
          (
          <year>2001</year>
          ),
          <fpage>277</fpage>
          -
          <lpage>288</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Krogel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          -A.:
          <article-title>On propositionalization for knowledge discovery in relational databases</article-title>
          .
          <source>PhD Thesis</source>
          ,
          <string-name>
            <surname>Otto-vonGuericke-Universität</surname>
            <given-names>Magdeburg</given-names>
          </string-name>
          ,
          <year>2005</year>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Krogel</surname>
            ,
            <given-names>M. -A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rawles</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Železný</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Flach</surname>
            ,
            <given-names>P. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lavracˇ</surname>
          </string-name>
          , N.,
          <string-name>
            <surname>Wrobel</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Comparative evaluation of approaches to propositionalization</article-title>
          .
          <source>In: Proceedings of the 13th International Conference on Inductive Logic Programming</source>
          , volume
          <volume>2835</volume>
          ,
          <fpage>194</fpage>
          -
          <lpage>217</lpage>
          ,
          <year>2003</year>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Krogel</surname>
            ,
            <given-names>M. -A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wrobel</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Facets of aggregation approaches to propositionalization</article-title>
          .
          <source>In: Inductive Logic Programming: 13th International Conference</source>
          ,
          <volume>30</volume>
          -
          <fpage>39</fpage>
          , Springer, Berlin,
          <year>2003</year>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Kuželka</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Fast construction of relational features for machine learning</article-title>
          .
          <source>PhD Thesis</source>
          , Czech Technical University,
          <year>2013</year>
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Lahbib</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Boullé</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Laurent</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Itemset-based variable construction in multi-relational supervised learning</article-title>
          .
          <source>Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)</source>
          , 7842 LNAI:
          <fpage>130</fpage>
          -
          <lpage>150</lpage>
          ,
          <year>2013</year>
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Landwehr</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          :
          <article-title>Integrating naive bayes and FOIL</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>8</volume>
          (
          <year>2007</year>
          ),
          <fpage>481</fpage>
          -
          <lpage>507</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <surname>Landwehr</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Passerini</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>De Raedt</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Frasconi</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          : kFOIL:
          <article-title>Learning simple relational kernels</article-title>
          .
          <source>Aaai</source>
          <volume>6</volume>
          (
          <year>2006</year>
          ),
          <fpage>389</fpage>
          -
          <lpage>394</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <surname>Lavracˇ</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perovšek</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vavpeticˇ</surname>
          </string-name>
          , A.:
          <article-title>Propositionalization online</article-title>
          .
          <source>In: ECML PKDD</source>
          <year>2014</year>
          ,
          <volume>456</volume>
          -
          <fpage>459</fpage>
          , SpringerVerlag,
          <year>2014</year>
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <surname>Leiva</surname>
            ,
            <given-names>H. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Atramentov</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Honavar</surname>
          </string-name>
          , V.:
          <article-title>A multirelational decision tree learning algorithm</article-title>
          .
          <source>Proceedings of the 13th International Conference on Inductive Logic Programming</source>
          ,
          <year>2002</year>
          ,
          <fpage>38</fpage>
          -
          <lpage>56</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yin</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , Han,
          <string-name>
            <surname>J.:</surname>
          </string-name>
          <article-title>An efficient multi-relational Naïve Bayesian classifier based on semantic relationship graph</article-title>
          .
          <source>Proceedings of the 4th International Workshop on Multi-Relational Mining - MRDM'05</source>
          ,
          <string-name>
            <surname>Eleventh</surname>
            <given-names>ACM</given-names>
          </string-name>
          <source>SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD-2005)</source>
          ,
          <year>2005</year>
          ,
          <fpage>39</fpage>
          -
          <lpage>48</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <surname>Lodhi</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Muggleton</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>Is mutagenesis still challenging?</article-title>
          <source>Proceedings of the 15th International Conference on Inductive Logic Programming</source>
          ,
          <source>ILP</source>
          <year>2005</year>
          ,
          <article-title>Late-Breaking Papers</article-title>
          .,
          <year>2005</year>
          ,
          <fpage>35</fpage>
          -
          <lpage>40</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <surname>Macskassy</surname>
            ,
            <given-names>S. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Provost</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>A simple relational classifier</article-title>
          .
          <source>Technical Report</source>
          , Stern New York University,
          <year>2003</year>
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>Di</given-names>
            <surname>Mauro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Esposito</surname>
          </string-name>
          ,
          <string-name>
            <surname>F.</surname>
          </string-name>
          :
          <article-title>Ensemble relational learning based on selective propositionalization</article-title>
          .
          <source>CoRR</source>
          (
          <year>2013</year>
          ),
          <fpage>1</fpage>
          -
          <lpage>10</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <surname>Michie</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Muggleton</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Page</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Srinivasan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>To the international computing community: a new east-west challenge</article-title>
          .
          <source>Technical Report</source>
          , Oxford University Computing Laboratory, Oxford,
          <year>1994</year>
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <surname>Modi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Relational classification using multiple view approach with voting</article-title>
          .
          <source>International Journal of Computer Applications</source>
          <volume>70</volume>
          (
          <issue>16</issue>
          ) (
          <year>2013</year>
          ),
          <fpage>31</fpage>
          -
          <lpage>36</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <surname>Neto</surname>
            ,
            <given-names>R. O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adeodato</surname>
            ,
            <given-names>P. J. L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salgado</surname>
            ,
            <given-names>A. C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Filho</surname>
            ,
            <given-names>D. R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Machado</surname>
            ,
            <given-names>G. R.:</given-names>
          </string-name>
          <article-title>CoMoVi: a framework for data transformation in credit behavioral scoring applications using model driven architecture</article-title>
          .
          <source>SEKE</source>
          <year>2014</year>
          (
          <year>2014</year>
          ),
          <fpage>286</fpage>
          -
          <lpage>291</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          [33]
          <string-name>
            <surname>Neville</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gallagher</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eliassi-Rad</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Correcting evaluation bias of relational classifiers with network cross validation</article-title>
          .
          <source>Knowledge and Information Systems</source>
          <volume>30</volume>
          (
          <issue>1</issue>
          ) (
          <year>2012</year>
          ),
          <fpage>31</fpage>
          -
          <lpage>55</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          [34]
          <string-name>
            <surname>Perlich</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Provost</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Distribution-based aggregation for relational learning with identifier attributes</article-title>
          .
          <source>Machine Learning</source>
          <volume>62</volume>
          (1
          <article-title>-2) SPEC</article-title>
          . ISS. (
          <year>2006</year>
          ),
          <fpage>65</fpage>
          -
          <lpage>105</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          [35]
          <string-name>
            <surname>Perovšek</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vavpeticˇ</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kranjc</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Cestnik, B.,
          <string-name>
            <surname>Lavracˇ</surname>
          </string-name>
          , N.:
          <article-title>Wordification: propositionalization by unfolding relational data into bags of words</article-title>
          .
          <source>Expert Systems with Applications</source>
          <volume>42</volume>
          (
          <fpage>17</fpage>
          -
          <lpage>18</lpage>
          ) (
          <year>2015</year>
          ),
          <fpage>6442</fpage>
          -
          <lpage>6456</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          [36]
          <string-name>
            <surname>Richardson</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Domingos</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Markov logic networks</article-title>
          .
          <source>Machine Learning</source>
          <volume>62</volume>
          (1
          <article-title>-2) SPEC</article-title>
          . ISS. (
          <year>February 2006</year>
          ),
          <fpage>107</fpage>
          -
          <lpage>136</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          [37]
          <string-name>
            <surname>Schulte</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bina</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Crawford</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bingham</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xiong</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>A hierarchy of independence assumptions for multirelational Bayes net classifiers</article-title>
          .
          <source>Proceedings of the 2013 IEEE Symposium on Computational Intelligence and Data Mining, CIDM 2013 - 2013 IEEE Symposium Series on Computational Intelligence</source>
          ,
          <string-name>
            <surname>SSCI</surname>
          </string-name>
          <year>2013</year>
          ,
          <year>2013</year>
          ,
          <fpage>150</fpage>
          -
          <lpage>159</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          [38]
          <string-name>
            <surname>Srinivasan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>King</surname>
            ,
            <given-names>R. D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Muggleton</surname>
            ,
            <given-names>S. H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sternberg</surname>
            ,
            <given-names>M. J. E.</given-names>
          </string-name>
          :
          <article-title>Carcinogenesis predictions using ILP</article-title>
          .
          <source>Inductive Logic Programming</source>
          <volume>1297</volume>
          (
          <year>1997</year>
          )
          <fpage>273</fpage>
          -
          <lpage>287</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          [39]
          <string-name>
            <surname>Taskar</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abbeel</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koller</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Discriminative probabilistic models for relational data</article-title>
          .
          <source>UAI'02 Proceedings of the Eighteenth Conference on Uncertainty in Artificial Intelligence</source>
          ,
          <year>2002</year>
          ,
          <fpage>485</fpage>
          -
          <lpage>492</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          [40]
          <string-name>
            <surname>Vens</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Van Assche</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Blockeel</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Džeroski</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>First order random forests with complex aggregates</article-title>
          .
          <source>Lecture Notes in Computer Science</source>
          <volume>3194</volume>
          (
          <year>2004</year>
          ),
          <fpage>323</fpage>
          -
          <lpage>340</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          [41]
          <string-name>
            <surname>Wolpert</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>The existence of a priori distinctions between learning algorithms</article-title>
          .
          <source>Neural Computation</source>
          <volume>8</volume>
          (
          <issue>7</issue>
          ) (
          <year>1996</year>
          ),
          <fpage>1391</fpage>
          -
          <lpage>1420</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref42">
        <mixed-citation>
          [42]
          <string-name>
            <surname>Yin</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , Han,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <surname>P. S.:</surname>
          </string-name>
          <article-title>CrossMine: efficient classification across multiple database relations</article-title>
          .
          <source>Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics) 3848 LNAI(6)</source>
          (
          <year>2006</year>
          ),
          <fpage>172</fpage>
          -
          <lpage>195</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref43">
        <mixed-citation>
          [43]
          <string-name>
            <surname>Zou</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>A general multirelational classification approach using feature generation and selection</article-title>
          . In: 6th International Conference, ADMA,
          <fpage>21</fpage>
          -
          <lpage>33</lpage>
          , Springer-Verlag,
          <year>2010</year>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>