<!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>Integrating an Advanced Classifier in WEKA</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Paul S¸tefan Popescu</string-name>
          <email>sppopescu@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mihai Mocanu</string-name>
          <email>mocanu@software.ucv.ro</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Marian Cristian Miha˘ escu</string-name>
          <email>mihaescu@software.ucv.ro</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Deparment of Computers and, Information Technology</institution>
          ,
          <addr-line>Bvd. Decebal no. 107, Craiova</addr-line>
          ,
          <country country="RO">Romania</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In these days WEKA has become one of the most important data mining and machine learning tools. Despite the fact that it incorporates many algorithms, on the classi cation area there are still some unimplemented features. In this paper we cover some of the missing features that may be useful to researchers and developers when working with decision tree classi ers. The rest of the paper presents the design of a package compatible with the WEKA Package Manager, which is now under development. The functionalities provided by the tool include instance loading, successor/predecessor computation and an alternative visualization feature of an enhanced decision tree, using the J48 algorithm. The paper presents how a new data mining/machine learning classi cation algorithm can be adapted to be used integrated in the workbench of WEKA.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Classi er</kwd>
        <kwd>J48</kwd>
        <kwd>WEKA</kwd>
        <kwd>Machine learning</kwd>
        <kwd>Data Mining</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        Nowadays huge amounts of data can be gathered from many
research areas or industry applications. There is a certain
need for data mining or knowledge extraction [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] from data.
From this large amount of data, the data analysts gather
many variables/features and many machine learning
techniques are needed to face this situation. There are many
application domains such as medical, economics (i.e.,
marketing, sales, etc.), engineering or in our case educational
research area [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] in which machine learning techniques can
be applied. Educational data mining is a growing domain
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] in which a lot of work has been done.
      </p>
      <p>
        Because the application domains are growing continuously,
the tools that support the machine learning processes must
live up to market standards providing good performances
and intuitive visualization techniques. In these days there
are many tools that deal with a wide variety of problems. In
order to be more explicit, we have tools like RapidMiner [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ],
KEEL [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], WEKA, Knime [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] or Mahout [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. RapidMiner
is a graphical drag and drop analytics platform, formerly
known as YALE, which provides an integrated environment
for data mining, machine learning, business and predictive
analytics. Keel is an application package of machine learning
software tools, specialized on the evaluation of evolutionary
algorithms. KNIME, the Konstanz Information Miner, is a
modular data exploration platform, provided as an Eclipse
plug-in, which o ers a graphical workbench and various
components for data mining and machine learning. Mahout
is a highly scalable machine learning library based on the
Hadoop framework [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], an implementation of the
MapReduce programming model, which supports distributed
processing of large data sets across clusters of computers.
For our approach we choose WEKA because it has become
one of the most popular machine learning and data mining
workbenches and its success is due to its constant
improvement and development. Moreover, WEKA is a very popular
tool used in many research domains, widely adopted by the
educational data mining communities.
      </p>
      <p>WEKA is developed in Java and encapsulates a collection of
algorithms that tackle many data mining or machine
learning tasks like preprocessing, regression, clustering,
association rules, classi cation and also visualization techniques.
In some cases, these algorithms are referring only the basic
implementation.</p>
      <p>One aspect that needs to be taken into consideration is that
WEKA has a package manager which simpli es the
developers contribution process. There are two kind of packages
that can be installed in WEKA and used via the
application interface: o cial and uno cial packages. This is a very
important feature because if there is an algorithm that ts
your problem description and there is a package for it you
can just add it to the application and use it further.
Moreover, you don't need to be a programmer to do that, you
don't need to write code, just install the package and then
use the algorithm like it had been there forever.
According to the real life experiences, many of the included
algorithms can hardly be used because of their lack of
exibility. For example, in standard decision trees from WEKA
we can perform a classi cation process but we cannot access
a particular instance from the tree. Suppose that we have a
training data le and we create the tree model. When we try
to see where is the place of the instance \X" in the tree we
can't do that in the application interface, neither when you
add the WEKA library in your code. This is a big drawback
because retrieving the leaf to which the instance belongs to
provides more information than retrieving its class.
Usually, when performing a classi cation task, the data analyst
divides test instances into classes that have little meaning
from application domain of perspective.</p>
      <p>In a real life scenario in a training dataset we may have a
large number of features describing the instances. A data
analyst should be able to parse a decision tree, see the rule
that derived to a speci c decision and then draw very
accurate conclusions In this paper we will address classi cation
and visualization issues by adding new functionalities and
improving the decision tree visualization.</p>
      <p>Several classi cation algorithms have been previously
contributed to WEKA but non of them is able to output a data
model that is loaded with instances. Based on the previous
statement it is clear that there aren't WEKA visualization
techniques that are able to present the data in the model
in a e cient way and also, there are no available parsing
methods ready to implement such functionalities. Traversal
of leaves is another task that is missing and it is important
because instances from neighbour leaves have a high degree
of similarity and share many attributes with similar values.
One aspect that di ers at WEKA from other similar
software regards its architecture that allows developers to
contribute in a productive way. All the work that needs to be
done refers to creating a speci c folders layout, completing
a \description.props" le, adding the \.jar" le to the archive
and the build script.</p>
    </sec>
    <sec id="sec-2">
      <title>2. RELATED WORK</title>
      <p>
        WEKA is a open source machine learning library that allows
developers and researchers to contribute very easily. There
are more than twenty years since WEKA had it's rst
release [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] and there were constant contributions added on it.
Not only machine learning algorithms were implemented, for
example, in 2005 a text data mining module was developed
[
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. An overview of the actual software was made in [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
Several classi ers were developed and contributed as
packages to WEKA. In 2007 a classi er that was build based
on a set of sub-samples was developed [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] and compared
to C4.5 [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] which have it's implementation called J48 [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]
in WEKA. Other classi ers refers the \Alternating Decision
Trees Learning Algorithms" [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] which is a generalization of
the decision trees, voted decision trees and voted decision
stumps. This kind of classi ers are relatively easy to
interpret and the rules are usually smaller in size. Classical
decision trees, such as c4.5 were expanding nodes in a
depthrst order; an improvement came from \Best- rst decision
trees" [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]which expands nodes in a best- rst order. A
package with these trees was contributed to WEKA.
Some other contributions refers libraries of algorithms that
can be accessed via WEKA. One of them is JCLEC [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] an
evolutionary computation framework which has been
successfully employed for developing several evolutionary
algorithms. Other environment for machine learning and data
mining knowledge discovery that was contributed to WEKA
is R [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. This contribution was developed in order to
include di erent sets of tools from both environments available
in a single uni ed system.
      </p>
      <p>
        Also as related work we must take into consideration some
of the last algorithms development. In the last year it is
presented a new fast decision tree algorithm [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. Based on
their experiments, the classi er outperforms C5.0 which is
the commercial implementation of C4.5.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. SYSTEM DESIGN</title>
      <p>The package is designed to be used both by developers, in
their Java applications, and researchers, using the WEKA
Explorer. At the moment of writing this paper the package
with the Advanced Classi er is still under development,
offering more functionalities as a tool for developers than in
the explorer view of WEKA.
In Fig. 1 we present the main design of the algorithm and
how it can be used in WEKA. On the top of the gure
we have the classi er which can be divided in two main
modules: the algorithm and the visualization. As we can
see on the next level, both of the modules can be divided
further. All the functionalities are then installed in WEKA
via the package manager and then, in the explorer, we can
perform data analysis tasks using a model loaded with data
and it's associated visualization techniques.</p>
    </sec>
    <sec id="sec-4">
      <title>3.1 General Architecture</title>
      <p>The packages is a zip archive, structured with respect to
the WEKA guidelines. That is, it unpacks to the current
directory and it contains: the source les, a folder with the
required libraries, a build script, a properties le required
by WEKA for installing and managing the package, and
the actual \.jar" le. A detailed structure of the package is
presented below.
In Figure 2 is presented the system's class diagram. This
diagram includes all the java packages from the project and
their relations. As we can see in the above mentioned
gure, we have two type of classes: independent classes and
composed. Independent classes are gathered from the model
part of the Model-View-Controller architecture or just classes
that perform one time tasks like \WekaTextFileToXMLTextFile"
which is able to generate an XML based on the text le
outputted by WEKA. On the other side, the composed classes
are dependent on each other and these relations are shared
across packages. One important class that is worth to be
mentioned is \AdvancedClassi erTreeLeaf.java" in which we
store the leaves of our tree along with rules that de ne the
leaf. Discussions about implementation of the packages are
more related to the software engineering research area and
beyond of the scope of this paper.
3.1.1 Design and Implementation of the Algorithm
The algorithm needs to generate custom rules (dependent
on the training dataset) for every leaf of the decision tree.
These rules are computed by tracing the path from the root
of the tree to the speci ed leaf. Each decision that leads to a
leaf is therefore translated into a rule that encapsulates the
name of the attribute and the value on which the decision
was made. For each type of attribute de ned by WEKA, we
need to have a corresponding rule that matches that type.
For this purpose an abstract class has been created to act as
a base class for any of the custom rules. The name of this
class is \BaseAttributeValidator" and exposes the required
methods that a superclass needs to implement: a \clone"
method required by the work ow of the system and
methods that validate if an instance or set of instances have the
required values of the attribute targeted by the rule. At
the moment, the only implemented rules are the ones that
handle \NOMINAL" and \NUMERIC" attribute types.
The rule that validates each nominal attribute is called
\NominalAttributeValidator" and receives as parameters the name
of the targeted attribute and a string variable representing
the accepted value of the attribute. The rule that handles
the numeric attributes is called
\NumericAttributeValidator" and also receives the name of the attribute and either
a particular value or the boundaries of an interval.
In the following paragraphs, we present a brief overview
of the algorithm for which we adopt a straightforward
approach.</p>
      <p>
        Firstly, the algorithm retrieves instances from the \.ar " le
using the methods provided by WEKA. The next step is
applying the desired classi cation process. Currently the
only supported classi er is J48, but employing other decision
tree classi ers is foreseen as future work. Using the text
representation of the outputted model and a prede ned set
of rules and tags, an XML is then generated. This is an
important step during the work ow because the structured
XML format allows us to obtain the base model for our
decision tree. The deserialization is done using a third-party
Java library(\Simple XML" [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]).
      </p>
      <p>The model obtained this way contains a list of nodes and
leaves with the following signi cance: each node corresponds
to a decision in the tree; the data stored in each object
(node) refers the information about the name of the
actual attribute, operator and value on which the decision was
made; and the results to which making the decision leads (a
list of other nodes or an output leaf). Using this model and
the set of attributes provided by WEKA, the set of rules
is computed. This step is performed by parsing the model
from the rst node (i.e., the root) to the last available leaf
and gradually composing the set of rules that de nes each
leaf. The setup of the algorithm is nally completed with
the loading of the training dataset into the model.</p>
      <p>The classi er and processed data can now be easily
handled and di erent operations can be applied. The method
currently implemented include basic per leaf manipulation
of instances, i.e. loading new instances into the model and
retrieving the part of the dataset contained in each leaf, as
well as predecessor and successor computation.
3.1.2 Visualization Plugin
For the visualization feature, a custom panel has been
designed to hold the components that build up the decision
tree and expose the data available in the leaves. The
contructor of the panel requires the decision tree model as a
parameter, and takes care of adding the corresponding views
to the interface. In order to include this functionality in
WEKA, a specialized class that implements WEKA's
TreeVisualizePlugin interface has been created. After adding
the package through the Package Manager and selecting this
visualization option, a new JFrame that holds the custom
panel is displayed.
In Figure 3 we present a dataset sample. In order to validate
the classi er and it's extra functionalities several tests have
been made but for this case study we used three attributes
and 788 instances. The feature called \userid" doesn't
provide any information gain but can be easily used for
instances localization in leaves. The attributes signi cance is
beyond the scope of this paper.</p>
      <p>In Figure 4 is presented a screen-shot of the tree generated
based on the dataset from gure 3. Each node contains
the name of the attribute, and each decision is printed on
top of the connecting line. Surely, each leaf can be clicked,
and the set of enclosed instances is displayed. As
previously noted, there is still some work to be made to
nalize the development of the package, and the visualization
tool needs to be included as well. E orts will have to be
made toward providing the means to visualize and handle
the successors/predecessors, outliers and other relevant
information.</p>
    </sec>
    <sec id="sec-5">
      <title>4. CONCLUSIONS AND FUTURE WORK</title>
      <p>In this paper we have presented the integration of a data
analysis tool in WEKA. This tool is important because brings
a new classi er to WEKA that aims to improve the
classication procedures. Here, are also presented some
implementing procedures and details.</p>
      <p>A work ow is also described and all the mechanism that is
used to bring new features for the users. One important
thing that needs to be mentioned is that the data
loading module opens new data analysis opportunities for
researchers.</p>
      <p>As future work we plan to implement Other types of
attributes supported by WEKA like \DATE", \String" and
\Relational".</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <article-title>[1] Simple xml</article-title>
          . http://simple.sourceforge.net.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>J.</given-names>
            <surname>Alcala-Fdez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Sanchez</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          <article-title>Garc a, M. del</article-title>
          <string-name>
            <surname>Jesus</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Ventura</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Garrell</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Otero</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Romero</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Bacardit</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Rivas</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <article-title>FernA~ a,ndez, and</article-title>
          <string-name>
            <given-names>F.</given-names>
            <surname>Herrera</surname>
          </string-name>
          .
          <article-title>Keel: a software tool to assess evolutionary algorithms for data mining problems</article-title>
          .
          <source>Soft Computing</source>
          ,
          <volume>13</volume>
          (
          <issue>3</issue>
          ):
          <volume>307</volume>
          {
          <fpage>318</fpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M. R.</given-names>
            <surname>Berthold</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Cebron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Dill</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. R.</given-names>
            <surname>Gabriel</surname>
          </string-name>
          , T. Kotter, T. Meinl,
          <string-name>
            <given-names>P.</given-names>
            <surname>Ohl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Thiel</surname>
          </string-name>
          , and
          <string-name>
            <given-names>B.</given-names>
            <surname>Wiswedel</surname>
          </string-name>
          .
          <article-title>Knime - the konstanz information miner: Version 2.0 and beyond</article-title>
          .
          <source>SIGKDD Explor</source>
          . Newsl.,
          <volume>11</volume>
          (
          <issue>1</issue>
          ):
          <volume>26</volume>
          {
          <fpage>31</fpage>
          ,
          <string-name>
            <surname>Nov</surname>
          </string-name>
          .
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>R.</given-names>
            <surname>Campagni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Merlini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Sprugnoli</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M. C.</given-names>
            <surname>Verri</surname>
          </string-name>
          .
          <article-title>Data mining models for student careers</article-title>
          .
          <source>Expert Systems with Applications</source>
          , (
          <volume>0</volume>
          ):{,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Cano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Luna</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. L.</given-names>
            <surname>Olmo</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Ventura</surname>
          </string-name>
          . Jclec meets weka! In E. Corchado,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kurzynski</surname>
          </string-name>
          , and M. Wozniak, editors,
          <source>HAIS (1)</source>
          , volume
          <volume>6678</volume>
          of Lecture Notes in Computer Science, pages
          <volume>388</volume>
          {
          <fpage>395</fpage>
          . Springer,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>U.</given-names>
            <surname>Fayyad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Piatetsky-Shapiro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and P.</given-names>
            <surname>Smyth</surname>
          </string-name>
          .
          <article-title>The kdd process for extracting useful knowledge from volumes of data</article-title>
          .
          <source>Commun. ACM</source>
          ,
          <volume>39</volume>
          (
          <issue>11</issue>
          ):
          <volume>27</volume>
          {
          <fpage>34</fpage>
          ,
          <string-name>
            <surname>Nov</surname>
          </string-name>
          .
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Freund</surname>
          </string-name>
          and
          <string-name>
            <surname>L. Mason.</surname>
          </string-name>
          <article-title>The alternating decision tree learning algorithm</article-title>
          .
          <source>In Proceedings of the Sixteenth International Conference on Machine Learning, ICML '99</source>
          , pages
          <fpage>124</fpage>
          {
          <fpage>133</fpage>
          , San Francisco, CA, USA,
          <year>1999</year>
          . Morgan Kaufmann Publishers Inc.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>M.</given-names>
            <surname>Hall</surname>
          </string-name>
          , E. Frank,
          <string-name>
            <given-names>G.</given-names>
            <surname>Holmes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Pfahringer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Reutemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and I. H.</given-names>
            <surname>Witten</surname>
          </string-name>
          .
          <article-title>The weka data mining software: An update</article-title>
          .
          <source>SIGKDD Explor</source>
          . Newsl.,
          <volume>11</volume>
          (
          <issue>1</issue>
          ):
          <volume>10</volume>
          {
          <fpage>18</fpage>
          ,
          <string-name>
            <surname>Nov</surname>
          </string-name>
          .
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>G.</given-names>
            <surname>Holmes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Donkin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and I. H.</given-names>
            <surname>Witten</surname>
          </string-name>
          .
          <article-title>Weka: a machine learning workbench</article-title>
          .
          <source>pages</source>
          <volume>357</volume>
          {
          <fpage>361</fpage>
          ,
          <year>August 1994</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>K.</given-names>
            <surname>Hornik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Buchta</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Zeileis</surname>
          </string-name>
          .
          <article-title>Open-source machine learning: R meets weka</article-title>
          .
          <source>Computational Statistics</source>
          ,
          <volume>24</volume>
          (
          <issue>2</issue>
          ):
          <volume>225</volume>
          {
          <fpage>232</fpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>W.-Y.</given-names>
            <surname>Loh</surname>
          </string-name>
          .
          <article-title>Classi cation and Regression Tree Methods</article-title>
          . John Wiley &amp; Sons, Ltd,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>I.</given-names>
            <surname>Mierswa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wurst</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Klinkenberg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Scholz</surname>
          </string-name>
          , and
          <string-name>
            <given-names>T.</given-names>
            <surname>Euler</surname>
          </string-name>
          . Yale:
          <article-title>Rapid prototyping for complex data mining tasks</article-title>
          .
          <source>In Proceedings of the 12th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, KDD '06</source>
          , pages
          <fpage>935</fpage>
          {
          <fpage>940</fpage>
          , New York, NY, USA,
          <year>2006</year>
          . ACM.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>S.</given-names>
            <surname>Owen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Anil</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Dunning</surname>
          </string-name>
          , and
          <string-name>
            <given-names>E.</given-names>
            <surname>Friedman</surname>
          </string-name>
          . Mahout in Action. Manning Publications Co.,
          <string-name>
            <surname>Greenwich</surname>
            ,
            <given-names>CT</given-names>
          </string-name>
          , USA,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>J. M. Perez</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Muguerza</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Arbelaitz</surname>
            ,
            <given-names>I. Gurrutxaga</given-names>
          </string-name>
          , and
          <string-name>
            <surname>J. I. Mart n.</surname>
          </string-name>
          <article-title>Combining multiple class distribution modi ed subsamples in a single tree</article-title>
          .
          <source>Pattern Recognition Letters</source>
          ,
          <volume>28</volume>
          (
          <issue>4</issue>
          ):
          <volume>414</volume>
          {
          <fpage>422</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Quinlan</surname>
          </string-name>
          .
          <source>C4</source>
          .
          <article-title>5: Programs for Machine Learning</article-title>
          . Morgan Kaufmann Publishers Inc., San Francisco, CA, USA,
          <year>1993</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>C.</given-names>
            <surname>Romero</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Ventura</surname>
          </string-name>
          .
          <article-title>Educational data mining: A survey from 1995 to 2005</article-title>
          .
          <source>Expert Systems with Applications</source>
          ,
          <volume>33</volume>
          (
          <issue>1</issue>
          ):
          <volume>135</volume>
          {
          <fpage>146</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>H.</given-names>
            <surname>Shi</surname>
          </string-name>
          .
          <article-title>Best- rst decision tree learning</article-title>
          .
          <source>Technical report</source>
          , University of Waikato,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>K.</given-names>
            <surname>Shvachko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Kuang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Radia</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R.</given-names>
            <surname>Chansler</surname>
          </string-name>
          .
          <article-title>The hadoop distributed le system</article-title>
          .
          <source>In Mass Storage Systems and Technologies (MSST)</source>
          ,
          <source>2010 IEEE 26th Symposium on, pages</source>
          <volume>1</volume>
          {
          <fpage>10</fpage>
          . IEEE,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>S.-G. P. V.</given-names>
            <surname>Purdila</surname>
          </string-name>
          .
          <article-title>Fast decision tree algorithm</article-title>
          .
          <source>Advances in Electrical and Computer Engineering</source>
          ,
          <volume>14</volume>
          (
          <issue>1</issue>
          ):
          <volume>65</volume>
          {
          <fpage>68</fpage>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>I. H.</given-names>
            <surname>Witten</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. W.</given-names>
            <surname>Paynter</surname>
          </string-name>
          , E. Frank,
          <string-name>
            <given-names>C.</given-names>
            <surname>Gutwin</surname>
          </string-name>
          , and
          <string-name>
            <given-names>C. G.</given-names>
            <surname>Nevill-Manning</surname>
          </string-name>
          .
          <article-title>Kea: Practical automatic keyphrase extraction</article-title>
          .
          <source>In Proceedings of the Fourth ACM Conference on Digital Libraries, DL '99</source>
          , pages
          <fpage>254</fpage>
          {
          <fpage>255</fpage>
          , New York, NY, USA,
          <year>1999</year>
          . ACM.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>