<!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 in Fan-Fictional Texts given variable length Character and Word N-Grams</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Department of Psychology</institution>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>University of Copenhagen</institution>
          ,
          <addr-line>UCPH</addr-line>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <abstract>
        <p>The task of authorship attribution (AA) requires text features to be represented according to rigorous experiments. In the current study, we aimed to develop three different n-gram models to identify authors of various fanfictional texts. Each of the three models was developed as a variable-length ngram model. We implemented both a standard character n-gram model (2 ¡ 5 gram), a distorted character n-gram model (1 ¡ 3 gram) and a word n-gram model (1¡3 gram) to not only capture the syntactic features, but also the lexical features and content of a given text. Token weighting was performed through term-frequency inverse-document frequency (tf-idf ) computation. For each of the three models, we implemented a linear Support Vector Machine (SVM) classifier, and in the end applied a soft voting procedure to take the average of the classifiers' results. Results showed, that among the three individual models, the standard character n-gram model performed best. However, the combination of all three classifier's predictions yielded the best results overall. To enhance computational efficiency, we computed dimensionality reduction using Singular Value Decomposition (SVD) before fitting the SVMs with training data. With a run time of approximately 180 seconds for all 20 problems, we achieved a macro F1-score of 70.5% for the development corpus and a F1-score of 69% for the competition's test corpus, which significantly outperformed the PAN 2019 baseline classifier. Thus, we have shown that it is not a single feature representation that will yield accurate classifications, but rather the combination of various text representations that will depict an author's writing style most thoroughly.</p>
      </abstract>
      <kwd-group>
        <kwd>authorship attribution</kwd>
        <kwd>n-grams</kwd>
        <kwd>tf-idf</kwd>
        <kwd>Support Vector Machine</kwd>
        <kwd>Singular Value Decomposition</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Authorship Attribution (AA) is the task of determining the author of a text from a set
of candidates. It can be a daunting exercise for both humans and machines, if one
does not know which parts of a document represent an author’s writing style.
However, if features are represented according to rigorous experiments (e.g., through the
use of regular expressions and hyper parameter optimization) and adequately
capture the syntactic use of language, it may well support automated systems which aim
to recognize a text’s author. In the context of machine learning, AA can be regarded
as a multi-class, single-label text classification problem [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Its applications include
plagiarism detection and forensic linguistics as well as research in literature [
        <xref ref-type="bibr" rid="ref11 ref4">4,11</xref>
        ].
For comprehensive surveys of this topic see [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] and [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
      </p>
      <p>
        In this working notes paper, we describe our approach to the cross-domain AA
task of the PAN 2019 competition, which comprised of the identification of the
authors of fan fiction [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. Fan fiction describes literary works written by fans based on a
previous, original literary work (also called the fandom). Fan fiction usually includes
the characters from the original, it does, however, change or reinterpret other parts
of the story, such as settings or endings, or explores a less prominent character in
more detail [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. In recent years, fan fiction has generated some controversy
concerning the violation of intellectual rights [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. In this years PAN competition, one of the
tasks constitutes of 20 author identification problems in English, French, Italian and
Spanish (5 for each language). Each problem featured 9 candidate authors, for each
of which 7 known texts were provided. The term cross-domain in this particular
context refers to the fact that the texts with known authorship were from different
fandoms, whereas the unknown texts were in a single and different fandom [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. While
PAN 2018 featured a closed set of candidate authors, this years task presents an open
set problem: The real author of some tests cases are unknown.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Method</title>
      <sec id="sec-2-1">
        <title>2.1 Feature Representation</title>
        <p>
          Similarly to last year’s best performing team [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ], we deployed three different n-gram
models to represent the fan-fictional texts. We implemented both character and word
n-gram models. All models are variable length n-gram models as, according to recent
experiments, variable length n-gram models both represent an author’s style more
adequately and yield higher precision and recall scores than fixed n-gram models
which do not capture the full scope of syntactic and lexical features [
          <xref ref-type="bibr" rid="ref2 ref3 ref6">2,3,6</xref>
          ].
        </p>
        <p>
          The first model we implemented, which was a standard character n-gram model,
consisted of bigram, trigram, four-gram and five-gram token representations (i.e.,
2 ¡ 5 grams). Hyperparameter tuning experiments revealed that, 2 ¡ 5 gram
models yield the best results and represent an author’s text more thoroughly than any
other additive lower or higher n-gram text representations. However, for this
standard character model we also computed an additional vector of unigram
punctuation marks, which we then concatenated with all other character n-gram
representations after pre-processing computation. We kept punctuation marks as we
considered them important features for an author’s use of language. The use, and in
particular the frequency, of punctuation marks in a given text, reveals crucial information
about an author’s writing style [
          <xref ref-type="bibr" rid="ref1 ref4">1,4</xref>
          ]. Furthermore, we converted each non-zero digit
into a 0, since it is not a digit that represents a unique writing style, but rather how
numbers are depicted in a given text (e.g., 1k vs. 1000; 1, 000 vs. 1.000). The latter step
was implemented for all three models. This particular model primarily captured
syntactic and morphological features.
“Yes,” she says, “the needs of the many...” “***,” *** ****, “*** ***** ** *** ****...”
“Yes,” you agree. “ “***,” *** *****. “** ***** ** *** ***** ***** **
It would be the worst thing in my life, but ** ****, *** ** ***** ** ***** **. **** ** * *****’*
it would be worth it. Even if I weren’t able **** ** ****** **, *** ********
to choose it, for whatever
The second model, which may be deemed a distorted character model, consisted of
unigram, bigram and trigram token representations (i.e., 1 ¡ 3 grams). This model
particularly draws attention to punctuation marks, spacing, diacritics, and all other
non-alphabetical characters, including numbers [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. We replaced all non-diacritics
through an asterisk symbol (*) to yield a uniform representation of dispensable
characters and hence distorts the text (see Table 1). We deployed this model to account for
an author’s orthography and punctuation that is not necessarily dependent on other
aspects of language use. We suspected that punctuation and orthography might well
represent individual features of language. To provide an example, an author might
have preferences for ellipses, or might leave out accents in Spanish or French texts.
        </p>
        <p>Lastly, we computed a variable-length word n-gram model, which consisted of
unigram, bigram and trigram token representations (i.e., 1 ¡ 3 grams). As a word
ngram model, contrary to a character n-gram model, rather captures the vocabulary
and register than morhological and syntactic features and thus draws attention to
the content, we removed punctuation marks and special characters as such tokens
do not reveal decisive information about an author’s choice of words. We only kept
alphanumerical characters.</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2 Text Preprocessing</title>
        <p>To summarize, for all three n-gram models, we computed the following text
preprocessing steps:
– Each non-zero digit was represented by a 0 digit place-holder. This step was
computed, since different digits neither reveal crucial information about the
vocabulary and register nor about the syntax of a given text. What’s important is
whether a digit or number appeared in a text and how frequently it was used.
Furthermore, to gather information about syntactic features, it is indispensable
to know how numerical characters were depicted by an author (see section on
standard character n-gram model).
– Each hyperlink, that appeared in a given text, was replaced by an @ sign. We
computed the latter step, as we did not deem hyperlinks crucial features for an
author’s use of language. What’s decisive is whether and how frequently
hyperlinks were used within a given text but not the actual hyperlink that was cited.
– For each string, new lines denoted as either "\n" or "\t" were replaced by the
empty string.
– We did not perform text lower-casing as we suppose, that the usage (and in
particular its corresponding frequency) of upper-case letters (e.g., nouns, proper
nouns, entities, named entities) reveal important information about the writing
style of an author.
– We did not remove stop words as we believe, that function words (e.g., "the",
"a", "have") - which, in the vast majority of documents, are the most frequently
used words - reveal decisive insights into an author’s use of language. However,
we still assign lower weights to terms that appear highly frequently across the
entire corpus.
– Weighting for both character and word n-gram models was performed through
term-frequency inverse-document-frequency (tf-idf) computation to assign lower
weights to words, which appear more frequently across the entire corpus, and
higher weights to words which are found only in specific documents and thus
reveal crucial information about a text. To prevent a division by zero, we
computed smooth inverse document frequency instead of normal idf. Smoothing
idf means adding a 1 to the denominator within the logarithmic fraction: log ³ 1Ånt .
N ´
– To decrease dimensionality, enhance computational efficiency and reduce time
complexity, we computed Singular Value Decomposition (SVD) for each of the
three variable length n-gram models. The final number of dimensions chosen
(d Æ 63) was dependent on the number of samples per problem. As each
problem consisted of 63 texts and d cannot be higher than the number of samples in
SVD, we deemed this number as an appropriate size for d to capture the most
variance.
2.3</p>
      </sec>
      <sec id="sec-2-3">
        <title>Models</title>
        <p>
          For each of the three models (standard character, distorted character and word
ngrams) we developed linear, multi-class Support Vector Machines (SVM). In so doing,
we made use of Python’s Sklearn library [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. Each classifier was cross-validated three
times.
        </p>
        <p>Results of the three individual SVMs were combined in a soft-voting manner: We
simply averaged the probabilities for each candidate author across the three models.
Initial experiments revealed that a pure averaging yields better results than feeding
the probabilities into a new classifier. Hence, we did not deploy a fourth model (see
Figure 1).</p>
        <p>The soft voting computation was performed as follows:
arg max</p>
        <p>Pk
iÆ1 pi
k
(1)
where pi is the probabilities vector for each individual model and k Æ 3
– Firstly, the predicted probabilities obtained by each individual classifier were
concatenated into a n £ d matrix, where n is the number of classifiers (n Æ 3)
and d denotes the number of classes / candidates.
– Secondly, for each text, we computed the average among the three 1£d
probability vectors, which, according to soft voting, yields a more accurate probabilities
depiction than individual probability distributions.
– Lastly, for each text, a "new" average probability distribution was computed,
which served as the probabilities vector for the final prediction.</p>
        <p>
          Our classifiers were required to consider that a test text may have been written by an
unknown author. To enhance this algorithmic decision-making process, our models
classified a text’s author as unknown, if the difference between the model’s highest
and second highest probabilities was below 0.1, or if the highest probability was
below 0.25. The latter served as an additional feature (compared to the PAN 2019
baseline model), we regarded as crucial to include in our algorithm. The hyper
parameters of the final analysis pipeline are summarized in Table 2. Our final model for the
PAN 2019 shared task was deployed on a virtual machine using the TIRA architecture
[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Results</title>
      <p>No changes were made to the provided baseline classifier; as such it utilized only
character trigrams, a minimum document frequency of 5 (character trigrams that
appeared less frequently than five times across the corpus were not included in the
vocabulary), no text lower casing and no weighting of the bag of words (only using
a count-based approach), a one-vs-rest multi-class strategy. It classified documents
as unknown, if and only if, the highest and second highest predictions were less than
0.1 apart.</p>
      <p>Results showed that the standard character n-gram model performed generally
better than the variable length word n-gram or distorted character n-gram model.
However, in the vast majority of runs, the soft voting classifier resulted in a higher
score than any of the individual models (see Table 2). According to the mean scores
obtained for the three individual models, the word n-gram model showed the worst
performance. This is in line with the assumption, that authorship manifests itself in
style and thus a text’s syntax and morphology rather than in a text’s vocabulary. Word
n-grams primarily encode lexical information about a document, whereas standard
character n-grams and diacritic characters n-grams rather capture the syntactic and
morphological characteristics of the text, which further reveal information about an
author’s writing style.</p>
      <p>SVD implementation reduced our algorithm’s computational time from approx.
30 minutes to just 180 seconds. In the final evaluation, we, unfortunately, were
unable to deploy SVD due to time constraints, which is why the run time for our PAN
2019 model is 30 minutes and not 180 seconds. The macro F1-score (approx. 70%),
however, did not change as a result of dimensionality reduction.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Discussion</title>
      <p>Results displayed that the soft voting procedure notably outperformed the individual
classifiers. Intuitively, one might assume that averaging over classifiers with lower
macro F1-scores might yield a worse and not a better performance. However, we did
not perform averaging across the F1-scores, but across the predicted probabilities
yˆi obtained for each classifier. This served as an additive factor as all three feature
representations were combined into one thorough representation.</p>
      <p>One limitation to our approach might have been that we did not apply a weighted
voting procedure. This could and shall be addressed in future research. Moreover, it
might be interesting to consider a hard instead of a soft voting procedure. We further
encourage others to deploy different machine learning classifiers, such as
Multinomial Logistic Regression, Multinomial Naive Bayes or Neural Networks. Additionally,
further experiments might compute Principal Component Analysis (PCA) instead of
Singular Value Decomposition (SVD) to reduce dimensionality and enhance
computational efficiency.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusion</title>
      <p>This paper presented our soft voting ensemble classifier for cross-domain
authorship attribution. We combined a standard character n-gram model, a distorted
character n-gram model and a word n-gram model to achieve more accurate predictions
than the individual models themselves. All three models represented the texts as
variable length n-grams, which were weighted by term frequency-inverse document
frequency (tf-idf ). Our algorithm can be perceived as an enhancement of the PAN
2019 baseline system. One may infer from the results we obtained, that authorship
attribution models generally benefit from the inclusion of different representations
of text. It is not a single feature representation that will yield accurate classifications,
but rather the combination of various document representations that will depict an
author’s writing style.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Can</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Authorship attribution using principal component analysis and competitive neural networks</article-title>
          .
          <source>Mathematical and Computational Applications</source>
          <volume>19</volume>
          (
          <issue>1</issue>
          ),
          <fpage>21</fpage>
          -
          <lpage>36</lpage>
          (
          <year>2014</year>
          ). https://doi.org/https://doi.org/10.3390/mca19010021
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Custódio</surname>
            ,
            <given-names>J.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Paraboni</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>EACH-USP ensemble cross-domain authorship attribution</article-title>
          .
          <source>In: Proceedings of the Ninth International Conference of the CLEF Association</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Daneshvar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Inkpen</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Gender Identification in Twitter using N-grams and LSA Notebook for PAN at CLEF 2018</article-title>
          .
          <source>In: Proceedings of the Ninth International Conference of the CLEF Association</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <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: International conference on artificial intelligence: Methodology, systems, and applications</source>
          . pp.
          <fpage>77</fpage>
          -
          <lpage>86</lpage>
          . Springer, Berlin, Heidelberg (
          <year>2006</year>
          ). https://doi.org/10.1007/11861461_
          <fpage>10</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schlier</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Argamon</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Computational methods in authorship attribution</article-title>
          .
          <source>Journal of the American Society for Information Science and Technology</source>
          <volume>60</volume>
          (
          <issue>1</issue>
          ),
          <fpage>9</fpage>
          -
          <lpage>26</lpage>
          (
          <year>2009</year>
          ). https://doi.org/10.1002/asi.20961
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Markov</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sidorov</surname>
          </string-name>
          , G.:
          <article-title>Improving cross-topic authorship attribution: The role of pre-processing</article-title>
          .
          <source>In: International Conference on Computational Linguistics and Intelligent Text Processing</source>
          . pp.
          <fpage>289</fpage>
          -
          <lpage>302</lpage>
          . Springer, Cham (
          <year>2017</year>
          ). https://doi.org/10.1007/978-3-
          <fpage>319</fpage>
          -77116-8_
          <fpage>21</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Milli</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bamman</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          : Beyond Canonical Texts:
          <article-title>A Computational Analysis of Fanfiction</article-title>
          .
          <source>In: Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing</source>
          . pp.
          <fpage>2048</fpage>
          -
          <lpage>2053</lpage>
          (
          <year>2016</year>
          ). https://doi.org/10.18653/v1/d16-
          <fpage>1218</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8. PAN: PAN @ CLEF 2019:
          <article-title>Cross-domain Authorship Attribution (</article-title>
          <year>2019</year>
          ), https://pan. webis.de/clef19/pan19-web/author-identification.html
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Pedregosa</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Varoquaux</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gramfort</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Thirion</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Michel</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grisel</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Blondel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Prettenhofer</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weiss</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vanderplas</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cournapeau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dubourg</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Passos</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Brucher</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Perrot</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duchesnay</surname>
          </string-name>
          , Ã.:
          <article-title>Scikit-learn: Machine Learning in Python</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          <volume>12</volume>
          ,
          <fpage>2825</fpage>
          -
          <lpage>2830</lpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gollub</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wiegmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>TIRA Integrated Research Architecture</article-title>
          . In: Ferro,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <surname>C</surname>
          </string-name>
          . (eds.)
          <article-title>Information Retrieval Evaluation in a Changing World - Lessons Learned from 20 Years of</article-title>
          CLEF. Springer (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Sapkota</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bethard</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Solorio</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Not All Character N-grams Are Created Equal: A Study in Authorship Attribution</article-title>
          . In:
          <article-title>Proceedings of the 2015 conference of the North American chapter of the association for computational linguistics: Human language technologies</article-title>
          . pp.
          <fpage>93</fpage>
          -
          <lpage>102</lpage>
          .
          <article-title>Association for Computational Linguistics (ACL) (</article-title>
          <year>2015</year>
          ). https://doi.org/10.3115/v1/n15-
          <fpage>1010</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Stamatatos</surname>
          </string-name>
          , E.:
          <article-title>A Survey of Modern Authorship Attribution Methods</article-title>
          .
          <source>Journal of the American Society for information Science and Technology</source>
          <volume>60</volume>
          (
          <issue>3</issue>
          ),
          <fpage>538</fpage>
          -
          <lpage>556</lpage>
          (
          <year>2009</year>
          ). https://doi.org/https://doi.org/10.1002/asi.21001
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>