<!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>RMIT at PAN-CLEF 2020: Profiling Fake News Spreaders on Twitter</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>RMIT University</institution>
          ,
          <addr-line>Melbourne</addr-line>
          ,
          <country country="AU">Australia</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Xinhuan Duan</institution>
          ,
          <addr-line>Elham Naghizade, Damiano Spina, and Xiuzhen Zhang</addr-line>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2020</year>
      </pub-date>
      <abstract>
        <p>Automatic detection of fake news in social media has become a prominent research topic due to its widespread, adverse effect on not only the society and public health but also on economy and democracy. The computational approaches towards automatic detection of fake news span from analyzing the source credibility, user credibility, as well as social network structure and the news content. However, the studies on user credibility in this context have largely focused on the frequency and times of engaging in a fake news propagation rather than profiling users based on the content of their tweets. In this paper, we approach this challenge through extracting linguistic and sentiment features from users' tweet feed as well as retrieving the presence of emojis, hashtags and political bias in their tweets. These features are then used to classify users into spreaders or non-spreaders of fake news. Our proposed approach achieves 72% accuracy, being among the top-4 results obtained by systems for the task in the English language.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>This paper describes our participation to the Profiling Fake News Spreaders on Twitter</title>
      <p>
        task at PAN-CLEF 2020 [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Given a Twitter feed, the aim is to determine whether or
not its author is a spreader of fake news. Although the task includes both English and
      </p>
    </sec>
    <sec id="sec-2">
      <title>Spanish languages, we only addressed the problem for the English language.</title>
    </sec>
    <sec id="sec-3">
      <title>Fake news has been proven to be both harmful and misleading to people. In the 2016</title>
      <p>
        US election, most of the users in Twitter have encountered at least one fake news each
day [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. To prevent people from being misled by fake news, one of the main problems to
address consists of identifying fake news spreaders. We tackle this problem by
proposing a two-step learning approach that (i) aims to model sentiment, political presence,
and use of language of fake news spreaders at tweet level, and (ii) generates a
profilelevel representation to feed a binary classifier used to classify profiles into spreaders
or non-spreaders of fake news. Our model achieves a 70% accuracy in a 10-fold cross
validation using the training set provided by the organizers.
      </p>
    </sec>
    <sec id="sec-4">
      <title>The rest of the paper is organized as follows. Section 2 describes our proposed ap</title>
      <p>proach. Section 3 reports the implementation details needed to reproduce our approach.</p>
    </sec>
    <sec id="sec-5">
      <title>Section 4 discusses the results. Finally, Section 5 concludes the work and discusses future directions.</title>
      <p>2</p>
      <sec id="sec-5-1">
        <title>Proposed Approach</title>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Several recent studies have focused on the role of users in social networks on the spread of fake news. These studies have largely focused on the information provided by users in their profile [9] or the number of times that users engage in fake news propagation, e.g., through retweeting them [13].</title>
    </sec>
    <sec id="sec-7">
      <title>However, in this task, the focus is not on detecting the veracity of a piece of news</title>
      <p>but rather if a user is a fake news spreader given the content of their tweet feed. We
proposed profiling fake news spreader as a supervised learning task. Figure 1 shows the
main components of our proposed model for this task. As can be seen, the model carries
two major steps, denoted as tweet-level and profile-level representation.</p>
      <p>Twitter
profile1
Twitter
profile2</p>
      <p>...</p>
      <p>Twitter
profilen</p>
      <p>tweet-level representation
sentiment emojis hashtags pproelsietinccael tpwsrpeerdeetiac-dlteieovrnel</p>
      <p>(TLSP)
tweet 1</p>
      <p>
        ...
tweet 100
– Sentiment: Recent studies suggest that the sentiment of tweets can help detect the
credibility of a piece of news or its spreader [
        <xref ref-type="bibr" rid="ref5 ref6">5,6</xref>
        ]. As a result, we include sentiment
polarity as one of our extracted features.
– Emojis and hashtags: To help strengthen the sentiment signal, we include the
number of emojis and hashtags in the tweets as additional features.
– Political presence: Recent studies suggest that fake news spreaders and non
spreaders have different political presence [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], hence we proposed to study the relation
between political preferences and the behavior of spreading fake news.
– Content: It has been proved that spreading fake news on social media is a very rare
behavior [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Only features based on user profiles may not be sufficient. We train
a language model (a fine-tuned BERT model) using the tweet content to extract
relevant language features that can distinguish the desired two classes of users.
Figure 2 illustrates this process.
      </p>
    </sec>
    <sec id="sec-8">
      <title>The mapping of training data is based on the following rule: all tweets belonging to</title>
      <p>a profile labeled in the training set as a fake news spreader will be labeled as spreader;
analogously, tweets that belong to a non-spreader profile in the training set will be
labeled as non-spreader.
2.2</p>
      <sec id="sec-8-1">
        <title>Profile-Level Representation</title>
        <p>After extracting the features at the tweet-level representation phase, we build the
profilelevel representation (as shown in Figure 1). Given the tweets for a Twitter profile, the
values for each feature are aggregated using three functions: mean, media, and standard
deviation. The result of this process is a profile-level vector that includes these three
aggregated scores for each of the feature in the tweet-level representation, which can be
used to train a profile-level fake news spreader classifier.
3</p>
        <sec id="sec-8-1-1">
          <title>Implementation</title>
          <p>The implementation of our submission to the evaluation campaign is publicly available1
and the details are described below.
1 http://github.com/rmit-ir/pan2020-rmit</p>
          <p>Training Set
Twitter profile 1
label: spreader</p>
          <p>...</p>
          <p>Twitter profile n</p>
          <p>label:
non-spreader</p>
          <p>tweet 1
label: spreader</p>
          <p>...</p>
          <p>tweet 100
label: spreader</p>
          <p>...</p>
          <p>tweet 1
label: non-spreader</p>
          <p>...</p>
          <p>tweet 100
label: non-spreader
fine-tune</p>
          <p>BERT
tweet from a
profile in the
test set</p>
          <p>apply
Tweet-Level</p>
          <p>Spreader
Prediction (TLSP)</p>
          <p>
            model
Probability(spreader)
The training data provided by the organizers contain tweets in two languages: English
and Spanish [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]. Each language consists of 300 Twitter profiles, and each profile has
100 tweets. Due to time constraints, we only addressed the task for the English
language. The training dataset is balanced, i.e., half of the Twitter profiles are fake-news
spreaders, while the other half are labeled as non-spreaders. Only the content of tweets
is provided. In our experiments, the tweet content is preprocessed using the tokenizer
provided by the library used to implement the TLSP model, described in Section 3.2.
3.2
          </p>
        </sec>
      </sec>
      <sec id="sec-8-2">
        <title>Tweet-Level Spreader Prediction</title>
      </sec>
    </sec>
    <sec id="sec-9">
      <title>The TLSP has been instantiated as a fine-tuned BERT binary classifier. BERT stands</title>
      <p>
        for Bidirectional Encoder Representations Transformers, and is designed to pre-train
deep bidirectional representations from unlabeled text by jointly conditioning on both
left and right context in all layers [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The pre-trained BERT model are used to get the
word embedding of the text and the embeddings are then fed into a Gated Recurrent
      </p>
    </sec>
    <sec id="sec-10">
      <title>Units (GRU) [3] to produce a prediction of the probability of the tweet belonging to a fake-news spreader.</title>
      <p>We used the BERT implementation in the Transformers library2 and the GRU
implementation in the torch.nn library3. The parameters used to fine-tune the model
are listed in Table 2.
2 https://huggingface.co/transformers/model_doc/bert.html
3 https://pytorch.org/docs/master/generated/torch.nn.GRU.html</p>
    </sec>
    <sec id="sec-11">
      <title>The TLSP model is trained with the all the training data available. The model is then applied to the tweets in the validation set. The predicted probability of being a fake-news spreader tweet is then used as the TLSP feature in the tweet-level representation.</title>
      <p>3.3</p>
      <sec id="sec-11-1">
        <title>Tweet-Level Feature Representation</title>
      </sec>
    </sec>
    <sec id="sec-12">
      <title>Besides the TLSP score, we computed the rest of the tweet-level features as follows:</title>
      <p>
        – Sentiment: We used the VADER sentiment analysis system to compute the
sentiment intensity of each tweet [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], using the implementation provided by the authors.4
Given a tweet, the sentiment polarity is represented as a numeric score between -1
(negative) and 1 (positive).
– Emojis and hashtags: For each tweet, the frequency of emojis and hashtags is
computed. To extract emojis, We used the spacymoji library.5
– Political Presence: We aimed to model a political profile of the Twitter users.
However –due to time limitations– the current version only indicates the presence of the
term trump.
3.4
      </p>
      <sec id="sec-12-1">
        <title>Profile-Level Classification</title>
        <p>As it is shown in the Figure 1, the final model building firstly transforms the tweet-level
representation to the user profile-level representation. After aggregating the features
that are retrieved at the tweet-level to retrieve the profile-level features, this vector is
fed to an SVM classifier6 to create the final model.
4 https://github.com/cjhutto/vaderSentiment
5 https://spacy.io/universe/project/spacymoji
6 We used the scikit-learn implementation
(sklearn.SVM.SVC) with default paramenters.
of</p>
      </sec>
    </sec>
    <sec id="sec-13">
      <title>C-Support</title>
    </sec>
    <sec id="sec-14">
      <title>Vector</title>
    </sec>
    <sec id="sec-15">
      <title>Classification</title>
      <sec id="sec-15-1">
        <title>Results</title>
        <sec id="sec-15-1-1">
          <title>Preliminary Results Using the Training Data</title>
        </sec>
      </sec>
    </sec>
    <sec id="sec-16">
      <title>In order to define the run used to make the official submission, we tried different com</title>
      <p>binations of features for the tweet-level representation, as well as different machine
learning algorithms as the fake news spreader classifier. Table 3 shows the
effectiveness in terms of Accuracy, Precision, and Recall for different runs, using 10-fold
crossvalidation over the training data.7 Using all features and SVM as the profile-level
classifier obtained the best results, and this is the run we submitted via the TIRA Integrated</p>
    </sec>
    <sec id="sec-17">
      <title>Research Architecture [10].</title>
      <p>7 In order to avoid overfitting, the same training-test split is used to build both tweet-level (i.e.,</p>
    </sec>
    <sec id="sec-18">
      <title>TLSP) and profile-level classifiers.</title>
      <p>8 All the results are available at https://pan.webis.de/clef20/pan20-web/author-profiling.html#
results.
not its author is a spreader of fake news. Our approach consists of two steps: (i) we
first model sentiment, political presence, and language features of fake news spreaders
at tweet level; (ii) we then generate a profile-level representation to feed to a binary
classifier to distinguish user profiles into spreaders or non-spreaders of fake news. Our
model achieves a 70% accuracy in a 10-fold cross validation using the training set
provided by the organizers. We have a number of improvements planned for our future
work:</p>
      <sec id="sec-18-1">
        <title>Modeling emotions in addition to sentiment. Instead of only analyzing the sentiment</title>
        <p>
          intensity of tweets, we plan to incorporate emotions (e.g. fear, disgust, joy, sadness,
and anger) and follow up recent work that studies the relation between emotions
and fake news spreading behaviors [
          <xref ref-type="bibr" rid="ref5 ref6">6,5</xref>
          ].
        </p>
      </sec>
    </sec>
    <sec id="sec-19">
      <title>Modeling political presence. We believe extracting entities from tweets and charac</title>
      <p>terizing those entities to create a political profile for tweets (e.g., by performing
entity linking with a knowledge base) may lead to a better identification of fake
news spreaders.</p>
    </sec>
    <sec id="sec-20">
      <title>Understanding the impact of TLSP. Although the fine-tuned BERT model obtained</title>
      <p>promising results, we would like to explore other embedding transforms such as</p>
    </sec>
    <sec id="sec-21">
      <title>GPT-3 [2] to better understand the impact of the TLSP component w.r.t. to the overall performance of our approach.</title>
    </sec>
    <sec id="sec-22">
      <title>Incorporate multilingual inputs. We plan to instantiate our proposed approach to other</title>
      <p>languages such as Spanish.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Allcott</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gentzkow</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Social media and fake news in the 2016 election</article-title>
          .
          <source>Journal of Economic Perspectives</source>
          <volume>31</volume>
          (
          <issue>2</issue>
          ),
          <fpage>211</fpage>
          -
          <lpage>36</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Brown</surname>
          </string-name>
          , T.B.,
          <string-name>
            <surname>Mann</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ryder</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Subbiah</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaplan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dhariwal</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neelakantan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shyam</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sastry</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Askell</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , et al.:
          <article-title>Language models are few-shot learners</article-title>
          . arXiv preprint arXiv:
          <year>2005</year>
          .
          <volume>14165</volume>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cho</surname>
          </string-name>
          , K.,
          <string-name>
            <surname>van Merriënboer</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gulcehre</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bahdanau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bougares</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schwenk</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Learning phrase representations using RNN encoder-decoder for statistical machine translation</article-title>
          .
          <source>In: Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP'14)</source>
          . pp.
          <fpage>1724</fpage>
          -
          <lpage>1734</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          : BERT:
          <article-title>Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          .
          <source>In: Proceedings of the</source>
          <year>2019</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-</article-title>
          <source>HLT'19)</source>
          . pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Ghanem</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>An Emotional Analysis of False Information in Social Media and News Articles</article-title>
          .
          <source>ACM Transactions on Internet Technology (TOIT) 20(2)</source>
          ,
          <fpage>1</fpage>
          -
          <lpage>18</lpage>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Giachanou</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Crestani</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Leveraging emotional signals for credibility detection</article-title>
          .
          <source>In: Proceedings of the 42nd International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR'19)</source>
          . pp.
          <fpage>877</fpage>
          -
          <lpage>880</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Guess</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nagler</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tucker</surname>
          </string-name>
          , J.:
          <article-title>Less than you think: Prevalence and predictors of fake news dissemination on Facebook</article-title>
          .
          <source>Science Advances</source>
          <volume>5</volume>
          (
          <issue>1</issue>
          ),
          <year>eaau4586</year>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hutto</surname>
            ,
            <given-names>C.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gilbert</surname>
          </string-name>
          , E.:
          <article-title>VADER: A parsimonious rule-based model for sentiment analysis of social media text</article-title>
          . In: Eighth
          <source>international AAAI Conference on Weblogs and Social Media (ICWSM-14)</source>
          . pp.
          <fpage>216</fpage>
          -
          <lpage>225</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>Y.F.B.</given-names>
          </string-name>
          :
          <article-title>Early detection of fake news on social media through propagation path classification with recurrent and convolutional networks</article-title>
          .
          <source>In: Thirty-Second AAAI Conference on Artificial Intelligence</source>
          . pp.
          <fpage>354</fpage>
          -
          <lpage>361</lpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gollub</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wiegmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>TIRA Integrated Research Architecture</article-title>
          . In: Ferro,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <surname>C</surname>
          </string-name>
          . (eds.)
          <article-title>Information Retrieval Evaluation in a Changing World</article-title>
          . Springer (Sep
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Franco-Salvador</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>A Low Dimensionality Representation for Language Variety Identification</article-title>
          .
          <source>In: International Conference on Intelligent Text Processing and Computational Linguistics</source>
          . pp.
          <fpage>156</fpage>
          -
          <lpage>169</lpage>
          . Springer (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Giachanou</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghanem</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Overview of the 8th Author Profiling Task at PAN 2020: Profiling Fake News Spreaders on Twitter</article-title>
          . In: Cappellato,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Eickhoff</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Névéol</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . (eds.)
          <article-title>CLEF 2020 Labs and Workshops, Notebook Papers</article-title>
          .
          <source>CEUR-WS.org (Sep</source>
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Ruchansky</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Seo</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , Liu,
          <string-name>
            <surname>Y.</surname>
          </string-name>
          :
          <article-title>Csi: A hybrid deep model for fake news detection</article-title>
          .
          <source>In: Proceedings of the 2017 ACM on Conference on Information and Knowledge Management (CIKM'17)</source>
          . pp.
          <fpage>797</fpage>
          -
          <lpage>806</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Shu</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sliva</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Liu, H.:
          <article-title>Fake news detection on social media: A data mining perspective</article-title>
          .
          <source>ACM SIGKDD Explorations Newsletter</source>
          <volume>19</volume>
          (
          <issue>1</issue>
          ),
          <fpage>22</fpage>
          -
          <lpage>36</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>