<!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>Improving the Reliability of the Plagiarism Detection System</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Faculty of Informatics, Masaryk University</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2010</year>
      </pub-date>
      <abstract>
        <p>In this paper we describe our approach at the PAN 2010 plagiarism detection competition. We refer to the system we have used in PAN'09. We then present the improvements we have tried since the PAN'09 competition, and their impact on the results on the development corpus. We describe our experiments with intrinsic plagiarism detection and evaluate them. We then discuss the computational cost of each step of our implementation, including the performance data from two different computers.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Discovering plagiarism in text files by means of software is a widely-studied area. Yet it
is often not clear how the proposed approaches would perform in real-world scenarios.
The PAN competition1 attempts to provide a testbed for comparing different approaches
on the same data.</p>
      <p>
        We discuss the performance of our plagiarism detection system on two document
corpora, used in PAN 2010 competition: The development corpus PAN-PC-09 [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] is
based on the PAN’09 competition data. It contains 14429 source documents, 14428
suspicious documents for the external plagiarism detection, and 6183 suspicious
documents for the intrinsic plagiarism detection. The competition corpus contains both the
intrinsic and external plagiarism cases in one body of suspicious documents. There are
11147 source documents in the corpus, and 15925 suspicious documents.
      </p>
      <p>
        The next section of this paper contains a brief recapitulation of our approach used in
PAN’09. We then evaluate incremental modifications to this approach and their impact
on the overall score on the development corpus. The two main areas of the research
are covered in separate sections: we discuss the cross-language plagiarism detection in
Section 4, and the intrinsic plagiarism detection in Section 5. In Section 6 we then
evaluate the computational cost of our implementation both on the same hardware which
was used for PAN’09, and on the newer hardware. This should give some insight on the
scalability of our system.
1 http://pan.webis.de/, see [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for the overview of the competition.
      </p>
    </sec>
    <sec id="sec-2">
      <title>System Overview</title>
      <p>
        We have used our system for tackling the PAN’09 external plagiarism task as a starting
point, trying to improve it further. The detailed description of the system can be found
in [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. In this paper, we provide only a short summary of the main features:
– Tokenization: text files are split into words (sequences of at least three consecutive
alphanumeric characters). We keep the offset of the first and last character of each
word for further use.
– Chunks: we form partly overlapping word 5-grams, sort the words in them, and
compute a MD5 hash[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. The most significant 30 bits of the hash is then used
as a chunk identification. For each chunk in a given document, we also keep the
sequence number of this chunk.
– Inverted index: mapping the chunk ID to the list of structures containing the
following attributes: (document ID, chunk sequence number, offset of the first character
of the chunk, offset of the last character of the chunk).
– Computing the similar documents: using the inverted index, we examine the
suspicious documents (their chunks are computed the same way as for the source
documents). We then find pairs of source and suspicious documents, and their common
chunk IDs (including additional data we store for each chunk). We discard
document pairs with less than 20 chunks in common.
– Evaluating the similar passages: for each document pair with 20 or more
common chunks we test whether the chunks form one or more valid intervals (intervals
where there gap between two neighbouring common chunks is not bigger than 50
chunks, and which have at least 20 common chunks) both in the source and
suspicious document.
– Generating the detections: those valid intervals are then reported as plagiarized
passages, with the only postprocessing being removal of overlapping detections.
2.1
      </p>
      <sec id="sec-2-1">
        <title>System performance</title>
        <p>The performance of our system in the PAN’09 was the following:2
recall = 0:6967; precision = 0:5573; granularity = 1:0228; overall = 0:6093
Unfortunately, we did not save the final version of our software for PAN’09. We
had to reimplement the last phase (removal of overlapping detections) from scratch.
With this change, the performance on the final version of the PAN-PC-09 data was the
following:
recall = 0:6442; precision = 0:5725; granularity = 1:0193; overall = 0:5980
The difference here is probably caused by a different implementation, as well as
possible changes between the competition corpus of PAN’09 and the final version of
PAN-PC-09.</p>
        <p>
          In PAN 2010, the competition corpus contained both intrinsic and external
plagiarism cases. For evaluating the impact of false-positives in suspicious documents which
2 We refer to [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] for explanation of terms recall, precision, and granularity. Also the formula
which is used to compute the overall score from these three values is described there.
contain intrinsic plagiarism cases only, we have joined the suspicious documents from
both parts of the PAN-PC-09 into one directory (renaming the intrinsic cases and
editing their annotations to match the new file names), and tested the performance on this
united version of the data:
recall = 0:5255; precision = 0:4858; granularity = 1:0480; overall = 0:4882
In sections 3 and 4 we present the results computed on this united version of
PANPC-09 only.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>External Plagiarism Detection Improvements</title>
      <p>In order to improve the performance for the external plagiarism detection many ad-hoc
modifications have been tested. The results from PAN’09 suggested that our method has
a good recall3, so the focus has been mostly on improving the precision and granularity.</p>
      <p>As for the recall, there is probably not a big room for improvement: the chunking
method cannot possibly detect heavily obfuscated passages.
3.1</p>
      <sec id="sec-3-1">
        <title>Adjacent Detections</title>
        <p>One modification to the post-processing stage was removing both overlapping
detections (instead of e.g. keeping a longer one only), provided they were short enough—the
threshold we have used was 600 characters. Interestingly enough, this this has improved
the precision score, but did not hurt recall much:
recall = 0:5252; precision = 0:4941; granularity = 1:0465; overall = 0:4929
A possible explanation is that those short overlapping detections are passages of
relatively common phrases.</p>
        <p>As for the granularity measure, we have attempted to merge the adjacent detections
pointing to the same source document. The criteria we have used were the following:
– When the gap is under 600 characters, merge.
– When the gap is under 4000 characters and is smaller than half of the average length
of both adjacent detections, merge.
– Otherwise, keep the both detections separated.</p>
        <p>The resulting score confirmed the improvement in both precision and granularity:
recall = 0:5256; precision = 0:5302; granularity = 1:0233; overall = 0:5192
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>False positives</title>
        <p>One of the drawback of the system in PAN’09 has been that some of the document
similarities detected were not annotated in the gold standard as plagiarism passages. The
examination of those false positives suggested that they are often in structured passages
(like table of contents, etc.). The new system attempts to exclude such passages from
our detection: it computes the percentage of letter characters in the detection, and the
detections with low percentage of letter characters were excluded. The measurements
are in Table 1.</p>
        <p>Because of a bug in our software, we had the above values miscomputed during the
competition, and the best overall score was with threshold 0.675, which is what we have
used for final results computation:
recall = 0:5244; precision = 0:5420; granularity = 1:0233; overall = 0:5243
This modification has added the access to the original suspicious documents again
to the post-processing stage, which brings a small performance penalty. In principle, the
similar effect could be obtained by excluding non-letters (e.g. digits) in the tokenization
phase, and then look at the interval length with respect to number of chunks in the said
interval.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Cross-language Plagiarism Detection</title>
      <p>Both the development and competition corpora contained also translated documents.
All the suspicious documents were in English, and the source documents were in
English, German, and Spanish.</p>
      <p>One of the cheapest ways for improving the performance would be to exclude the
non-English documents from processing altogether in order to avoid false positives.
Another approach would be to detect cross-language plagiarism using e.g. keyword
extraction (for example, by finding words which are much more frequent in the text
itself than in the general language).</p>
      <p>With the relatively small document corpus size it was feasible to translate the
nonEnglish source documents to English, and to use it as alternative source documents.
3 In fact, we had the highest recall value from all teams in PAN’09.
4.1</p>
      <sec id="sec-4-1">
        <title>Language Detection</title>
        <p>
          The automatic language detection is a widely studied area. One possible approach is to
compare character n-gram based language models [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. We have used the
Text::Language::Guess Perl module [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] from CPAN, primarily because it was
ready-to-use and worked well enough. Its classification method is based on detecting
stop-words in the document. While not being extremely accurate, it has provided a
preselection of documents, which have been then manually checked whether they are
indeed in Spanish or German. The most misdetections were on structured data4.
4.2
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>Translating the Documents</title>
        <p>
          Several web sites provide automatic translation services. We have tried to use Yahoo!
Babelfish system [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] and Google Translate [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. With Babelfish we had a problem with
reliability: for some documents we did not get any reply at all. Google Translate was
better, and it even kept the line breaks in the translated text. This allowed us to match
the translated plagiarism back to the original position with a good accuracy.
        </p>
        <p>The only problem with Google Translate is that it silently truncates longer
documents. We suspect they impose a limit to the CPU time their hardware spends on a
single document. We have therefore split documents to blocks with the size betweeen
15 and 22 KB, splitting preferably at the paragraph boundary or a line boundary. We
have got 2562 document parts for PAN-PC-09 for Spanish, 4887 parts for the
competition corpus for German, and 2562 parts for the competition corpus for Spanish. Because
of time limitations we have omitted German in the development corpus.
4.3</p>
      </sec>
      <sec id="sec-4-3">
        <title>Problematic Sentences</title>
        <p>Even with small document parts, there were paragraphs or sentences on which Google
Translate stopped processing altogether. One such example was the line 6256 of source
document 6696 from the competition corpus:
unser Los. Und ich bin ja auch glücklich, wenn ich nur weiß, daß Moina sich
vergnügt.&lt; Sie</p>
        <p>Google Translate has always stopped translating after the word Moina, no mater
how many lines of text we have put before or after the above line.</p>
        <p>When splitting the data further was not possible, we have translated the rest of the
document, and put blank lines instead of the problematic ones.
4.4</p>
      </sec>
      <sec id="sec-4-4">
        <title>Character Offset Calculation</title>
        <p>We have modified our post-processing stage to recompute the offsets in detections of
the translated source documents using line-to-line mapping to the original source
documents. Offsets within a given line were linearly interpolated using the offsets of the
first and last characters of that line.
4 as an example, the source document number 112 from PAN-PC-09 was detected as French.</p>
        <p>For example, when the detection in the translated source document started at
character 1000, which was 20th character out of 40 on line 125, we have mapped it to the
offset of the character which was in the middle of line 125 in the original source
document.
4.5</p>
      </sec>
      <sec id="sec-4-5">
        <title>Performance on the Training Corpus</title>
        <p>After translating all the appropriate source documents from Spanish to English and
removing the source documents in German we have re-ran the computation. The final
score on the training corpus was the following:5
recall = 0:5386; precision = 0:5476; granularity = 1:0236; overall = 0:5340
The performance on the competition corpus is expected to be a bit higher, because
of translating also the source documents from German.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5 Intrinsic Plagiarism Detection</title>
      <p>
        For the intrinsic detection part, the most important aspect was to not lower the overall
score by using the generally low-performing intrinsic plagiarism detection. As a
proofof-concept, we have reimplemented the approach of the PAN’09 winner of the intrinsic
task, described in [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]:
5.1
      </p>
      <sec id="sec-5-1">
        <title>System Outline</title>
        <p>The intrinsic plagiarism detection system splits the document into a set of partly
overlapping windows, and computes the style change function as a distance between the
character trigram profile of the whole ocument and of the given window. Those areas
of the suspicious document which have higher style change function values are then
supposed to be plagiarized6.</p>
        <p>The score of the PAN’09 winner was the following:
recall = 0:4607; precision = 0:2321; granularity = 1:3839; overall = 0:2462
Our implementation has not been able to match this score. The best overall score
our implementation has reached was around 0.172.
5 After the competition, we have tried to modify the threshold value as described in Section 3.2.</p>
        <p>The best score we have got was with threshold of 0.725:</p>
        <p>
          recall = 0:5334; precision = 0:5693; granularity = 1:0230; overall = 0:5418
6 This is an oversimplification. Refer to the original paper [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] for details on how the plagiarized
passages are determined.
We have further improved the system by modifying how the plagiarized passages are
detected from the style change function. Essentially we should only consider those
areas, where the style change function rises from “generally low” values to “generally
high” values and stays there for some interval.
        </p>
        <p>In order to reach a better granularity and to detect steep changes in the style change
function, we have computed the Gaussian-smoothed variants of this function:
n
sc (x) = X
i=1</p>
        <p>For each document, we have computed two functions: for = 1, and for =
10. For each window, we have then computed the nearest local minimum and local
maximum of the sc1(x) function.</p>
        <p>As a beginning of the plagiarised passage we have considered the point where
sc1(x) becomes higher than sc10(x), and the corresponding local minimum is low
enough (lower than median of sc(x) + stddev of sc(x)), the corresponding local
maximum is high enough (greater than median of sc(x) + 2:2 stddev of sc(x)), and the
sc(x) &gt; median of sc(x) + 1:7 stddev of sc(x).</p>
        <p>PAN-PC-09 suspicious-document00005.txt</p>
        <p>100000
offset [characters]</p>
        <p>PAN-PC-09 suspicious-document00005.txt
50000
150000</p>
        <p>200000
sc(x)
sigma=1
sigma=10
detected
expected</p>
        <p>sc(x)
sigma=1
sigma=10
detected
expected</p>
        <p>The smoothed versions of the style change function of the document 00005 from
PAN-PC-09 can be seen in Figures 5.2 and 5.2, together with the detailed view of a
single plagiarism case.</p>
        <p>After the competition we did further experiments: we have found that the style
change function is not as stable with varying document structure as the original paper
states.</p>
        <p>
          We have obtained a significant improvement when considering windows not with
the fixed length in terms of characters, but in terms of trigrams instead (skipping
trigrams with all non-letter characters). We suspect that using a different dissimilarity
function to compute the style change function would be even better. One possibility
is to compute the “out-of-place” n-gram profile distance as described in [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. Another
approach to explore would be to use the cosine similarity.
        </p>
        <p>With the above modifications, we have been able to obtain a better overall score
than the PAN’09 winner:
recall = 0:2627; precision = 0:2969; granularity = 1:072; overall = 0:2562
However, we were not able to reach any significant improvement by using the
intrinsic detector as a hint to the external plagiarism detection, partly because of time
constraints. Thus in our final submission, the intrinsic detection was not used at all.
6</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Performance of Our Approach</title>
      <p>The system for external and cross-language plagiarism (without the intrinsic plagiarism
detection) has been used to process the competition corpus. The resulting score earned
us the first place in the competition:
recall = 0:6915; precision = 0:9405; granularity = 1:0004; overall = 0:7968
We had the highest recall measure from all teams (the second best recall was 0.6907,
by the Know-Center Graz team, which was classified at the third place). Also our
granularity measure was the best (the second best was 1.0018 by the Universidad de Huelva
team, which got the 6th place). Our precision value was the second best of all teams
(the best precision of 0.9559 had the Anna University Chennai team on the 9th place).</p>
      <p>The results are somewhat surprising, as they differ significantly from the
performance on the development corpus. We have expected to have higher recall score on the
competition corpus because of additional translations from German, but the difference
is still too big.</p>
      <p>Also the precision score is higher than expected. Nevertheless, it is higher for many
teams in the competition than it was in PAN’09. This could mean that they have
improved their systems, or that the competition corpus is significantly different from
PANPC-09.
6.1</p>
      <sec id="sec-6-1">
        <title>Computational Cost</title>
        <p>The performance of the system has been tested on two different computers: the
development has been done on a main student’s server of Faculty of Informatics, Masaryk
University: it is HP DL-585 G6 with four six-core AMD Opteron 8439 SE processors
at 2.8 GHz (24 cores total), 128 GB RAM. For purpose of comparison, we have also
evaluated the system on the same hardware as in PAN’09 (SGI Altix XE), which has
two quad-core Intel Xeon E5472 CPUs at 3.0 GHz (8 cores total), 64 GB RAM.</p>
        <p>Our implementation is written in Perl (tokenization, generating chunks and their
hashes, postprocessing), and in plain C (generating the inverted index, searching the
inverted index).</p>
        <p>In Table 2, we present the times spent by processing the development and
competition corpora. The time is divided into three parts: the first one is tokenizing the source
documents and generating the inverted index, the second part is tokenizing the
suspicious documents and looking up common chunks, and the last part is postprocessing
(removing overlaps, joining adjacent detections, generating the XML files).</p>
      </sec>
      <sec id="sec-6-2">
        <title>Task</title>
        <p>Inverted index
Chunk pairs
Postprocessing</p>
      </sec>
      <sec id="sec-6-3">
        <title>Total</title>
        <p>Development corpus Competition corpus
8-core SGI 24-core HP 8-core SGI 24-core HP
1:06:02 0:12:41 0:49:44 0:10:28
2:07:25 0:20:44 1:39:20 0:15:55
0:09:22 0:03:17 0:04:40 0:01:16
3:22:55 0:36:42 2:33:44 0:27:39
There are several areas where possible improvements of the approach presented in this
paper can be present:
– N-gram profile distance function in the intrinsic plagiarism detector. Different means
of computing the distance of the window profile to the profile of the whole
document should be further evaluated with the expectations of reaching better stability
on variable-sized documents and windows.
– Using the intrinsic detector as a hint for the external detector, possibly allowing to
detect also intrinsic plagiarism cases if the lower precision will not impact
negatively the overall performance.
– Density of common chunks. Instead of computing the valid intervals and then
joining the detections in the post-processing phase, it could be feasible to allow wider
gaps in the detection for either large detections (which we partly use), or for
detections where the density of common chunks is higher.
– Differences between the corpora. Much better score in the competition when
compared to the training corpus is definitely a phenomenon which should be further
explored. Because of late release of annotations for the competition corpus we are
unable to do it in this paper.
8</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>Conclusions</title>
      <p>
        We have presented several improvements to the system for detecting plagiarism, which
is described in [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The result was the best-performing system in the PAN 2010
plagiarism detection competition. The core of this system has also been in production use
in the Czech National Archive of Graduate Theses [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] and several other production
systems since 2008, handling milions of text documents.
      </p>
      <p>Some modifications we have described would be usable also in large-scale
production systems, while others are made purely for the sake of the PAN competition. One
such modification with limited impact outside the competition is our approach to
detecting cross-language plagiarism. Using public translation services like Google Translate
or Yahoo! Babelfish is not feasible for large sets of documents. On the other hand,
we have verified that even machine translation can detect at least some cross-language
plagiarism cases using the general-purpose external plagiarism detector.</p>
    </sec>
    <sec id="sec-8">
      <title>Acknowledgements</title>
      <p>We would like to thank Pavel Rychlý for discussing the properties of n-gram profiling
and intrinsic plagiarism detections with us. Also we thank the organizing comitee of the
PAN 2010 competition for an interesting event.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1. Yahoo! Babelfish. http://babelfish.yahoo.com/ (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Cavnar</surname>
            ,
            <given-names>W.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trenkle</surname>
            ,
            <given-names>J.M.:</given-names>
          </string-name>
          <article-title>N-gram-based text categorization</article-title>
          .
          <source>In: In Proceedings of SDAIR-94, 3rd Annual Symposium on Document Analysis and Information Retrieval</source>
          . pp.
          <fpage>161</fpage>
          -
          <lpage>175</lpage>
          (
          <year>1994</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Google</given-names>
            <surname>Translate</surname>
          </string-name>
          . http://translate.google.com/ (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Kasprzak</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Brandejs</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krˇipacˇ</surname>
          </string-name>
          , M.:
          <article-title>Finding plagiarism by evaluating document similarities</article-title>
          .
          <source>In: Proceedings of the SEPLN'09 Workshop on Uncovering Plagiarism, Authorship and Social Software Misuse</source>
          . pp.
          <fpage>24</fpage>
          -
          <lpage>28</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <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>In: Proceedings of the 23rd International Conference on Computational Linguistics (COLING</source>
          <year>2010</year>
          )
          <article-title>(to appear)</article-title>
          .
          <source>Association for Computational Linguistics</source>
          , Beijing, China (Aug
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <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>Eiselt</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cedeño</surname>
            ,
            <given-names>A.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Overview of the 1st international competition on plagiarism detection</article-title>
          .
          <source>In: Proceedings of the SEPLN'09 Workshop on Uncovering Plagiarism, Authorship and Social Software Misuse</source>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>9</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Rivest</surname>
          </string-name>
          , R.:
          <article-title>RFC1321: The MD5 Message-Digest Algorithm (</article-title>
          <year>1992</year>
          ), http://www.rfc-editor.org/rfc/rfc1321.txt
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Schilli</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          : Text::Language::Guess Module. http://search.cpan.org/˜mschilli/Text-Language-Guess-
          <volume>0</volume>
          .02/lib/Text/Language/Guess.pm (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Stamatatos</surname>
          </string-name>
          , E.:
          <article-title>Intrinsic plagiarism detection using character n-gram profiles</article-title>
          .
          <source>In: Proceedings of the SEPLN'09 Workshop on Uncovering Plagiarism, Authorship and Social Software Misuse</source>
          . pp.
          <fpage>38</fpage>
          -
          <lpage>46</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>10. Czech National Archive of Graduate Theses. http://theses.cz/ (2008-2009)</mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Webis at Bauhaus-Universität</surname>
            <given-names>Weimar</given-names>
          </string-name>
          , NLEL at Universidad Polytécnica de Valencia:
          <article-title>PAN Plagiarism Corpus 2009 (PAN-PC-09)</article-title>
          . http://www.webis.de/research/corpora (
          <year>2009</year>
          ), Martin Potthast, Andreas Eiselt, Benno Stein, Alberto Barrón-Cedeño, and Paolo Rosso (editors)
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>