<!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>Authorship Attribution of E-mail as a Multi-Class Task</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>CLiPS Computational Linguistics Group University of Antwerp</institution>
          ,
          <country country="BE">Belgium</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2011</year>
      </pub-date>
      <abstract>
        <p>In this paper, we describe a multi-class text categorization approach to authorship attribution and test it on sets of e-mail collections. The PAN 2011 competition data consists of e-mails of variable length, written by various candidate authors, with some represented by significantly longer or more e-mails than others. Rather than construct a classifier for each separate author to discriminate it from the others (i.e. binary classification), we adopt a multi-class scheme where all authorship classes are learned simultaneously. We explore the effect of the selection of feature types and of the C parameter in the SVMmulticlass learning algorithm. Variable-length lexical features showed promising results, nevertheless our authorship attribution approach only scored a mid position amongst the other competitors, for the SMALL as well as the LARGE test sets.</p>
      </abstract>
      <kwd-group>
        <kwd>authorship attribution</kwd>
        <kwd>text categorization</kwd>
        <kwd>SVM multi-class</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Authorship attribution aims at identifying the author of an unseen document given a set
of documents of known authorship (i.e. positive and negative instances). The list of
candidate authors is typically closed and restricted to the most likely ones (given external
circumstances such as time, age, school, forum, etc.). The PAN 2011 (5th International
Workshop on Uncovering Plagiarism, Authorship, and Social Software Misuse)
competition data set – based on the publicly available Enron E-Mail Corpus, a corpus of
in-company e-mails – is no exception.</p>
      <p>
        The art of authorship attribution is to find the balance between high-scoring
features and discriminative techniques on the one hand and scalability on the other [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
Applying authorship attribution on a large scale (e.g. in e-mail collections) requires an
approach that is robust to large author set sizes, varying data sizes, long and short texts,
and a variety of topics and genres [
        <xref ref-type="bibr" rid="ref11 ref14">11,14</xref>
        ]. The PAN 2011 competition data set is packed
with these challenges.
      </p>
      <p>As far as the learning phase is concerned, it is common practice in authorship
attribution to combine several binary classifiers – often one-versus-all or one-versus-one
learners – to solve a problem that is in fact multi-class. Actual multi-class learning is
often avoided, partly as a result of the dominance of (binary) Support Vector Machines
(SVMs) in the field. This paper applies SVMmulticlass in order to train a single model
that distinguishes between all authorship classes simultaneously.</p>
      <p>In this paper, the main focus is on authorship attribution in test scenarios with
intraining authors only. After the development and evaluation of our authorship attribution
system, we submitted test runs for the LARGE and SMALL test scenarios. We will briefly
describe our attempts to detect out-of-training authors (for the LARGE+ and SMALL+
scenarios), but preliminary results did not support a test run submission. We will first
elaborate on the data set characteristics and preprocessing steps taken and then describe
the specifics of our approach. After that, we go into detail on the results obtained during
development and on the parameters and performance of the system selected for test run
submission.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Data set characteristics and preprocessing</title>
      <p>
        The training and development data made available for the PAN 2011 competition are
challenging in a number of respects. First of all, working with short texts poses a
specific challenge in that it requires reliable and robust representation as well as robust
learning with limited data. Some studies have shown promising results with short texts
of about 500 characters [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] or 500 words [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], while others suggest 2,500 words as
a minimum requirement [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The PAN 2011 data set, with an average e-mail length of
about sixty words does not come close to those indications. Another aspect is the
number of candidate authors – 26 in the SMALL set and 72 in the LARGE set. Author set size
has received only limited attention so far, but nevertheless has a significant impact on
classification performance as well as on the features in the attribution model [
        <xref ref-type="bibr" rid="ref11 ref14">11,14</xref>
        ].
A last aspect are skewed class distributions, with some classes being represented by
10,000 words or 200 e-mails and others by only 500 words or 10 e-mails, potentially
leading to an advantage in learning for the former classes.
      </p>
      <p>Only limited preprocessing of the data was performed. After tokenization, we
removed all information between &lt;omni&gt; and &lt;/omni&gt; tags because it contains
softwarespecific tags, calendar entries, e-mail addresses, and phone numbers. Although we
assume this information to be irrelevant for authorial style, removing the information did
cause us to lose training data for two of the authors: x10114697001411515 and 339173
(present in the SMALL and LARGE data sets).
3</p>
    </sec>
    <sec id="sec-3">
      <title>Authorship Features and Classification</title>
      <p>
        We adopt a standard text categorization approach [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], previously successful in topic
detection, authorship attribution [
        <xref ref-type="bibr" rid="ref14 ref17 ref6">6,14,17</xref>
        ], and gender prediction [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. We experimented
with four types of features during development:
– CHR or character n-grams – successions of n characters including spaces and
punctuation marks – have proven useful for language identification [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], topic detection
[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and style-based text categorization (e.g. authorship attribution) [
        <xref ref-type="bibr" rid="ref5 ref9">5,9</xref>
        ]. Taking into
consideration the limited text length and high number of candidate authors in the
competitiondata, character n-grams are particularly interesting since they have shown
robustness to these effects [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. One of the downsides of using character n-grams is
their lack of interpretability. We tested several values for n: 2, 3, 4, and 5 and a
combination of all (cf. variable-length n-grams).
– LEX or n-grams of words are tested in our experiments without limitation. In
crosstopic authorship attribution, we would normally avoid topic-specific words as they
affect performance when transferred to other topics. However, the Enron E-mail
Corpus is a very homogeneous data set topic-wise, so we retained the full list.
– DISC represents a set of 124 preselected discourse features, such as while, whereas,
however, nevertheless and on the contrary. Argamon [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] used a set of functional
lexical features to represent the semantic function of each clause in a sentence and
text (e.g. conjunction, elaboration, extension). The MOD feature type represents a set
of 33 preselected modal verbs, such as can, could, must, might, should, may, shall,
would and their negated counterparts.
      </p>
      <p>
        The relative frequency of each feature (normalized for text length) in every e-mail
is calculated and represented numerically. We restricted the number of features in CHR
and LEX to a thousand by applying chi-square as a feature selection metric and select
the top-n. This metric has been used in several studies in text categorization in general
[
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], and in authorship attribution specifically [
        <xref ref-type="bibr" rid="ref13 ref5">5,13</xref>
        ].
      </p>
      <p>
        We experimented with SVMmulticlass, a multi-class SVM algorithm developed by
Joachims [
        <xref ref-type="bibr" rid="ref18 ref7">7,18</xref>
        ] for learning and classification. SVMs are the method of choice in many
studies in text categorization, and in authorship attribution in particular [
        <xref ref-type="bibr" rid="ref1 ref10">1,10</xref>
        ].
Examining the various SVM parameters was not the scope of our work, but we did explore
the effect of the soft margin parameter C, a parameter that needs to be re-established
for every data set. The other parameters are kept at their default value. According to
Joachims [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], the C parameter “is a parameter that allows one to trade off training error
vs. model complexity. A small value for C will increase the number of training errors,
while a large C will lead to a behavior similar to that of a hard-margin SVM." [p. 40].
4
      </p>
    </sec>
    <sec id="sec-4">
      <title>Experimental results and evaluation</title>
      <p>During the development phase, we trained an authorship attribution system on all
available training material and tested it on the validation set. Table 1 presents the results of
a series of experiments, exploring the effect of the type of feature on the overall
performance of the system on the training sets of the competition. We used the evaluation
metrics as used for test run evaluation: micro- and macro-averaged precision, recall,
and F1 The result tables below are restricted to F1 scores.</p>
      <p>Results on the SMALL set (cf. Table 1) show that the overall performance of
character n-grams is higher than that of lexical features. Only when a combination of lexical
features of various lengths is used (in LEX), lexical features outperform character
ngrams. Modality and discourse markers fail to score well, and combining character with
lexical features does not increase performance either. Highest performance is obtained
by character trigrams, a feature type we will use for the test run. In the LARGE set,
character n-grams are slightly outperformed by word unigrams, and even more so by a
combination of variable-length lexical features (in LEX). For both SMALL and LARGE,
we use the top and second-best scoring feature type for the competition test run.</p>
      <p>In these results, the C parameter was set relatively high, at 5,000. We explored the
effect of using lower C values, but in most cases, the difference with the original results
was not significant, so we decided to stick to C=5,000 for the test run.</p>
      <p>For the SMALL+ and LARGE+ cases in the competition data, out-of-training authors
were included in the test set. Detecting out-of-training authors either requires negative
instances labelled ‘NoneOfTheAbove’ in training or a learning algorithm that is able to
make a ‘NoneOfTheAbove’ decision. Since we apply SVMmulticlass for hard
classification, we tested two naive strategies to create artificial negative instances on the basis
of the positive instances we had already created for the SMALL and LARGE cases. A
first strategy (‘class average’) was to add for each in-training class an instance
representing the average values for all positive instances of that class (and for each feature).
A second strategy (’negative class average’) was to add for each in-training class an
instance representing the average values for all negative instances of that class. Results
shown in Table 2 indicate that the negative class average strategy does indeed
influence some decisions, but we decided against submitting a test run for the cases with
out-of-training authors.</p>
      <p>For the test run, we first merged the original training data with the validation set
released for development into a larger set of e-mails to be used for training, thus
significantly increasing the training set size. Table 3 shows results of both test runs for SMALL
and LARGE. In both cases, performance on the competition test data was very much in
line with results on the validation set, which is a good indication of the classifier’s
robustness and reliability. However, while we expected character trigrams to score best
for the SMALL set, they were outperformed by variable-length lexical features. These
last also perform best in the LARGE set. We ranked 6th and 9th (out of 17
competitors) for SMALL and 7th and 9th (out of 18) for LARGE. The winning submission for
SMALL, by Kourtis et al., scored 47.5% Macro F1 and 71.7% Micro F1. The winning
submission for LARGE, by Tanguy et al. scored 52.0% Macro F1 and 65.8% Micro F1.</p>
      <p>Looking at these variable-length lexical features, we see – apart from dates and
locations – expressions of politeness (thanks, regards, you soon), e-mail specifics (attached
is), pronouns, argumentation elements (for he), company names (Reliant, Dominion,
Enpower), and domain-specific words (pipeline). Although they are better interpretable
than character n-grams, the usefulness of these lexical features is not intuitively clear.
In this paper, we described our approach to the authorship attribution task as designed
for the PAN 2011 competition. The data set was particularly challenging as it consists
of short e-mails written by 26 (for the SMALL set) and 72 authors (for the LARGE set).
We took a commonly used text categorization approach and experimented with various
types of features. Rather than redefine a multi-class task to several binary tasks, as is
often done in the field, we applied a multi-class SVM to ensure all authorship classes
are learned simultaneously.</p>
      <p>During the development phase, we explored the effect of the feature types and the C
parameter in SVMmulticlass. For the test run, we selected lexical and character n-gram
features. We also experimented with the data sets where out-of-training classes needed
to be identified as such, but decided against submission of a test run for those cases.
The actual test run showed that lexical features scored as expected, but this did not lead
to a very high ranking.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgements</title>
      <p>The research presented in this paper is funded through the IWT project AMiCA:
Automatic Monitoring for Cyberspace Applications.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Argamon</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Whitelaw</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chase</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dawhle</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hota</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garg</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Levitan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Stylistic text classification using functional lexical features</article-title>
          .
          <source>Journal of the American Society of Information Science and Technology</source>
          <volume>58</volume>
          (
          <issue>6</issue>
          ),
          <fpage>802</fpage>
          -
          <lpage>822</lpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Cavnar</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trenkle</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>N-gram-based text categorization</article-title>
          .
          <source>In: Proceedings of the 3rd Annual Symposium on Document Analysis and Information Retrieval</source>
          . pp.
          <fpage>161</fpage>
          -
          <lpage>175</lpage>
          . Las Negas,
          <string-name>
            <surname>NV</surname>
          </string-name>
          (
          <year>1994</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Clement</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sharp</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Ngram and Bayesian classification of documents for topic and authorship</article-title>
          .
          <source>Literary and Linguistic Computing</source>
          <volume>18</volume>
          (
          <issue>4</issue>
          ),
          <fpage>423</fpage>
          -
          <lpage>447</lpage>
          (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Eder</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Does size matter? Authorship attribution, small samples, big problem</article-title>
          . In: Pierrazo, E.e.a. (ed.)
          <source>Proceedings of Digital Humanities</source>
          <year>2010</year>
          . pp.
          <fpage>132</fpage>
          -
          <lpage>135</lpage>
          .
          <article-title>Centre for Computing in the Humanities, King's College London</article-title>
          , London, UK (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Grieve</surname>
          </string-name>
          , J.:
          <article-title>Quantitative authorship attribution: An evaluation of techniques</article-title>
          .
          <source>Literary and Linguistic Computing</source>
          <volume>22</volume>
          (
          <issue>3</issue>
          ),
          <fpage>251</fpage>
          -
          <lpage>270</lpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Houvardas</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
          </string-name>
          , E.:
          <article-title>N-gram feature selection for authorship identification</article-title>
          .
          <source>In: Proceedings of Artificial Intelligence: Methodology, Systems, and Applications (AIMSA)</source>
          . pp.
          <fpage>77</fpage>
          -
          <lpage>86</lpage>
          . Heidelberg: Springer Verlag, Varna, Bulgaria (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Joachims</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Making large-scale SVM learning practical</article-title>
          . In: Schölkopf,
          <string-name>
            <given-names>B.</given-names>
            ,
            <surname>Burges</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Smola</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . (eds.)
          <article-title>Advances in Kernel Methods - Support Vector Learning</article-title>
          . MIT Press (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Joachims</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Learning to Classify Text Using Support Vector Machines - Methods, Theory, and Algorithms</article-title>
          . Kluwer/Springer (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Keselj</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Peng</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cercone</surname>
          </string-name>
          , N.,
          <string-name>
            <surname>Thomas</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>N-gram-based author profiles for authorship attribution</article-title>
          .
          <source>In: Proceedings of the 6th Conference of the Pacific Association for Computational Linguistics</source>
          . pp.
          <fpage>255</fpage>
          -
          <lpage>264</lpage>
          . Halifax,
          <string-name>
            <surname>Canada</surname>
          </string-name>
          (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Argamon</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shimoni</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Automatically categorizing written texts by author gender</article-title>
          .
          <source>Literary and Linguistic Computing</source>
          <volume>17</volume>
          (
          <issue>4</issue>
          ),
          <fpage>401</fpage>
          -
          <lpage>412</lpage>
          (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schler</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Argamon</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Authorship attribution in the wild</article-title>
          .
          <source>Language Resources and Evaluation</source>
          ,
          <source>Special Issue on Plagiarism and Authorship Analysis</source>
          <volume>45</volume>
          (
          <issue>1</issue>
          ),
          <fpage>83</fpage>
          -
          <lpage>94</lpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schler</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bonchek-Dokow</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          :
          <article-title>Measuring differentiability: Unmasking pseudonymous authors</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>8</volume>
          ,
          <fpage>1261</fpage>
          -
          <lpage>1276</lpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Luyckx</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Scalability issues in authorship attribution</article-title>
          . Brussels, Belgium: University Press Antwerp (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Luyckx</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.:</given-names>
          </string-name>
          <article-title>The effect of author set size and data size in authorship attribution</article-title>
          .
          <source>Literary and Linguistic Computing</source>
          <volume>26</volume>
          (
          <issue>1</issue>
          ),
          <fpage>35</fpage>
          -
          <lpage>55</lpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Sanderson</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guenter</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Short text authorship attribution via sequence kernels, Markov chains and author unmasking: An investigation</article-title>
          .
          <source>In: Proceedings of the 2006 Conference on Empirical Methods in Natural Language Processing</source>
          . pp.
          <fpage>482</fpage>
          -
          <lpage>491</lpage>
          . Syndney,
          <string-name>
            <surname>Australia</surname>
          </string-name>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Sebastiani</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <article-title>: Machine learning in automated text categorization</article-title>
          .
          <source>Association for Computing Machinery Computing Surveys</source>
          <volume>34</volume>
          (
          <issue>1</issue>
          ),
          <fpage>1</fpage>
          -
          <lpage>47</lpage>
          (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fakotakis</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kokkinakis</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>Automatic text categorization in terms of genre and author</article-title>
          .
          <source>Computational Linguistics</source>
          <volume>26</volume>
          (
          <issue>4</issue>
          ),
          <fpage>461</fpage>
          -
          <lpage>485</lpage>
          (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Tsochantaridis</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joachims</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hofmann</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Altun</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Large margin methods for structured and interdependent output variables</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>6</volume>
          ,
          <fpage>1453</fpage>
          -
          <lpage>1484</lpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pedersen</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>A comparative study on feature selection in text categorization</article-title>
          . In: Fisher, D. (ed.)
          <source>Proceedings of the Fourteenth International Conference on Machine Learning (ICML)</source>
          . pp.
          <fpage>412</fpage>
          -
          <lpage>420</lpage>
          . San Francisco, CA, USA: Morgan Kaufmann, Nashville, Tennessee, USA (
          <year>1997</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>