<!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>
      <journal-title-group>
        <journal-title>A Framework to Identify and secure the
Issues of Fake News and Rumours in Social Networking.</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <article-id pub-id-type="doi">10.1109/icdm.2019.00062</article-id>
      <title-group>
        <article-title>Detecting Fake News Spreaders on Twitter Using Universal Sentence Encoder</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Soumayan Bandhu Majumder, Dipankar Das Department of Computer Science &amp; Engineering Jadavpur University</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <volume>2</volume>
      <abstract>
        <p>In the present attempt, we have developed a framework to detect the fake news spreaders on twitter by utilizing their tweets. Here, we have employed the pre-trained sentence embedding of Google and fed this embedding to a Long Short Term Memory (LSTM) based deep learning framework. Finally, the embedding is passed through an attention layer and predicts whether an author is prone to spread fake news or not. We have built models for two languages - English and Spanish. We have achieved 72% accuracy in this fake news spreader detection task.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1 Introduction
In the present work, we have developed techniques to detect profiles of fake news
spreaders. Fake news detection is becoming one of the challenging tasks of recent
years. However, in this present task, instead of detecting fake news, we are
concentrating on detecting it at user level. Thus, in order to accomplish our goals, we
handle tweets at chunk level instead of handling each tweet, because here we have to
detect the author of fake news, not the news type.</p>
      <p>
        We participated in the profiling fake news spreader shared task [
        <xref ref-type="bibr" rid="ref9">14</xref>
        ] under
PAN workshop and the organizers provided us the dataset. We have used a
pretrained word embedding and fed it into the LSTM with attention based deep learning
framework to achieve the desired output. The systems were hosted and evaluated on
TIRA [
        <xref ref-type="bibr" rid="ref10">15</xref>
        ], a web service that aims to facilitate software submissions and evaluations
for shared tasks. Here we first use the universal sentence encoder of Google for
converting texts to embedding then pass each authors tweet one by one into the
LSTM network, here we will send tweets of each author in different time stamps one
by one. After that send this output to attention layer to know the importance of each
tweet and at last pass it through the sigmoid activation layer.
      </p>
      <p>The rest of the paper is organized as follows. Related work on this particular
topic is discussed in Section 2 whereas Section 3 briefly shows the insights of the
datasets. Section 4 describes the method we used to detect the fake author and also
describes our models and proposed architecture in depth. Section 5 is dedicated to
experiments and results. Finally, in Section 6, we present the conclusions and briefly
discuss about future work.</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>Fake news is currently one of the hottest topics of last four to five years and many
researches are being conducted in this field. Some of the researchers suggest solving
the fake news detection problem using the content of the news and some suggest
detecting it based on the social context. Therefore, we can detect fake news in two
ways – a) news content model, and b) social context model. In case of news content
model, we can detect fake news in two ways – a) knowledge based detection, and b)
style based detection. In knowledge based detection, we generally check the news
content or extract the knowledge from the news or other repositories and compare it
with the authentic news sites whereas in case of style based detection, we focus on the
writing styles instead of the news content or knowledge. Here, we mainly focus on the
linguistic features and readability features of the news. In social content model, we
can detect fake news also in two ways – a) propagation based techniques, and b)
credibility based techniques. In propagation based techniques, we find various news
propagated on the social media and track the original news based on such propagated
news. In credibility based technique, we have to find the relationship between news
article and users, publishers, posts, comments etc.</p>
      <p>
        George et. al. [1] analyse the influence of linguistic properties and contextual
features in detecting fake news by using different type of techniques like Naïve
Bayes, SVM, KNN etc. Perez-Rosas et. al. [2] here cover seven different types of
news domains and analyse linguistic differences in fake and real news and also
compare different domain characteristics. Bedi et. al. [4] use authorized news
database to verify fake news and real news. Dey et. al. [5] do feature extraction and
analyse the linguistic patterns and then apply KNN algorithm to classify news. Uppal
et. al. [
        <xref ref-type="bibr" rid="ref2">7</xref>
        ] propose discourse level analysis for deception detection of news documents.
      </p>
      <p>
        However, one problem with these above mentioned techniques is that they
detect the fake news after it spreads on social media. But, if we can detect it from the
source, this problem can be avoided. So, one of our aims should be to detect the
author of the fake news. Already, there are some works on fake news spreader
detection [
        <xref ref-type="bibr" rid="ref5">10</xref>
        ]. But, it is applied only in English language. So, in this paper, we are
going to implement it in both English and Spanish languages and we have used some
different embedding techniques instead of GLOVE embedding.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3 Dataset</title>
      <p>We participated in the profiling fake news spreader shared task of the PAN workshop
at the CLEF (Conference and Labs of the Evaluation Forum) 2020 conference. In this
task, the dataset was provided by the shared task organizers. We are given with
hundred tweets of each author and a total of 300 authors tweets have been given to us
for training. For each English and Spanish language, we are given 300 authors tweet
(100 tweets for each author) to train the model. For evaluation, we have to submit our
software to the TIRA infrastructure and after that we have to execute it on the test
dataset. We have given snapshots of some tweets of both English and Spanish
language from my training set.</p>
      <p>Spanish tweets of an author</p>
      <p>English tweets of an author
4</p>
    </sec>
    <sec id="sec-4">
      <title>Methods</title>
      <p>Pre-processing: Here, we first tried to conduct some text pre-processing techniques
on the tweets by removing everything except letters from ‘a’- ‘z’ and ‘A’ – ‘Z’. We
have also removed all the urls and html tags or elements present in the tweets. Finally,
we removed all types of emoji or emoticons present in the tweets. We send this
preprocessed data to a universal-sentence-encoder. But, we observed that the
universalsentence-encoder performs better if we send those tweets in raw form rather than
preprocessed form. Thus, we choose to use those tweets without pre-processing.
LSTM Framework: Here, we have implemented embedding of our tweets and then
passed it through the LSTM layer and then attention layer and predicted the output
lastly through the sigmoid activation function. Here, we have used sentence
embedding, instead of word embedding. We have employed
universal-sentenceencoder-xling_en_es_1 (This is a cross lingual module and an extension of the
normal universal sentence encoder). We also tried with
universal-sentence-encodermultilingual-large-v3, but as this shared task is specifically for English and Spanish
language, we choose universal-sentence-encoder-xling_en_es_1 (which is specifically
trained for English and Spanish language) which can handle 16 languages including
English and Spanish. We named it as Universal Sentence Encoder or U.S.E.,
interchangeably.</p>
      <p>One feature of this universal sentence encoder is that it always gives output
of a 512 dimension vector whatever be the input is. Here, we are given with the
tweets of an author as the input to the U.S.E. and it produces 512 dimension vector.
Thus, for each of the authors, we are getting an output of (100 x 512) dimensional
vector output, as we have 100 tweets of each author. As we have 300 such authors in
both English and Spanish languages for training our model, we developed a LSTM
network with 128 units. The overall framework takes 512 features at a time and
contains 100 such timestamps. In order to avoid over fitting, we have also used
dropout of 0.3 and recurrent dropout of 0.2. We tried with different hyper-parameters
but these two gives the best result. We also tried with different batch-sizes such as 16,
32 and 64 but we choose 64 among these.</p>
      <p>In the present framework, we tried to train both the languages differently and
then used to train both the language jointly. At first, we used any of these two
sentence embedding – 1) U.S.E. multilingual large-v3 (version 3) and 2) U.S.E.
xling_en_es-1. After that, we feed those outputs to the LSTM network. Because, we
aimed to capture long term dependency through LSTM. However, in some cases, it is
forgetful and does not know which input should be given more or less importance.</p>
      <p>
        For example (from twitter) - “Breaking News: Tom Hanks and his wife Rita
Wilson announced Wednesday that they have tested positive for the coronavirus”.
Here, to predict the word “coronavirus”, we should give more emphasis to “tested”
and “positive” instead of “Tom Hanks” or “Rita Wilson”. So, here we have to give
relative importance to each of the words instead of giving them same importance.
Therefore, we have applied the attention model which is presented in the Bahdanu’s
paper [
        <xref ref-type="bibr" rid="ref3">8</xref>
        ]. But here we are applying this in sentence level instead of word level.
Because here some news or tweets of an author are fake and some are real. Finally,
we feed that output of the attention layer to the sigmoid activation unit. We then
compile our model using adam optimizer and used binary_crossentropy as loss
function. As both the classes are balanced, we considered accuracy as our evaluation
metric to measure the performances of our models.
We implemented the above mentioned models with universal sentence encoder
multilingual large and universal sentence encoder-xling-en_es-1. We also tried to
train both the languages separately and jointly with different batch sizes. But, as we
mentioned earlier, we don’t have access of test set and we have to submit our model
to TIRA infrastructure. Then it will automatically do evaluation of our model on
blinded test set. The performance of our system is measured by accuracy as the two
classes are balanced. Here, we have to measure individual accuracies of each
language and then finally average the accuracy values of each language to obtain the
final accuracy.
Therefore, for experimenting with different models or architecture, we split our
dataset into training set and evaluation set. It was observed that when we train both
the language jointly, we split data in the ratio of 8:2. So, 480 authors feeds (each
author has 100 tweets) were used for training and 120 authors data were used for
validation (check the above mentioned table). From the above table we are getting
maximum 81.50% accuracy. In case we train each language differently, we have used
270 authors data for training and 30 authors data for validation (check the below
mentioned table).
      </p>
      <p>On the other hand, if we do average of the above two validation accuracies,
we achieved around 71% accuracy. Thus, finally, we choose universal sentence
encoder xling-en_es-1 trained on both the languages with batch size of 64 over the
other models as its validation accuracy is 81.50%. When we submit our final model
which uses Universal Sentence Encoder xling-en_es-1 and trained on both the
languages jointly with the batch size of 64 to TIRA for evaluation on hidden test set,
we get an accuracy of 64% in English language and 80% accuracy on Spanish
language, respectively.</p>
    </sec>
    <sec id="sec-5">
      <title>6 Conclusions</title>
      <p>We achieved 64% accuracy in English language fake author detection task, which
says that there is a scope of lot to improve and there is some issue of overfitting too
though we used dropout and recurrent dropout at the time of training the model. Thus,
in future, we should take this note to improve this model. If we want to use this
software in real life then how will it perform much depends on how the test dataset of
shared task of PAN reflects the real world dataset. We achieve 80% accuracy in
Spanish language author detection task, which is quite satisfactory, but again if we
want to implement this software in real world, then its performance totally depends on
how much test dataset of PAN shared task reflects the real world dataset.
We can also use different types of embedding in future for this task like BERT, but
main disadvantage of BERT is that it can take maximum 512 words at a time, so there
is a constraint. However, we will plan some reliable frameworks to handle the issues.</p>
    </sec>
    <sec id="sec-6">
      <title>7 References</title>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Rajesh</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kumar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Kadu</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          (
          <year>2019</year>
          ).
          <source>Fraudulent News Detection using Machine Learning Approaches. 2019 Global Conference For Advancement In Technology (GCAT)</source>
          .
          <source>doi: 10.1109/gcat47503</source>
          .
          <year>2019</year>
          .8978436
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Uppal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sachdeva</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Sharma</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          (
          <year>2020</year>
          ).
          <article-title>Fake news detection using discourse segment structure analysis</article-title>
          .
          <source>2020 10Th International Conference On Cloud Computing</source>
          , Data Science &amp;
          <string-name>
            <surname>Engineering</surname>
          </string-name>
          (Confluence).
          <source>doi: 10.1109/confluence47617</source>
          .
          <year>2020</year>
          .9058106
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Bahdanau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cho</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          (
          <year>2014</year>
          ).
          <article-title>Neural Machine Translation by Jointly Learning to Align and Translate</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Karimi</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Roy</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saba-Sadiya</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Tang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          (
          <year>2018</year>
          ).
          <article-title>Multi-Source Multi-Class Fake News Detection</article-title>
          .
          <source>In Proceedings of the 27th International Conference on Computational Linguistics</source>
          (pp.
          <fpage>1546</fpage>
          -
          <lpage>1557</lpage>
          ). Santa Fe, New Mexico, USA: Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Giachanou</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ríssola</surname>
            ,
            <given-names>E. A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghanem</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Crestani</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          (
          <year>2020</year>
          ).
          <article-title>The Role of Personality and Linguistic Patterns in Discriminating Between Fake News Spreaders</article-title>
          and
          <string-name>
            <given-names>Fact</given-names>
            <surname>Checkers</surname>
          </string-name>
          .
          <source>Natural Language Processing and Information Systems: 25th International Conference on Applications of Natural Language to Information Systems, NLDB</source>
          <year>2020</year>
          , Saarbrücken, Germany, June 24-26,
          <year>2020</year>
          , Proceedings,
          <volume>12089</volume>
          ,
          <fpage>181</fpage>
          -
          <lpage>192</lpage>
          . https://doi.org/10.1007/978-3-
          <fpage>030</fpage>
          -51310-8_
          <fpage>17</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Davoodnia</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sepas-Moghaddam</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Etemad</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          (
          <year>2020</year>
          ).
          <article-title>Classification of Hand Movements From EEG Using a Deep Attention-Based LSTM Network</article-title>
          .
          <source>IEEE Sensors Journal</source>
          ,
          <volume>20</volume>
          (
          <issue>6</issue>
          ),
          <fpage>3113</fpage>
          -
          <lpage>3122</lpage>
          . doi:
          <volume>10</volume>
          .1109/jsen.
          <year>2019</year>
          .2956998
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Kosmajac</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Keselj</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          (
          <year>2019</year>
          ).
          <article-title>Twitter User Profiling: Bot and Gender Identification</article-title>
          .
          <source>In CLEF 2019 Labs and Workshops, Notebook Papers. CEUR-WS.org.</source>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Przybyła</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          (
          <year>2019</year>
          ).
          <article-title>Detecting Bot Accounts on Twitter by Measuring Message Predictability</article-title>
          .
          <source>In CLEF 2019 Labs and Workshops, Notebook Papers. CEUR-WS.org.</source>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [14]
          <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>
          , &amp;
          <string-name>
            <surname>Rosso</surname>
            <given-names>P.</given-names>
          </string-name>
          (
          <year>2020</year>
          ).
          <article-title>Overview of the 8th Author Profiling Task at PAN 2020: Profiling Fake News Spreaders on Twitter</article-title>
          . In: L.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Eickhoff</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>A</surname>
          </string-name>
          . Névéol (eds.)
          <article-title>CLEF 2020 Labs and Workshops, Notebook Papers</article-title>
          .
          <source>CEUR Workshop Proceedings.CEUR-WS.org.</source>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [15]
          <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>
          , &amp;
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          (
          <year>2019</year>
          ).
          <article-title>TIRA Integrated Research Architecture</article-title>
          . In: Ferro,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <surname>C</surname>
          </string-name>
          . (eds.)
          <article-title>Information Retrieval Evaluation in a Changing World - Lessons Learned from 20 Years of</article-title>
          CLEF. Springer.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>