<!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>Style Breach Detection with Neural Sentence Embeddings</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kamil Safin</string-name>
          <email>n@ap-team.ru</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rita Kuznetsova</string-name>
          <email>kuznetsova@ap-team.ru</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Antiplagiat CJSC, Moscow Institute of Physics and Technology</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2017</year>
      </pub-date>
      <abstract>
        <p>The paper investigates method for the style breach detection task. We developed a method based on mapping sentences into high dimensional vector space. Each sentence vector depends on the previous and next sentence vectors. As main architecture for this mapping we use the pre-trained encoder-decoder model. Then we use these vectors for constructing an author style function and detecting outliers. Method was tested on the PAN-2017 collection for the style breach detection task.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Developing approach for identifying different authors within a single document has
been an open problem at the natural language processing. There were several tasks
related to this problem in PAN competition:
1. Intrinsic plagiarism detection problem [
        <xref ref-type="bibr" rid="ref10 ref14 ref7">10,14,7</xref>
        ] — given a suspicious document
that there exists one main author who wrote at least 70% of the text. Up to the
other 30% may be written by other authors. The task is to determine whether the
document is written by a single author or contains fragments by another authors.
      </p>
      <p>
        Unlike external plagiarism problem, the reference collection is unknown [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ].
2. Author diarization problem [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] — given the document, that written by n authors,
no main author is given. The task is to determine exactly n authors in the document,
where the number n can be known or unknown.
      </p>
      <p>
        The most algorithm’s work is based on the following scheme:
1. divide a text into blocks according to the segmentation scheme (e.g. sentences, n
grams, overlapping blocks),
2. map each block to feature space (e.g. n-gram frequency [
        <xref ref-type="bibr" rid="ref1 ref12">1,12</xref>
        ], punctuation,
partof-speech tags count [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]) and combine features to an author style function
(character 3 -gram frequencies, n -gram classes (i.e. the inverted frequencies), normalized
word frequency class),
3. find critical values in the author style function to detect plagiarized blocks. The
author diarization algorithms [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] use segmentation of classifier statistics if the number
of authors is known and the clustering approach if the the number of authors is
unknown.
      </p>
      <p>
        PAN -2017 [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] competition provided modified problem statement — style breach
detection [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. Given a document, determine whether it is multi-authored, and if yes, find the
borders where authors switch. For this task we proposed the approach based on neural
phrase embeddings. First, we split a document into sentences and map each sentences
in high dimensional vector space using pretrained encoder-decoder model named
skipthoughts model from [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Each sentence vector depends on the sentence vector before
and after it. After that, we construct the similarity matrix between all sentences in
document and detect outliers.
      </p>
      <p>
        The quality of the model was measured by W indowDif f [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] and W inP; W inR; W inF
[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] metrics. All experiments were carried out on TIRA [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Style Breach Detection</title>
      <p>Denote D the collection of text documents. Each document d 2 D is written by
unknown number of authors. The task is to find borders where authors switch. All
documents may contain zero up to arbitrarily many switches. Thereby switches of authorship
may only occur at the end of sentences, i.e. not within.</p>
      <p>We formulate style breach detection problem as finding sentences-outliers problem.
Text document d 2 D consists of sentences: d = [iN=1si, where N — number of
sentences in text. Each of sentences si we vectorize, using pre-trained skip-thoughts
model: si ! si. Then, statistic for sentences stat(si) is built, and the problem is to find
sentences, which statistic is bigger than statistic of other sentences, in other words, the
goal is to find sentence vectors, which statistic is exceeded the threshold:
where b(i; j) represents the number of boundaries between positions i and j in
the text and N represents the number of sentences in the text, ref and hyp are
reference and hypothetical segmentations.
– a more recent adaption of WindowDiff metric is WinPR metric. It enhances it by
computing the common information retrieval measures precision (WinP) and recall
(WinR) and thus allows to give a more detailed, qualitative statement about the
prediction.</p>
      <p>T rue P ositives = T P =</p>
      <p>min(Ri;i+k; Ci;i+k);
N
X
where R and C represent the number of boundaries from the reference and
computed segmentations, respectively, in the ith window, up to a maximum of k; N is
the number of content units and k represents the window size.</p>
      <sec id="sec-2-1">
        <title>And WinP, WinR, WinF are computed as:</title>
        <p>W inF =</p>
        <p>W inP =</p>
        <p>T P
T P + F P</p>
        <p>;
W inR =</p>
        <p>T P</p>
        <p>;</p>
        <p>T P + F N
2 W inP W inR</p>
        <p>W inP + W inR
3.2</p>
        <p>
          Feature construction
The raw text document d is splitted into sentences si using standart NLTK’s sentence
tokenizer [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. Each sentence is vectorized by pre-trained skip-thoughts model1.
Skipthoughts model belongs to the class of encoder-decoder models. That is, encoder part
1 https://github.com/ryankiros/skip-thoughts
maps word embeddings to a sentence vector and decoder generates surrounding
sentences. Skip-thought vectors consist of two separate models. One is an unidirectional
encoder with 2400 dimensions, which is referred to as uni-skip. The other is a
bidirectional model with 2400 dimensions, that contains forward and backward encoders of
1200 dimensions each. This model is referred to as bi-skip.
        </p>
        <p>Encoder. Let wi1; : : : ; wiN be the words in sentence si and N is the number of words in
sentence. On each step, encoder generates hidden state hit, which can be interpreted as
the representation of the sequence wi1; : : : ; wit. And the final hidden state hiN := si is
the vector representation of the full sentence si.</p>
        <p>zt = (Wzxxt + Wzhht 1);
rt = (Wrxxt + Wrhht 1);
h~t = tanh(Wxxt + Wh(rt</p>
        <p>ht 1));
ht = (1
zt) ht 1 + zt
h~t;
(1)
where (Wzx; Wzh; Wrx; Wrh; Wx; Wh) — parameters of LSTM type encoder,
xt — vector representation of word wt, ( ) denotes a component-wise product.
Decoder. The decoder is a model which conditions on the encoder output si. Decoder
part is similar to encoder part, but applied to next si+1 and previous si 1 sentences.
Objective. Given a tuple (si 1; si; si+1) the objective optimized is the sum of the
logprobabilities for the forward and backward sentences conditioned on the encoder
representation.</p>
        <p>
          Consider the dataset S = fsig consisting of the sentences si = (x1; : : : ; xn) where
xk 2 X is a word embedding. Our goal is to learn representations for variable-sized
phrases in unsupervised training regime. We use the encoder-decoder model
(GRUGRU) described in [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ].
        </p>
        <p>N</p>
        <p>To build statistics, we construct pairwise distance matrix M = fmij gi;j=1, where
N is the number sentences in text. For each pair of sentences (si; sj ) cosine distance is
computed:</p>
        <p>mij = cos(si; sj ):
Statistic for each sentence is built as mean cosine distance to all other sentences in text:
1
stat(si) = X cos(si; sj ):</p>
        <p>N
j6=i
To detect borders, where authors switch, we accept the hypothesis, that sentences around
the borders are differ from other sentences in text. Outliers are defined as sentences,
which statistic is bigger than threshold :
The threshold was tuned in order to maximize the final performance measure —
W inF . Also, to compress model and analyze the properties of skip-thoughts vectors,
different parts of these vectors were used for statistic calculations, specifically:
– whole 4800-dimensional skip-thoughts vectors,
– 2400-dimensional uni-skip vectors,
– 2400-dimensional bi-skip vectors.</p>
        <p>The results of parameter tuning are shown on figures below.
The proposed algorithm was tested on PAN-2017 style breach detection training and
test datasets. Results of its work are shown in table below.</p>
        <p>training dataset
test dataset</p>
      </sec>
      <sec id="sec-2-2">
        <title>WindowDiff WinP WinR WinF</title>
        <p>0.62 0.27 0.61 0.24
0.53 0.37 0.54 0.28
We proposed algorithm for style breach detection task. This method splits text into
sentences, vectorizes it and then builds statistics for sentence vectors to detect
sentencesoutliers.</p>
        <p>The method was implemented to the PAN-2017 competition in style breach detection
task. The model achieved WinF measure 0.28 on the test dataset.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Bensalem</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chikhi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Intrinsic plagiarism detection using n-gram classes</article-title>
          .
          <source>EMNLP</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Bird</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Nltk: the natural language toolkit</article-title>
          .
          <source>Proceedings of the COLING/ACL on Interactive presentation sessions</source>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Kiros</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zemel</surname>
            ,
            <given-names>R.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Torralba</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Urtasun</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fidler</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Skip-thought vectors</article-title>
          .
          <source>arXiv preprint arXiv:1506.06726</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Kuznetsov</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Motrenko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kuznetsova</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Strijov</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Methods for intrinsic plagiarism detection and author diarization</article-title>
          .
          <source>Notebook for PAN at CLEF</source>
          <year>2016</year>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Oberreuter</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>L</surname>
          </string-name>
          'Huillier,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Ríos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.A.</given-names>
            ,
            <surname>Velásquez</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.D.</surname>
          </string-name>
          :
          <article-title>Approaches for intrinsic and external plagiarism detection</article-title>
          .
          <source>Proceedings of the PAN</source>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Pevzner</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hearst</surname>
            ,
            <given-names>M.A.</given-names>
          </string-name>
          :
          <article-title>A critique and improvement of an evaluation metric for text segmentation</article-title>
          .
          <source>Computational Linguistics</source>
          (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <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>Hagen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kiesel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Michel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Oberländer</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tippmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barrón-Cedeño</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gupta</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Overview of the 4th international competition on plagiarism detection</article-title>
          .
          <source>CLEF</source>
          (Online Working Notes/Labs/Workshop).
          <source>Citeseer</source>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <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>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Improving the Reproducibility of PAN's Shared Tasks: Plagiarism Detection, Author Identification, and Author Profiling</article-title>
          . In: Kanoulas,
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Lupu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Clough</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Sanderson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Hall</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Hanbury</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Toms</surname>
          </string-name>
          , E. (eds.)
          <article-title>Information Access Evaluation meets Multilinguality, Multimodality, and Visualization</article-title>
          .
          <source>5th International Conference of the CLEF Initiative (CLEF 14)</source>
          . pp.
          <fpage>268</fpage>
          -
          <lpage>299</lpage>
          . Springer, Berlin Heidelberg New York (
          <year>Sep 2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tschuggnall</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          : Overview of PAN'17:
          <string-name>
            <surname>Author</surname>
            <given-names>Identification</given-names>
          </string-name>
          , Author Profiling, and
          <string-name>
            <given-names>Author</given-names>
            <surname>Obfuscation</surname>
          </string-name>
          . In: Jones,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Lawless</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Mandl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Cappellato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          , N. (eds.)
          <string-name>
            <surname>Experimental IR Meets Multilinguality</surname>
          </string-name>
          , Multimodality, and
          <string-name>
            <surname>Interaction</surname>
          </string-name>
          .
          <source>8th International Conference of the CLEF Initiative (CLEF 17)</source>
          . Springer, Berlin Heidelberg New York (
          <year>Sep 2017</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>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barrón-Cedeño</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>An evaluation framework for plagiarism detection</article-title>
          .
          <source>Proceedings of the 23rd international conference on computational linguistics</source>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Scaiano</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Inkpen</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Getting more from segmentation evaluation. Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (</article-title>
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Stamatatos</surname>
          </string-name>
          , E.:
          <article-title>Intrinsic plagiarism detection using character n-gram profiles (</article-title>
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tschuggnall</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Verhoeven</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Specht</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Clustering by authorship within and across documents</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barron</surname>
            , Cedeno,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eiselt</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Overview of the 3rd international competition on plagiarism detection</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Tschuggnall</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Verhoeven</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Specht</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          : In: Cappellato,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Mandl</surname>
          </string-name>
          , T. (eds.)
          <source>Working Notes Papers of the CLEF 2017 Evaluation Labs</source>
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Zechner</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Muhr</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kern</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Granitzer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>External and intrinsic plagiarism detection using vector space models</article-title>
          .
          <source>Proc. SEPLN</source>
          . vol.
          <volume>32</volume>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>