<!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>Error-Correcting Output Codes for Multi-Label Text Categorization</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Giuliano Armano</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Camelia Chira</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nima Hatami</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science Babes-Bolyai University Kogalniceanu 1</institution>
          ,
          <addr-line>Cluj-Napoca 400084</addr-line>
          ,
          <country country="RO">Romania</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Department of Electrical and Electronic Engineering University of Cagliari Piazza D'Armi</institution>
          ,
          <addr-line>I-09123 Cagliari</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>When a sample belongs to more than one label from a set of available classes, the classification problem (known as multi-label classification) turns to be more complicated. Text data, widely available nowadays in the world wide web, is an obvious instance example of such a task. This paper presents a new method for multi-label text categorization created by modifying the Error-Correcting Output Coding (ECOC) technique. Using a set of binary complimentary classifiers, ECOC has proven to be efficient for multi-class problems. The proposed method, called ML-ECOC, is a first attempt to extend the ECOC algorithm to handle multi-label tasks. Experimental results on the Reuters benchmarks (RCV1-v2) demonstrate the potential of the proposed method on multi-label text categorization.</p>
      </abstract>
      <kwd-group>
        <kwd>Ensemble learning</kwd>
        <kwd>Error-Correcting Output Coding (ECOC)</kwd>
        <kwd>Information filtering and retrieval</kwd>
        <kwd>Multi-label Classification</kwd>
        <kwd>Multi-label Text Categorization (ML-TC)</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Text Categorization (TC), also known as document classification, plays a key
role in many information retrieval (IR) -based systems and natural language
processing (NLP) applications. First research on TC goes back to Maron’s [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
seminal work on probabilistic text classification. Since then, TC has been used
for a number of different applications using techniques from machine learning,
pattern recognition and statistics. In [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], TC applications are grouped into
hierarchical categorization of web pages, word sense disambiguation, automatic
indexing for boolean IR systems, document filtering and organization. Speech
categorization as combination of a speech recognition and TC methods,
multimedia document categorization through the analysis of textual captions, author
identification for literary texts of unknown or disputed authorship, language
identification for texts of unknown language, automated identification of text
genre, and automated essay grading are some examples for such applications in
real-world problems [
        <xref ref-type="bibr" rid="ref4 ref6">4, 6</xref>
        ] .
      </p>
      <p>The traditional classification problem in pattern recognition refers to
assigning any incoming sample to one of two (binary problem) or more (multi-class
problem) distinct predefined classes. An even more complex scenario - called
multi-label classification - is one in which the classes have overlap between each
other. TC or automatically labeling natural language texts with thematic
categories from a predefined set is one such task. An instance document or web page
about ”Persian carpet exhibition” can belong to both ”economy” and ”art”
categories. Despite its multi-label nature, the majority of research studies on TC
have considered it as single-label task by assigning the samples into only one of
the existing classes. However, this approach simplifies the task and handles it
using a huge bibliography of learning algorithms, yet failing to provide a complete
solution to multi-label TC.</p>
      <p>
        There are two main approaches in the literature to deal with multi-label
classification: (i) Problem transformation approaches which transform the
multilabel problem into one or more single-label problems, and (ii) Algorithm
adaptation approaches which extend specific learning algorithms in order to handle the
multi-label task directly. Although many approaches have been proposed based
on different kinds of classifiers and architectures over a variety of application
domains, there is no clear winner method over the rest (see [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] for some
recent surveys) and each of them has its own advantages and disadvantages.
      </p>
      <p>
        Classifier ensembles (also known as Multiple Classifier Systems) is a paradigm
based on the divide-and-conquer strategy to deal with complex classification
problems. The main idea is to use an ensemble of simple base-classifiers, each
applied to a sub-task, instead of hiring a single classifier expected to take care of
the entire task. This strategy typically improves a classification system in terms
of stability and classification accuracy (bias-variance reduction). Bootstrap
aggregating (i.e., bagging) is a machine learning technique that combines a number
of base-classifiers, each trained on a set of bootstrap samples of the original data
[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. The boosting strategy is a fixed point procedure aimed at iteratively
generating a set of week learners [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]. Random Subspace Ensemble (RSE) [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] creates
a set of base classifiers, each using only a (randomly determined) subset of the
original feature space. RSE is particularly effective for high-dimensional
classification problems. The Mixture of Experts (ME) [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] stochastically partitions the
input space of the problem into a number of subspaces, so that experts become
specialized on each subspace. The ME uses another expert called gating network
to manage this process - which is trained together with the experts. Finally,
Error-Correcting Output Codes (ECOC) [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] is an ensemble making strategy
inspired by the coding theory which decomposes any multi-class problem into some
complementary binary sub-problems using a (normally pre-defined) codematrix.
The final multi-class solution is obtained by aggregating the binary outputs.
      </p>
      <p>This paper proposes a method for multi-label TC called ML-ECOC
created by extending the ECOC strategy. ML-ECOC modifies the coding/decoding
phases of the standard ECOC algorithm making it suitable to the multi-label
problems. This modification includes setting up new rules in both coding and
decoding phases to avoid the occurrence of any inconsistency while handling
multi-label data. Experiments on the text mining problem of Multi-Label Text
Categorization (ML-TC) show a good performance of the proposed ML-ECOC.
Comparissons to the state-of-the-art methods from different perspectives are
carried out and the obtained results are analysed in detail.</p>
      <p>The rest of this paper is organized as follows: the standard ECOC algorithm
presented in section 2, the proposed ML-ECOC algorithm is presented in
section 3 with full details, section 4 presents the analysis of experimental results
on Reuter’s version 2 datasets and the comparisons with the state-of-the-art
methods from litrature. Last section concludes the paper and discusses some
directions of future work.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Error-Correcting Output Coding</title>
      <p>ECOC is a classifier ensemble method inspired by signal transmission in
information theory used to safely send and receive the data. Besides its error-correcting
capability to recover the errors made in each sub-problem classification level,
ECOC has the advantage of decomposing a multi-class problem into some
binary sub-problems (dichotomies) in machine learning concept. Each sub-problem
is tackled by a dichotomizer and the final solution for the multi-class problem is
created by aggregating the results of the dichotomizers (divide-and-conquer
principle). For this reason, ECOC performs well particularly on the problems with
large number of classes for which other classifiers normally have difficulties.</p>
      <p>Given a classification problem with Nc classes, the main idea of ECOC is
to create a binary/ternary codeword for each class. Arranging the codewords as
rows of a matrix, we define a codematrix M , where M ∈ {−1, 0, +1}Nc×L and
L is the code length (coding phase). From a learning point of view, M specifies
Nc classes to train L dichotomizers, f1...fL. A classifier fl is trained according
to the column M (., l). If M (i, l) = +1 then all examples of class i are positive,
if M (i, l) = −1 then all its examples are negative supper-class and, finally, if
M (i, l) = 0 none of the examples of class i participate in the training of fl.</p>
      <p>Let y = [y1...yL], yl ∈ {−1, +1} be the output vector of the L classifiers in
the ensemble for a given input x. In the decoding phase, the class output that
maximizes the similarity measure s (e.g. the Hamming distance) between y and
row M (j, .) (its codeword) is selected:</p>
      <p>Class Label = ArgM ax S(y, M (j, .))
(1)</p>
      <p>
        The ECOC matrix codifies the class labels in order to achieve different
partitions of classes, considered by each dichotomizer. The main coding strategies can
be divided into problem-independent (or fixed) and problem-dependent. Most
popular pre-designed problem-independent codeword constructions satisfy the
requirement of high separability between rows and columns in order to increase
error-correcting capability and diversity between dichotomies. These strategies
include: 1vsA, using Nc dichotomizers, each trained to discriminate a given class
from the rest of classes; random techniques, which can be divided into the
denserandom, consisting of a binary matrix with high distance between rows with
estimated length of 10 log2 Nc bits per code, and the sparse-random strategy based
on the ternary symbol and with the estimated length of about 15 log2 Nc. 1vs1 is
one of the most well-known coding strategies, with Nc(Nc − 1)/2 dichotomizers
including all combinations of pairs of classes [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Finally, BCH codes [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] are
based on algebraic techniques from Galois Field theory and, while its
implementation is fairly complex, it has some advantages such as generating ECOC
codewords separated by a minimum, configurable Hamming distance and good
scalability to hundreds or thousands of categories. Moreover, recently some
researchers [
        <xref ref-type="bibr" rid="ref10 ref11 ref9">10, 9, 11</xref>
        ] argue that, unlike the problem-independent strategies where
a codematrix is defined without considering the problem characteristics or the
classification performance, the selection and the number of dichotomizers must
depend on the performance of the ensemble for the problem at hand.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Multi-Label ECOC for TC</title>
      <p>
        The first application of ECOC algorithm on TC dates back to 1999 [
        <xref ref-type="bibr" rid="ref7 ref8">8, 7</xref>
        ],
However, in these studies, the authors simply use standard single-label classifiers and
view the problem as a traditional multi-class classification. Since then, many
researchers also used ECOC with different types of classifiers on various
applications but with more or less the same assumptions. From the ECOC literature,
one can conclude that there are three main possible ways to improve ECOC
classifiers: (i) code matrix design, (ii) building binary classifiers, and (iii) decoding
step. In TC area, the improvements are mainly limited to the second option i.e.
building binary classifiers as accurate as possible. This goal is achieved in [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] by
Model-Refinement strategy which is used to adjust the so-called bias in centroid
classifiers. The basic idea is to take advantage of misclassified examples in the
training data to iteratively refine and adjust the centroids of text data. In [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], Li
et al. proposed a simple strategy to improve binary text classification via
multiclass categorization (dubbed 2vM) for applications where sub-class partitions
of positive and/or negative classes are available. As multi-class categorization
may implicitly capture the interactions between sub-classes, detailed subclasses
are expected to help differentiating the positive and negative classes with high
accuracy.
      </p>
      <p>
        The reason that all these works are limited to single-label assumption is that
an inconsistency would occur otherwise in ECOC classification while applying
to multi-label data. For instance, imagine a document d belongs to a label set
[
        <xref ref-type="bibr" rid="ref1 ref3 ref5">1, 3, 5</xref>
        ], each label representing a content based topic. Also imagine 5-th column
of an instance (predefined or given) matrix M 7×9 shown in Figure 1 which is
used to create dichotomizer f5. Considering d → ω = [c1, c3, c5], now the question
is which super-class sample d belongs to (+1 or -1)? According to traditional
decoding of ECOC, the sample belongs to both super-classes of the dichotomy at
the same time. This inconsistensy in assignment of d is not only limited to f5 but
also occures for dichotomies 3,4, 6, 7 and 8. In fact, standard ECOC algorithm
is only capable of single-label prediction for a traditional multi-class problem
while it suffers from lack of capability to handle multi-label data in general.
Therefore, a modification in the ECOC algorithm is required such that it can
directly address multi-label data in both training the dichotomizers and label
set prediction without any assumption and limitation. As mentioned before, the
only way to address this issue so far was simplifying the problem to single-label
classification [
        <xref ref-type="bibr" rid="ref7 ref8">7, 8</xref>
        ].
      </p>
      <p>Although the single-label assumption may be true in some TC applications,
it certainly limits the application of ECOC to real-world multi-label cases. This
is the point where ECOC algorithm requires a major modification to be
applicable to multi-label problems. In the following, we introduce the ML-ECOC
method to address any multi-label problem without any constraint and
restricting assumption.</p>
      <p>The main idea of ML-ECOC is to generate a codeword for each category of
a TC task with only +1 (positive class) and 0 (don’t care) bits. Unlike standard
ECOC algorithm, where at least one +1 and one −1 bits are required at each
column to define a dichotomy, to be non-zero is all ML-ECOC needs for a column.
A classifier defined according to each column of the ML matrix and used to
calculate degree of membership of d into a super-class which includes one or
more categories. The inconsistency in the dichotomizing process is avoided by
defining only positive class and neutral set which can not have any overlapping
area. It is worth noting that a document belongs to ith positive class if and
only if at least one of its labels from the label set is in the ith super-class. A
document d (Figure 2) either should belong to positive class of ith column or its
neutral set. For instance, d is a member of 2, 3, 4, 5, 6, 7 and 8 positive class sets
while should be considered as neutral for 1st and 9th.</p>
      <p>Subsequently, it is obvious that this modification requires also different
decoding strategy, since standard Euclidean or Hamming distances with ArgM ax
labeling are not applicable anymore. Let us suppose a predicted codeword yd =
[y1...yL], 0 ≤ yl ≤ +1} is a string assigned to document d (each bit representing
the output of a classifier i.e. Pl(+1 | d)). The posterior probability of each class
using ML-ECOC is calculated as follows:
1</p>
      <p>L
P(cN | d) =</p>
      <p>X Pl(+1 | d)M (N, l)
| M (N, .) | l=1
(2)</p>
      <p>For each document, ML-ECOC sorts categories by score and assigns YES
to each of the t top-ranking categories. Parameter t is an integer ranging from
1 to the number of categories Nc whose value can be either specified by the
user or automatically tuned using a validation set. It should be noted that when
t = 1, this multi-label assignment turns into the standard single-label TC with
ArgM ax rule. Obviously, it is just typical thresholding strategy adopted to
MLECOC and the other existing throsholding methods can be applied. The generic
ML-ECOC is summarized in Algorithm 1.
The success of the ML-ECOC idea can be attributed to following three factors:
1. Unlike the standard TC approaches trying directly to discriminate different
classes, ML-ECOC transfers the entire class space to many super-classes, which
are not necessarily carrying meaningful concepts, by mixing them . This is helpful
particularly to deal with what is called in the literature Data sparsity. This
Algorithm 1 ML-ECOC.</p>
      <p>Input: Xt, Tt training set, Xe, Te testing set and f learning algorithm.
Training:</p>
      <p>- generate a binary codemtrix M Nc×L which Nc is the number of categories and L
varies with coding strategy.</p>
      <p>- for i-th column in M :</p>
      <p>build (create) one-class set made of Ti+ and Ti∗ supper-classes (positive and
neutral sets respectively)</p>
      <p>train i-th classifier fi with i-th training set
Testing:
- apply Xe on entire set of fis
- create a codeword which i-th bit is fi(Xe) = Pi(+1 | Xe)
- calculate the posterior probability for each class using Eq. 2
- use multi-label decoding to predict label set
Output: ω¯ = [c¯p, c¯q, c¯r]
is a measure for how much data we have for a particular dimension/entity of
the model. A dataset is sparse if the number of samples for each class is not
enough for a classifier to discriminate it from the rest which is normally the case
in the TC problem. Therefore, mixing categories by ML-ECOC decomposing,
not only used to define new class-boundaries which might provide additional
information in final decision making, but also provides new one-class problems
with more samples per positive class (in the case each super-class has more than
one category). For instance, each super-class in first dichotomy of Figure 2 is
made of 3 categories.</p>
      <p>2. No matter which TC approach is chosen, a class-label is assigned to a
document if its corresponding classifier fires. In fact, when a category is wrongly
detected, there is no any efficient way to go back and fix it without the increase of
the algorithm complexity and computational cost. However, in ML-ECOC there
is no dedicated classifier for each category and decisions are made by consensus
of all classifiers. Therefore, because of its error-correcting capability, even if some
errors occur in the bit level, the final decision can still be reliable.</p>
      <p>3. Another important issue arising while dealing with TC refers to
classimbalanced datasets where there is no balance between the positive and negative
set of a category. This problem can badly affect the learning process particularly
in the Local Classifier per Category approach when a category stands against
the rest. ML-ECOC keeps more balance between two resulted positive classes
and neutrals by having chance of including more than one class in the positive
class set. For instance Sparse-random method can possibly include more than
one category in a positive class resulting into more balanced data. Consequently,
efficient learning of the class boundaries by classifiers results in more accurate
prediction.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Numerical Experiments and Results</title>
      <p>For the text categorization experiments, we have chosen two commonly used
multi-label datasets i.e. the Reuters (RCV1-V2) and TMC2007. A brief
description of each is given below.</p>
      <p>
        RCV1-V2: Reuters Corpus Volume1-Version2 is a large-scale dataset for text
classification task. It is based on the well known benchmark dataset for text
classification, the Reuters (RCV1) dataset. We use the topics full set 3 that
contains (804,414) news articles. Each article is assigned to a subset of the 103
topics. A detailed description of the RCV1 dataset can be found in [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. We
preprocessed RCv1v2 documents as proposed by Lewis et al. [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and, in addition,
we separated the training set and the testing set using the same split adopted in
[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. In particular, documents published from August 20, 1996 to August 31, 1996
(document IDs 2286 to 26150) are included in the training set, while documents
published from September 1, 1996 to August 19, 1997 (document IDs 26151 to
810596) are considered for testing. The result is a split of the 804,414 documents
into 23,149 training documents and 781,265 test documents. In order to save
computational resources, we have randomly chosen 600 documents (300 training
documents and 300 testing documents) as indicated in Table 1.
      </p>
      <p>
        TMC2007: This is the dataset used for the SIAM 2007 competition organized
by the text mining workshop held in conjunction with the 7th SIAM
International Conference on Data Mining [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ]. This competition sponsored by NASA
Ames Research Center, focused on developing text mining algorithms for
document classification. It contains 28596 aviation safety reports in free text form,
annotated with one or more out of 22 problem types that appear during
certain flights [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]. However, in order to save computational resources, we have
randomly chosen 300 training documents and 300 testing documents for our
experiments. The dataset comes from human generated reports on incidents that
occurred during the flights which means there is one document per incident.
Text representation follows the boolean bag-of-words model. The goal was to
label the documents with respect to the types of problems that were described.
This is a subset of the Aviation Safety Reporting System (ASRS) dataset, which
is publicly available. Some other statistics of the dataset are given in Table 1.
problem samples nominal numeric label cardinality density distinct
      </p>
      <p>
        In the applications using text categorization as the core task, the
computational efficiency is crucial because of very large number of features, classes and
samples. Therefore, the need for designing a simple and fast classification system
is important. There are many research studies using different kinds of classifiers
such as k-nearest neighbors (kNN), support vector machines (SVM), artificial
neural networks (ANN), bayesian methods and rocchio classifiers [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. However,
in practice most of them are not applicable as in real-world applications, e.g.
search engines and recommender systems, a just-in-time response has great
importance. Among them, the naive bayes and centroid classification algorithms
are extremely simple and straightforward illustrating competitive performance
on text categorization problems. Moreover, they do not need to memorize a huge
amount of training data as some other classifiers do (e.g. kNN) and adjust so
many parameters (e.g. ANN).
      </p>
      <p>For the experiments presented in the current paper, we used centroid-based
classifiers as the ECOC dichotomizers. This means that the prototype vector or
centroid vector (μi+) is computed for super-class Ti+ as:
μi+ =</p>
      <p>1
| Ti+ |</p>
      <p>X d
d∈Ti+
S(d, μi+) =</p>
      <p>d · μi+
|| d || || μi+ ||
classif ication accuracy =</p>
      <p>n
1</p>
      <p>X I(ωd = ω¯d)
n d=1
where I(true) = 1 and I(f alse) = 0 and n is the number of documents in
a dataset. This is a very strict evaluation measure as it requires the predicted
set to be an exact match for the true set in the label set no matter if a classifier
makes a mis-classification at only one category or the entire set.</p>
      <p>where | Ti+ | denotes the cardinality of set Ti+, i.e. the number of documents
that belong to positive set in the i-th individual and d is a training document.</p>
      <p>In the testing step, we calculate the similarity of a document d to each
centroid by the cosine measure,</p>
      <p>This similarity can be regarded as the posterior probability of the dichotomizer
and used for i-th bit of the predicted codeword y¯d.</p>
      <p>Consequently, the evaluation of methods to handle multi-label data requires
different measures than those used for traditional single-label classification.
Various measures are traditionally being used for evaluation of multi-label
classification (particularly for document and text applications) such as classification
accuracy, precision, recall and F1. These are defined below.</p>
      <p>precision =
1 XNc T Pci
Nc ci=1 T Pci + F Pci
and recall =
1 XNc T Pci
Nc ci=1 T Pci + F Nci
(3)
(4)
(5)
(6)
where T P , F P and F N stand for the true positive, false positive and false
negative for each category, respectively. The F1-score which considers both the
precision and recall of the test set is formulated as:</p>
      <p>F 1 =
2precision.recall
precision + recall
where an F 1 score reaches its best value at 1 and worst score at 0.</p>
      <p>We have compared the results of the proposed method with some of
commonly used TC algorithms. The standard multi-label TC methods used as
baseline methods are the big-bang (global method) and Local Classifier per Category
(LCC). For all these methods, centroid-based classifiers with the same
parameters have been implemented. As shown in Table 2, the proposed ML-ECOC using
Dense random and 2vsA codes outperforms the standard TC approaches on the
selected datasets by obtaining the maximum F1 scores. One can note that the
results for 2vsA code for rcv1v2 data is missing. This is because of large number
of classes of RCv1v2 data which make building ECOC classifier unfeasible.</p>
      <p>To give more detailed information, Figure 3 shows precision-recall curves
corresponding to ML-ECOC and LCC approaches. Because of the superior
performance on ML-TC datasets, the LCC approach is used for assessing the
comparative performance of ML-ECOC. As clearly shown, the proposed ML-ECOC
is able to obtain slightly better results on RCv1-v2 while always winning on
TMC2007 data.
(7)
An extension of the ECOC algorithm called ML-ECOC is proposed to tackle
multi-label TC problems. To avoid the inconsistency in coding step, the proposed
ML-ECOC method decomposes a multi-label problem into some complementary
one-class sub-problems unlike the standard ECOC which builds dichotomies.
Multi-label relationship is taken into account in the testing phase by using a
novel decoding strategy adopted for ECOC algorithm. Experimental results on
Reuters datasets confirm the potential of the proposed ML-ECOC on multi-label
classification with large number of categories.</p>
      <p>
        Recently, some studies [
        <xref ref-type="bibr" rid="ref23 ref24">23, 24</xref>
        ] try to increase ECOC reliability by proposing
a reject mechanism. One interesting future research line refers to multi-label text
categorization with a reject option.
      </p>
      <p>Acknowledgments. Camelia Chira acknowledges the support of Grant PN II
TE 320, Emergence, auto-organization and evolution: New computational
models in the study of complex systems, funded by CNCS Romania.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Maron</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <year>1961</year>
          .
          <article-title>Automatic indexing: an experimental inquiry</article-title>
          .
          <source>J. Assoc. Comput. Mach. 8</source>
          ,
          <issue>3</issue>
          ,
          <fpage>404</fpage>
          -
          <lpage>417</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Lin</surname>
            <given-names>S.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Costello. D. J. Error Control</surname>
            <given-names>Coding</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Second</given-names>
            <surname>Edition</surname>
          </string-name>
          . Prentice-Hall, Inc. (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>F.</given-names>
            <surname>Sebastiani</surname>
          </string-name>
          , Machine learning in
          <source>automated text categorization, ACM Computing Surveys</source>
          , Volume
          <volume>34</volume>
          Issue 1,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>SABLE</surname>
            ,
            <given-names>C. L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hatzivassiloglou</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <year>2000</year>
          .
          <article-title>Textbased approaches for non-topical image categorization</article-title>
          .
          <source>Internat. J. Dig. Libr. 3</source>
          ,
          <issue>3</issue>
          ,
          <fpage>261</fpage>
          -
          <lpage>275</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Lewis</surname>
            ,
            <given-names>D. D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rose</surname>
            ,
            <given-names>T. G.</given-names>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          (
          <year>2004</year>
          ).
          <article-title>RCV1: A new benchmark collection for text categorization research</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          ,
          <volume>5</volume>
          ,
          <fpage>361</fpage>
          -
          <lpage>397</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Schapire</surname>
            ,
            <given-names>R. E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Singer</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <year>2000</year>
          .
          <article-title>BoosTexter:a boosting-based system for text categorization</article-title>
          .
          <source>Mach. Learn</source>
          .
          <volume>39</volume>
          ,
          <issue>2</issue>
          /3,
          <fpage>135</fpage>
          -
          <lpage>168</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>R.</given-names>
            <surname>Ghani</surname>
          </string-name>
          ,
          <article-title>Using Error-Correcting Codes for Text Classification</article-title>
          ,
          <source>17th International Conference on Machine Learning</source>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>A.</given-names>
            <surname>Berger</surname>
          </string-name>
          ,
          <article-title>Error-Correcting Output Coding for Text Classification</article-title>
          ,
          <source>In Proceedings of IJCAI-99 Workshop on Machine Learning for Information Filtering</source>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Pujol</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Radeva</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Vitria</surname>
            ,
            <given-names>J. Discriminant ECOC</given-names>
          </string-name>
          :
          <article-title>A heuristic method for application dependent design of error correcting output codes</article-title>
          ,
          <source>IEEE Transactions on PAMI 28 (6)</source>
          ,
          <fpage>1001</fpage>
          -
          <lpage>1007</lpage>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>J. Zhou</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Peng</surname>
            ,
            <given-names>C. Y.</given-names>
          </string-name>
          <string-name>
            <surname>Suen</surname>
          </string-name>
          ,
          <article-title>Data-driven decomposition for multi-class classification</article-title>
          ,
          <source>Pattern Recognition</source>
          ,
          <volume>41</volume>
          <fpage>67</fpage>
          -
          <lpage>76</lpage>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Hatami</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <article-title>Thinned-ECOC ensemble based on sequential code shrinking</article-title>
          .
          <source>Expert Systems with Applications</source>
          .
          <volume>39</volume>
          (
          <year>2012</year>
          )
          <fpage>936</fpage>
          -
          <lpage>947</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Hastie</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Tibshirani</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <source>Classification by pairwise grouping</source>
          ,
          <source>The Annals of Stat</source>
          .
          <volume>26</volume>
          (
          <issue>5</issue>
          ),
          <fpage>451</fpage>
          -
          <lpage>471</lpage>
          (
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Jordan</surname>
            ,
            <given-names>M. I.</given-names>
          </string-name>
          and
          <string-name>
            <given-names>R. A</given-names>
            .
            <surname>Jacobs</surname>
          </string-name>
          (
          <year>1994</year>
          ).
          <article-title>Hierarchical mixtures of experts and the EM algorithm</article-title>
          .
          <source>Neural Computation</source>
          <volume>6</volume>
          (
          <issue>2</issue>
          ),
          <fpage>181</fpage>
          -
          <lpage>214</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14. T. G. Dietterich and
          <string-name>
            <given-names>G.</given-names>
            <surname>Bakiri</surname>
          </string-name>
          .
          <article-title>Solving multiclass learning problems via errorcorrecting output codes</article-title>
          .
          <source>Journal of Arti?cial Intelligence Research</source>
          ,
          <volume>2</volume>
          :
          <fpage>263</fpage>
          -
          <lpage>286</lpage>
          ,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Breiman</surname>
          </string-name>
          ,
          <string-name>
            <surname>Leo</surname>
          </string-name>
          (
          <year>2001</year>
          ). ”Random Forests”.
          <source>Machine Learning</source>
          <volume>45</volume>
          (
          <issue>1</issue>
          ):
          <fpage>5</fpage>
          -
          <lpage>32</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Leo Breiman</surname>
          </string-name>
          (
          <year>1996</year>
          ).
          <article-title>Bagging predictors</article-title>
          .
          <source>Machine Learning</source>
          <volume>24</volume>
          (
          <issue>2</issue>
          ):
          <fpage>123</fpage>
          -
          <lpage>140</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <given-names>Yoav</given-names>
            <surname>Freund</surname>
          </string-name>
          and
          <string-name>
            <given-names>Robert E.</given-names>
            <surname>Schapire</surname>
          </string-name>
          <article-title>A decision-theoretic generalization of on-line learning and an application to boosting</article-title>
          .
          <source>Journal of Computer and System Sciences</source>
          ,
          <volume>55</volume>
          (
          <issue>1</issue>
          ):
          <fpage>119</fpage>
          -
          <lpage>139</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Ho</surname>
          </string-name>
          ,
          <string-name>
            <surname>Tin</surname>
          </string-name>
          (
          <year>1998</year>
          ).
          <article-title>”The Random Subspace Method for Constructing Decision Forests”</article-title>
          .
          <source>IEEE Transactions on Pattern Analysis and Machine Intelligence</source>
          <volume>20</volume>
          (
          <issue>8</issue>
          ):
          <fpage>832</fpage>
          -
          <lpage>844</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Baoli</surname>
            <given-names>Li</given-names>
          </string-name>
          ,
          <article-title>Carl Vogel: Improving Multiclass Text Classification with ErrorCorrecting Output Coding and Sub-class Partitions</article-title>
          .
          <source>Canadian Conference on AI</source>
          <year>2010</year>
          :
          <fpage>4</fpage>
          -
          <lpage>15</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Songbo</surname>
            <given-names>Tan</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gaowei Wu</surname>
          </string-name>
          , Xueqi Cheng:
          <article-title>Enhancing the Performance of Centroid Classifier by ECOC and Model Refinement</article-title>
          .
          <source>ECML/PKDD (2)</source>
          <year>2009</year>
          :
          <fpage>458</fpage>
          -
          <lpage>472</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21. G.
          <article-title>Tsoumakas, I. Katakis, Multi-Label Classification: An Overview</article-title>
          ,
          <source>International Journal of Data Warehousing and Mining</source>
          ,
          <volume>3</volume>
          (
          <issue>3</issue>
          ):
          <fpage>1</fpage>
          -
          <lpage>13</lpage>
          ,
          <year>2007</year>
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Wei</surname>
            <given-names>Bi</given-names>
          </string-name>
          , James T. Kwok:
          <article-title>MultiLabel Classification on Tree-</article-title>
          and
          <string-name>
            <surname>DAG-Structured</surname>
            <given-names>Hierarchies. ICML</given-names>
          </string-name>
          <year>2011</year>
          :
          <fpage>17</fpage>
          -
          <lpage>24</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23. G. Armano,
          <string-name>
            <given-names>C.</given-names>
            <surname>Chira</surname>
          </string-name>
          , and
          <string-name>
            <given-names>N.</given-names>
            <surname>Hatami</surname>
          </string-name>
          ,
          <article-title>Ensemble of Binary Learners for Reliable Text Categorization with a Reject Option</article-title>
          ,
          <string-name>
            <surname>HAIS</surname>
          </string-name>
          <year>2012</year>
          , in press
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Paolo</surname>
            <given-names>Simeone</given-names>
          </string-name>
          , Claudio Marrocco, Francesco Tortorella:
          <article-title>Design of reject rules for ECOC classification systems</article-title>
          .
          <source>Pattern Recognition</source>
          <volume>45</volume>
          (
          <issue>2</issue>
          ):
          <fpage>863</fpage>
          -
          <lpage>875</lpage>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>25. http://www.cs.utk.edu/tmw07/</mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <given-names>A.</given-names>
            <surname>Srivastava</surname>
          </string-name>
          and
          <string-name>
            <given-names>B.</given-names>
            <surname>Zane-Ulman</surname>
          </string-name>
          .
          <article-title>Discovering recurring anomalies in text reports regarding complex space systems</article-title>
          .
          <source>In IEEE Aerospace Conference</source>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>