<!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>Wiki Vandalysis - Wikipedia Vandalism Analysis</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Manoj Harpalani</institution>
          ,
          <addr-line>Thanadit Phumprao, Megha Bassi, Michael Hart, and Rob Johnson</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Stony Brook University</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2010</year>
      </pub-date>
      <abstract>
        <p>Wikipedia describes itself as the “free encyclopedia that anyone can edit”. Along with the helpful volunteers who contribute by improving the articles, a great number of malicious users abuse the open nature of Wikipedia by vandalizing articles. Deterring and reverting vandalism has become one of the major challenges of Wikipedia as its size grows. Wikipedia editors fight vandalism both manually and with automated bots that use regular expressions and other simple rules to recognize malicious edits[5]. Researchers have also proposed Machine Learning algorithms for vandalism detection[19,15], but these algorithms are still in their infancy and have much room for improvement. This paper presents an approach to fighting vandalism by extracting various features from the edits for machine learning classification. Our classifier uses information about the editor, the sentiment of the edit, the “quality” of the edit (i.e. spelling errors), and targeted regular expressions to capture patterns common in blatant vandalism, such as insertion of obscene words or multiple exclamations. We have successfully been able to achieve an area under the ROC curve (AUC) of 0.91 on a training set of 15000 human annotated edits and 0.887 on a random sample of 17472 edits from 317443.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Wikipedia defines vandalism as “any addition, removal, or change of content made in a
deliberate attempt to compromise the integrity of Wikipedia”[
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. Vandalism can take
many forms, including deleting all the content from a page, modifying a page to be
so long that is becomes difficult to load, and inserting profanity, nonsense, unrelated
information, inaccurate information, opinionated text, or spam.
      </p>
      <p>
        Vandalism detectors attempt to automatically distinguish integrity-violating edits
from integrity-preserving edits. Wikipedia currently uses a combination of manual and
automated vandalism detection. The automated “bots” employed by Wikipedia use
regular expressions and other simple rules to detect vandalism[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Researchers have
previously suggested more advance vandalism detection algorithms based on content in the
edit[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], author information[
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], compression ratio of the article with and without the
revision[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], and Bayesian-classifiers built on the differences between the new and old
revisions[
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. These early approaches leave much room for improvement.
      </p>
      <p>
        This paper presents a machine-learning-based vandalism detector that uses several
features to classify vandalism and that achieves an AUC score of over 0.887. Measuring
the performance of the vandalism detection algorithm in terms of AUC instead of other
measures makes sense as AUC score denotes the probability by which a classifier is
able to distinguish a randomly sampled vandalism edit from a randomly sampled
regular edit. Our results significantly outperform a baseline classifier based on a previous
approach[
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. Our classifier uses several simple features to catch obvious “silly” forms
of vandalism, such as inserting obscenities or long, repeating patterns of text. We also
use subtler content-based features, such as misspelled words, grammatical errors, and
changes in sentiment, which tend to indicate an edit violates the Wikipedia editing
policy. Finally, the classifier uses information about the source of an edit, e.g. whether it is
anonymous, to make its decisions.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Training corpus &amp; Feature Extraction</title>
      <p>
        The training corpus for the classification was provided by the organizers of the PAN
workshop[
        <xref ref-type="bibr" rid="ref1 ref14">1,14</xref>
        ]. The corpus consisted of 15000 edits coupled with the previous
revisions. Along with the training corpus in WikiMarkup format, we were also provided
with meta-data including the edit id, the old revision id, the new revision id, the user
name or IP of the author who performed the edit, the comment of the author, and
whether the edit vandalized the article.
      </p>
      <p>
        Wikipedia articles in the training set were formatted in WikiMarkup[
        <xref ref-type="bibr" rid="ref22">22</xref>
        ].
WikiMarkup includes not only the content, but link and display instructions, much like
HTML. For our purposes, we converted the WikiMarkup directly to plain text using
the Bliki engine[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], which eliminated the formatting and link information. Therefore,
we are unable to detect template or link vandalism.
      </p>
      <p>
        We focus on content based vandalism as it is the most prominent type of vandalism
that exists. After analyzing samples of vandalized and regular edits, we observed that
certain attributes of the edits distinguished vandalism from regular edits. We used the
following features of the edits for classification:
Edit Distance: Our classifier calculates the Damerau-Levenstein Distance using the
LingPipe API[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] to determine the number of changes required to convert the old
revision of an article to its new revision.
      </p>
      <p>Edit Type: Our classifier determines whether the edit inserted, deleted and/or modified
text or a combination of these actions.</p>
      <p>
        Text Changes: Our classifier determines the edit length, word count, words inserted,
words deleted, and words changed using java-diff[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. It also uses LingPipe’s English
Sentence chunker to tokenize an article into sentences and calculate exact changes
sentence-by-sentence using java-diff.
      </p>
      <p>
        Spelling Errors: Our classifier counts the number of apparent spelling mistakes in the
edit and the ratio of spelling errors to correctly spelled words. Our spell-checking[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]
software contained 200K English words, including named entities such as proper names
and geographic places.
      </p>
      <p>
        Obscene Words: Our classifier enumerates the total number of obscene words in the
edit and the ratio of obscene words to benign words. We started with a dictionary of
obscene words[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and manually added other obscene words that we observed frequently
in vandalized edits of our training set.
      </p>
      <p>Repeated Patterns: “Silly” vandalism often employs repeated patterns like upper case
words, exclamation marks, and repetition of words/letters (e.g. “heyyyyyy”, “oh!!!!!”,
“wow wow wow”, “hahahaha”, “WIKIPEDIAAA”). Our classifier counts these patterns
using the regular expressions.</p>
      <p>
        Grammatical errors: Wikipedia editors strive for good grammar, but vandals do not
generally follow these rules. They may insert words or phrases into the middle of
existing sentences or write ungrammatical sentences deliberately or unintentionally. Our
classifier parses the edits into sentences that had been inserted or changed by using
java-diff and LingPipe’s sentence tokenizer and counts the grammatical errors in them
using CMU’s Link Grammar Parser[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
      </p>
      <p>Sentiment Analysis: Statements expressing opinions are common features of
vandalism. Our classifier performs a sentiment analysis of the edit to uncover subjective or
opinionated (positive or negative) text. We use LingPipe’s Sentiment Analysis Tool
trained on movie review data. The classifier counts objective or opinionated sentences
and measures the change in total number of positive or subjective sentences.
Sum of metrics: This simple but effective meta-feature is the sum of the number of
Repeated Letters, Repeated Words, Capitalized Words and Multiple Exclamation Marks.
Article History: Vandals do not necessarily perform vandalism across all articles at
the same rate. Rather, some articles receive a disproportionate amount of vandalism
than others (e.g. Michael Jackson). The feature is the number of times an article was
vandalized in the previous 5000 edits on the article. We denote vandalism as a comment
left by an editor that contains “reverted”, “user” and “vandalism” in this order. We count
also how many times an article was reverted, regardless if it was explicitly vandalism
or not.</p>
      <p>Editor information: Knowing who contributed an edit can give us some expectation of
the quality of the change. For example, we expect an active and registered Wikipedia
editor with several thousand edits to be more trustworthy compared to an unregistered
editor that is only identifiable from an IP address and who has not contributed before.
Our classifier uses several editor-based features: whether the editor is registered or
unregistered, how long the editor has been registered, the total number of contributions
made to Wikipedia during the period that training data was collected, the total number
of edits made to Wikipedia by the editor up to the date the training data was finalized,
the number of reverts on previous revisions by the author deemed to be vandalism (using
the same heuristic as for article history) and the total number of previous modifications
made by the editor on the article they are revising. We were careful to make sure for
edit totals to not include future modifications. If the user is not registered, the classifier
uses their IP address as a proxy for their identity.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Classifiers</title>
      <p>
        Modeling Classifiers. We compare in this section two different models for building
classifiers. We first investigate the Naive Bayes with Bag Of Words approach described
in Smets et al[
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]. We introduce a modification to this approach by combining Naive
Bayes with Rank Boost[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. We compare this to a second approach that uses the NBTree
      </p>
      <p>Reg(0) UnReg(1) User
classifier (a hybrid between decision trees and Bayesian classifiers) and the features
described above.</p>
      <p>
        Baseline: Naive Bayes with the Bag Of Words model. In order to set a baseline for
comparison, we first started with classification of edits using the Bag of Words
approach. We used Mallet[
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] to create a vector space model based on unigrams from the
edit difference containing inserted and changed text in the new revision of the article
to create the Bag of Words and then used word count of the words after removing the
stop words as a feature to the Naive Bayes classifier. We used Rank Boost on this weak
classifier to maximize its area under the ROC curve. In this experiment, boosting the
Naive Bayes classifier 15 times performed the best.
      </p>
      <p>
        Building classifiers. We built classifiers using the features presented in the previous
section with three different algorithms: Naive Bayes, C4.5 Decision Trees[
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], and
NBTrees[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] using Weka[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], a machine learning and data mining library provided by
University of Waikato. The NBTree performed the best among all the other classifiers.
An NBTree is a decision tree with Bayesian classifiers as its leaves. The classifier builds
a decision tree to optimally partition the training data to build several Bayesian
classifiers that will perform better than either a decision tree or Bayesian classifier alone.
      </p>
      <p>We combined all the features described in the previous section and performed a
10-fold cross validation on all three algorithms. NBTree yielded the best result with the
default settings, which uses 5-fold cross validation of Naive Bayes at a node to compute
its utility and a split threshold of 5% of the relative reduction on error. Figure 1 shows
the NBTree we constructed from the training data.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Evaluation &amp; Results</title>
      <p>Our test corpus contained 15000 edits. Registered users contributed 67% of these edits,
while anonymous users contributed 33%. Among these 93.9% of edits were not
inRegular Edits
Vandalism
stances of vandalism. Not surprisingly, unregistered users more frequently vandalized
articles than registered users, 16% to 1% respectively. See Figure 2 for Venn diagrams
which highlight how often an article had text modified, deleted, inserted, or any
combination of these actions. Note that vandals are significantly more likely to insert text and
are much less likely to make multiple changes in one revision.</p>
      <p>
        In Table 1, we present our top 10 ranked features according to information gain.
Table 2 compares the performance of our classifiers using stratified 10-fold cross
validation on the training data. Table 3 presents the results on the PAN 2010 Wikipedia
Vandalism test corpus[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        The authors of [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] observed that there are a small number of registered users
(0:1%) that generate over half the content on Wikipedia. Therefore, we report not only
the overall performance, but also statistics relating to important subsets of editors. This
will let us gauge, for example, if the false positive rate is much too high to be acceptable
for frequent contributors. We encourage future papers relating to the efficacy of
vandalism detectors to analyze the performance for important subsets of editors. We report
      </p>
      <p>C4.5 Decision Tree NBTree
statistics for both registered and unregistered users as well as edits made by those users
or IP addresses that frequently contribute to the article in Table 4.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Discussion</title>
      <p>Our NBTree-based classifier outperforms the baseline classifier for two reasons. First,
the features we selected – editor information, sentiment change, etc. – convey more
information about each edit than the simple bag of words model. Second, by using an
NBTree, we enable the classifier to partition the diverse space of edits into regions that
are more amenable to Bayesian classification.</p>
      <p>Five of our top ten features involved editor information. Current Wikipedia bots
make limited use of editor information, but our results show that they could do more.
In fact, our NBTree approach benefited most from how many contributions a particular
Wikipedia User or IP address has made. Other important editor attributes were edit
frequency, i.e. whether the editor is currently active, and whether the editor had contributed
to the article being revised.</p>
      <p>Another observation yielded by our highest ranked features is that simple features
outperformed our more sophisticated features. The only sophisticated feature that
appeared in the top ten ranked attributes was change in sentiment. Figure 3 shows the
values of the change in sentiment score. We note that for vandalizing edits, the mean
change in sentiment was 0:14 with a standard deviation of 2:0 and for regular edits the
mean change was 0:03 with a standard deviation of 1:1. Although most edits,
vandalism and otherwise, had zero change in sentiment score, we note that vandalism skews
towards a negative change in sentiment and regular edits positively, which appears to
make sense intuitively. Because of time and resource constraints, we were not able to
confirm if either A) vandalism introduces more polarizing than subjective statements,
B) the polarity detector is more effective than the subjectivity detector software or C)
Type of user FP rate Recall Precision
Registered users &lt; 0.1% 22.0% 68.4%
Registered users that edited this article 10 times or more &lt;0.01% 0.0% 0.0%
Unregistered users 3.9% 40.8% 67.2%
IP addresses that edited this article 10 times or more 1.7% 33.3% 50.0%
Table 4. Performance of our classifier for registered and unregistered users as well as frequent
contributors
subjective or polarizing statements do not constitute a significant percentage of
vandalism. We approached the more sophisticated features like the sentiment analysis with an
off-the-shelf approach. Therefore, we used pre-existing datasets and software APIs to
gather feature values. We hypothesize that employing Wikipedia specific examples may
perform more precisely in detecting subjectivity and polarity in article revisions.</p>
      <p>As mentioned before, the initial partition performed by the NBTree evaluated how
many contributions a registered user or an IP address has made to Wikipedia.
Interestingly the benefit of this feature is not exclusive to registered users. IP addresses that
have contributed significantly in the past have a lower vandalism to regular edit ratio in
this dataset than those IP addresses that have only contributed a handful of edits. In our
training data, the ratio of regular edits to vandalized edits for IP addresses with more
than 10000 previous edits and IP addresses with less than 100 previous edits is 76:0 and
3:6 respectively. We gathered information about 5 IP addresses in the training set with
the most contributions and found that they were located near universities and one was
owned by Microsoft (according to the reverse DNS). Therefore, what does this suggest
for Wikipedia? Certain IP addresses and geographic areas are conducive to recruiting
future Wikipedians - that these individuals have demonstrated a commitment to the
integrity of the site. This would grant more accountability and perhaps better expose the
malicious edits from these “good” IP addresses.</p>
      <p>Two of our features unexpectedly behaved similarly to the edit distance feature.
First, we note that the larger the edit distance, the more likely the edit is not vandalizing
the article. We found that our grammar and misspelled words feature ultimately
behaved in a similar fashion. For misspelled words, the larger the edit, the more likely our
dictionary found misspelled words. Analyzing the top 10 edits with the most misspelled
words (all non-vandalizing edits), we observed that these articles contained many
nonEnglish or unique pronouns. For example, one article on the movie “Blue Hills Avenue”
had many misspellings because the dictionary could not recognize several of the
character names. Therefore, we suggest for future dictionaries to build an article specific
dictionary that incorporates words that survive several revisions or appear to be
integral to the article (a summarization technique could be a good first approximation
for this approach). Our grammar checker also had similar issues, arising from
difficulties with part-of-speech tagging certain words. Another problem unique to the grammar
checker is that several different types of tabulations and enumerations are used
throughout Wikipedia. An obvious improvement for implementing a grammar checker is to
ignore any modification that occurs in either a table, list or infobox. In future testing, we
plan to implement these changes.</p>
      <p>
        Our classifier had tremendous difficulty classifying vandalism by registered users.
A sizable chunk of these vandalizing edits come from users that registered just before
submitting the edit, and therefore are very suspicious, but the rest of these vandalizing
edits are much more difficult to detect. Registered users infrequently vandalize articles,
so we have little training data to learn from. We noted in two of ten cases that we
manually inspected that there was a strong argument to not classify the edit as vandalism.
For example, one edit introduced a link to “Sex Magic”, which may appear on face
value to be nonsense. On further investigation, it turns out that this is indeed an article
in Wikipedia. As we are indebted to Potthast et al. for their dataset[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], we recommend
that the edits labeled vandalism by frequent and active contributors to be examined
more closely by an active Wikipedian. Fortunately, this constitutes a small minority of
edits, but detecting vandalism among registered users is a challenging obstacle. In the
future, we will examine techniques for training with unbalanced datasets to see if we
can further improve our detection for this type of vandalism.
      </p>
      <p>Lastly, we hypothesize the success of the NBTree arises from the fact that vandalism
is too diverse to be captured by a “one-size-fits-all” approach and requires partitioning
the training space to find edits with common features. In our experiments, the Weka
toolkit allowed us to test several different types of classifiers including meta-classifiers,
neural networks, support vector machines and decision trees. Ultimately, decision trees
fared better than other classification schemes and the C4.5 and NBTree the best. Some
partitions in the NBTree, as seen in Figure 1, take advantage of the fact that it is highly
unlikely that edits which meet a certain criterion will contain vandalism (e.g. a frequent
contributor to Wikipedia). We hope to explore how we can further identify particular
types of vandalism and build precise and effective classifiers for them automatically.
This paper presents new features and algorithms to improve classification of vandalism.
We found that features regarding information about the editor, misspellings, obscene
words, detection of repetitive patterns and change in sentiment effectively classified
vandalism. These features combined with the NBTree classifier gave an AUC score of
91% for a 10-fold stratified cross validation of our training corpus and 88.7% on the
PAN 2010 testing corpus. We hope to expand upon these features and look for new
ways to compare the content inserted, modified or deleted with previous revisions to
determine if such actions constitute vandalism.</p>
    </sec>
    <sec id="sec-6">
      <title>7 Acknowledgements</title>
      <p>We would like to acknowledge Tamara Berg and Luis Ortiz for their guidance and
suggestions.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <year>2010</year>
          ,
          <string-name>
            <surname>P.W.</surname>
          </string-name>
          :
          <article-title>Evaluation Campaign on Plagiarism Detection and Wikipedia Vandalism Detection</article-title>
          . http://www.uni-weimar.de/medien/webis/research/ workshopseries/pan-10/task2-vandalism-detection.
          <source>htm</source>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2. Alias-i.
          <source>: Lingpipe 4.0</source>
          .0. http://alias-i.com/lingpipe/ (
          <year>October 2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3. anonymous:
          <article-title>English obscene wordlist</article-title>
          . http://expressionengine.com/?ACT=
          <volume>51</volume>
          &amp;
          <article-title>fid=8&amp;aid=1830_mvLZ2WkoRucNvRegThbL&amp;board_id=</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4. axelclk: gwtwiki - Java
          <string-name>
            <surname>Wikipedia</surname>
            <given-names>API</given-names>
          </string-name>
          (
          <article-title>Bliki engine)</article-title>
          . http://code.google.com/p/gwtwiki/
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Carter</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          : ClueBot. http://en.wikipedia.org/wiki/Wikipedia:CLUEBOT
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Freund</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iyer</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schapire</surname>
            ,
            <given-names>R.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Singer</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>An efficient boosting algorithm for combining preferences (</article-title>
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Grinberg</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lafferty</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sleator</surname>
            ,
            <given-names>D.:</given-names>
          </string-name>
          <article-title>A robust parsing algorithm for link grammars</article-title>
          .
          <source>In: In Proceedings of the Fourth International Workshop on Parsing Technologies</source>
          (
          <year>1995</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hall</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Frank</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Holmes</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pfahringer</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Reutemann</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Witten</surname>
            ,
            <given-names>I.H.</given-names>
          </string-name>
          :
          <article-title>The weka data mining software: an update</article-title>
          .
          <source>SIGKDD Explor. Newsl</source>
          .
          <volume>11</volume>
          (
          <issue>1</issue>
          ),
          <fpage>10</fpage>
          -
          <lpage>18</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9. Incava.org:
          <article-title>Difference algorithm for Java</article-title>
          . http://www.incava.org/projects/java/java-diff/
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Itakura</surname>
            ,
            <given-names>K.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clarke</surname>
            ,
            <given-names>C.L.A.</given-names>
          </string-name>
          :
          <article-title>Using dynamic markov compression to detect vandalism in the wikipedia</article-title>
          .
          <source>In: SIGIR '09: Proceedings of the 32nd international ACM SIGIR conference on Research and development in information retrieval</source>
          . pp.
          <fpage>822</fpage>
          -
          <lpage>823</lpage>
          . ACM, New York, NY, USA (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Kohavi</surname>
          </string-name>
          , R.:
          <article-title>Scaling up the accuracy of naive-bayes classifiers: A decision-tree hybrid</article-title>
          .
          <source>In: Second International Conference on Knoledge Discovery and Data Mining</source>
          . pp.
          <fpage>202</fpage>
          -
          <lpage>207</lpage>
          (
          <year>1996</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12. LLC.,
          <string-name>
            <surname>S.</surname>
          </string-name>
          :
          <article-title>English dictionary</article-title>
          . http://softcorporation.com/products/ spellcheck/dictionaries/english/
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Mallet: A machine learning for language toolkit (</article-title>
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Crowdsourcing a Wikipedia Vandalism Corpus</article-title>
          .
          <source>In: 33rd Annual International ACM SIGIR Conference</source>
          (to appear).
          <source>ACM (Jul</source>
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <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>Gerling</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          :
          <article-title>Automatic vandalism detection in wikipedia</article-title>
          . In: Macdonald,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Ounis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            ,
            <surname>Plachouras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Ruthven</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            ,
            <surname>White</surname>
          </string-name>
          ,
          <string-name>
            <surname>R.W</surname>
          </string-name>
          . (eds.)
          <source>Advances in Information Retrieval, Lecture Notes in Computer Science</source>
          , vol.
          <volume>4956</volume>
          , chap. 75, pp.
          <fpage>663</fpage>
          -
          <lpage>668</lpage>
          . Springer Berlin Heidelberg, Berlin, Heidelberg (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <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>Gerling</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          :
          <article-title>Automatic vandalism detection in wikipedia</article-title>
          .
          <source>In: ECIR'08: Proceedings of the IR research, 30th European conference on Advances in information retrieval</source>
          . pp.
          <fpage>663</fpage>
          -
          <lpage>668</lpage>
          . Springer-Verlag, Berlin, Heidelberg (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Priedhorsky</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lam</surname>
            ,
            <given-names>S.T.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Panciera</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Terveen</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Riedl</surname>
          </string-name>
          , J.: Creating, destroying, and
          <article-title>restoring value in wikipedia</article-title>
          . In: GROUP '07
          <source>: Proceedings of the 2007 international ACM conference on Supporting group work</source>
          . pp.
          <fpage>259</fpage>
          -
          <lpage>268</lpage>
          . ACM, New York, NY, USA (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Quinlan</surname>
          </string-name>
          , R.:
          <source>C4</source>
          .
          <article-title>5: Programs for Machine Learning</article-title>
          . Morgan Kaufmann Publishers, San Mateo, CA (
          <year>1993</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Smets</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Goethals</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Verdonk</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Automatic vandalism detection in wikipedia: Towards a machine learning approach</article-title>
          .
          <source>In: Proceedings of the Association for the Advancement of Artificial Intelligence (AAAI) Workshop on Wikipedia and Artificial Intelligence: An Evolving Synergy (WikiAI08)</source>
          . pp.
          <fpage>43</fpage>
          -
          <lpage>48</lpage>
          . AAAI Press (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>West</surname>
            ,
            <given-names>A.G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kannan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Detecting wikipedia vandalism via spatio-temporal analysis of revision metadata</article-title>
          .
          <source>In: EUROSEC '10: Proceedings of the Third European Workshop on System Security</source>
          . pp.
          <fpage>22</fpage>
          -
          <lpage>28</lpage>
          . ACM, New York, NY, USA (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Wikipedia</surname>
          </string-name>
          <article-title>: Definition of vandalism</article-title>
          . http://en.wikipedia.org/wiki/Wikipedia:Vandalism
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>22. Wikipedia: WikiMarkup. http://en.wikipedia.org/wiki/Help:Wiki_markup</mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>