<!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>Bucharest, Romania
albert.pritzkau@fkie.fraunhofer.de (A. Pritzkau)
{ https://www.fkie.fraunhofer.de/ (A. Pritzkau)</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>NLytics at CheckThat! 2021: Multi-class fake news detection of news articles and domain identification with RoBERTa - a baseline model</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Albert Pritzkau</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Fraunhofer Institute for Communication, Information Processing and Ergonomics FKIE</institution>
          ,
          <addr-line>Fraunhoferstraße 20, 53343 Wachtberg</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2021</year>
      </pub-date>
      <volume>000</volume>
      <fpage>0</fpage>
      <lpage>0001</lpage>
      <abstract>
        <p>The following system description presents our approach to the detection of fake news in texts. The given task has been framed as a multi-class classification problem. The multi-class classification problem is one in which a target variable such as the given class label is associated with every input chunk. In order to assign class labels to the given documents, we opted for RoBERTa (A Robustly Optimized BERT Pretraining Approach) as a neural network architecture for sequence classification. Starting of with a pre-trained model for language representation we fine-tuned this model on the given classification task with the provided annotated data in supervised training steps.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Sequence Classification</kwd>
        <kwd>Deep Learning</kwd>
        <kwd>Transformers</kwd>
        <kwd>RoBERTa</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The proliferation of disinformation online, has given rise to a lot of research on automatic fake
news detection. CLEF 2021 - CheckThat! Lab [
        <xref ref-type="bibr" rid="ref1 ref20">1, 20</xref>
        ] considers disinformation as a
communication phenomenon. By detecting the use of various linguistic features in communication, it takes
into account not only the content but also how a subject matter is communicated.
      </p>
      <p>
        The shared task [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] defines the following subtasks:
Subtask A Given the “textual content” of an article, specify a credibility level for the content
ranging between “true” and “false” including “other”.
      </p>
      <p>Subtask B Given the “textual content” of an article, specify a tpical domain covered by the
content.</p>
      <p>
        In this work, we covered our approach on both multi-class classification tasks by detecting
fake news in the former and assigning a topical domain in the latter task. To build our models,
both subtasks only textual content is given as input. Below, we describe the systems built for
these two subtasks. At the core of our systems is RoBERTa [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], a pre-trained model based on
the Transformer architecture [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        The goal of the shared task is to investigate automatic techniques for identifying various
rhetorical and psychological features of disinformation campaigns. A comprehensive survey
on fake news has been presented by Zhou and Zafarani [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Based on the structure of data
reflecting diferent aspects of communication, they identified four diferent perspectives on fake
news: (1) the false knowledge it carries, (2) its writing style, (3) its propagation patterns, and (4)
the credibility of its creators and spreaders.
      </p>
      <p>
        The shared task emphasizes communicative styles that systematically co-occur with
persuasive intentions of (political) media actors. Similar to de Vreese et al. [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], propaganda and
persuasion is considered as an expression of political communication content and style. Hence,
beyond the actual subject of communication, the way it is communicated is gaining importance.
      </p>
      <p>
        We build our work on top of this foundation by first investigating content-based approaches
for information discovery. Traditional information discovery methods are based on content:
documents, terms, and the relationships between them [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. They can be considered as general
Information Extraction (IE) methods, automatically deriving structured information from
unstructured and/or semi-structured machine-readable documents. Communities of researchers
contributed various techniques from machine learning, information retrieval, and computational
linguistics to the diferent aspects of the information extraction problem. From a computer
science perspective, existing approaches can be roughly divided into the following categories:
rule-based, supervised, and semi-supervised. In our case, we followed the supervised approach
by reframing the complex language understanding task as a simple classification problem. Text
classification also known as text tagging or text categorization is the process of categorizing
text into organized groups. By using Natural Language Processing (NLP), text classifiers can
automatically analyze human language texts and then assign a set of predefined tags or
categories based on their content. Historically, the evolution of text classifiers can be divided into
three stages: (1) simple lexicon- or keyword-based classifiers, (2) classifiers using distributed
semantics, and (3) deep learning classifiers with advanced linguistic features.
      </p>
      <sec id="sec-2-1">
        <title>2.1. Deep Learning for Information Extraction</title>
        <p>
          Recent work on text classification uses neural networks, particularly Deep Learning (DL).
Badjatiya et al. [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] demonstrated that these architectures, including variants of recurrent neural
networks (RNN) [
          <xref ref-type="bibr" rid="ref10 ref11 ref9">9, 10, 11</xref>
          ], convolutional neural networks (CNN) Zhang et al. [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ], or their
combination (CharCNN, WordCNN, and HybridCNN), produce state-of-the-art results and
outperform baseline methods (character n-grams, TF-IDF or bag-of-words representations).
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Deep Learning architectures</title>
        <p>
          Until recently, the dominant paradigm in approaching NLP tasks has been focused on the
design of neural architectures, using only task-specific data and word embeddings such as
those mentioned above. This led to the development of models, such as Long Short Term
Memory (LSTM) networks or Convolution Neural Networks (CNN), that achieve significantly
better results in a range of NLP tasks than less complex classifiers, such as Support Vector
Machines, Logistic Regression or Decision Tree Models. Badjatiya et al. [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] demonstrated that
these approaches outperform models based on character and word n-gram representations. In
the same paradigm of pre-trained models, methods like BERT [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] and XLNet [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] have been
shown to achieve state-of-the-art performance in a variety of tasks.
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. Pre-trained Deep Language Representation Model</title>
        <p>
          Indeed, the usage of a pre-trained word embedding layer to map the text into vector space which
is then passed through a neural network, marked a significant step forward in text classification.
The potential of pre-trained language models, as e.g. Word2Vec [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ], GloVe [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ], fastText [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ],
or ELMo [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] to capture the local patterns of features to benefit text classification, has been
described by Castelle [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]. Modern pre-trained language models use unsupervised learning
techniques such as creating RNNs embeddings on large texts corpora to gain some primal
“knowledge” of the language structures before a more specific supervised training steps in.
        </p>
      </sec>
      <sec id="sec-2-4">
        <title>2.4. About BERT and RoBERTa</title>
        <p>
          BERT stands for Bidirectional Encoder Representations from Transformers. It is based on the
Transformer model architectures introduced by Vaswani et al. [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]. The general approach consists
of two stages: first, BERT is pre-trained on vast amounts of text, with an unsupervised objective
of masked language modeling and next-sentence prediction. Second, this pre-trained network is
then fine-tuned on task specific, labeled data. The Transformer architecture is composed of two
parts, an Encoder and a Decoder, for each of the two stages. The Encoder used in BERT is an
attention-based architecture for NLP. It works by performing a small, constant number of steps.
In each step, it applies an attention mechanism to understand relationships between all words
in a sentence, regardless of their respective position. By pre-training language representations,
the Encoder yields models that can either be used to extract high quality language features from
text data, or fine-tune these models on specific NLP tasks (classification, entity recognition,
question answering, etc.). We rely on RoBERTa [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], a pre-trained Encoder model which builds
on BERT’s language masking strategy. However, it modifies key hyperparameters in BERT such
as removing BERT’s next-sentence pre-training objective, and training with much larger
minibatches and learning rates. Furthermore, RoBERTa was also trained on an order of magnitude
more data than BERT, for a longer amount of time. This allows RoBERTa representations to
generalize even better to downstream tasks compared to BERT. In this study, RoBERTa is at the
core of each solution of the given subtasks.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset</title>
      <p>
        The data for the task was developed during the CLEF-2021 CheckThat! campaign [
        <xref ref-type="bibr" rid="ref1 ref2 ref20">1, 20, 2</xref>
        ]
and provided by Shahi et al. [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. The AMUSED framework presented by Shahi [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] was used
for data collection. Both subtasked were framed as multi-class classification problem. Class
      </p>
      <p>litcaem cyooenm ircem
(b) topic domain labels
s
n
o
it
c
e
l
e
n
o
it
a
c
u
d
e
label were provided as credibility levels {false, partially false, true, other} and topical categories
{health, economy, crime, climate, elections, and education} for each subtask, respectively. The
content parts are distributed between title and body of messages. Both field were concatenated
to serve as the input for training.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Exploratory data analysis</title>
      <p>Unbalanced class distribution Imbalance in data can exert a major impact on the value
and meaning of accuracy and on certain other well-known performance metrics of an
analytical model. Figure 1 depicts a clear skew towards false information and health information,
respectively, in the respective subtask.</p>
      <p>Token count Transformer-based models are unable to process long sequences due to their
self-attention mechanism, which scales quadratically with the sequence length. BERT-based
models enforce a hard limit of 512 tokens, which is usually enough to process the majority of
sequences in most benchmark datasets. Statistical summary of token counts in Table 1, however,
suggests that most of the sequences of the training set exceed this limit. Thus, anything beyond
this limitation will be truncated.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Our approach</title>
      <sec id="sec-5-1">
        <title>5.1. Experimental setup</title>
        <p>
          In this section, we provide a general overview of our approach to both subtasks.
Model Architecture Subtasks A and B are both given as a multi-class classification problem.
Our model for this subtask is based on RoBERTa. For the classification task, fine-tuning is
performed using RobertaForSequenceClassification [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ] – roberta-base – as the pre-trained model.
RobertaForSequenceClassification optimizes for Binary Cross Entropy Loss using an AdamW
optimizer with an initial learning rate set to 2e-5. Fine-tuning is done on NVIDIA TESLA P100
GPU using the Pytorch [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] framework with a vocabulary size of 50265 and an input size of 512.
The model is trained to optimize the objective for 3 epochs. To estimate the performance of the
resulting models we have chosen a ratio of 82/18 to split the data into training and validation
set.
        </p>
        <p>Input Embeddings The input embedding layer converts the inputs into sequences of features:
word-level sentence embeddings. These embedding features will be further processed by the
latter encoding layers.</p>
        <p>Word-Level Sentence Embeddings A sentence is split into words 1, ...,  with length
of n by the WordPiece tokenizer [25]. The word  and its index  (’s absolute position in the
sentence) are projected to vectors by embedding sub-layers, and then added to the index-aware
word embeddings:
ˆ =  ()</p>
        <p>
          ˆ = ()
ℎ =  (ˆ + ˆ)
Attention Layers Attention layers [26, 27] aim to retrieve information from a set of context
vectors  related to a query vector . An attention layer first calculates the matching score 
between the query vector  and each context vector  . Scores are then normalized by softmax:
 = (,  )
  = ( )/Σ ()
The output of an attention layer is the weighted sum of the context vectors w.r.t. the softmax
normalized score: → (, { }) = Σ     . An attention layer is called self-attention
when the query vector  is in the set of context vectors  . Specifically, we use the multi-head
attention following Transformer [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ].
Target Encoding We encode the target labels using a multi-label binarizer as an analog of
one-hot aka one-of-K scheme to multiple labels.
        </p>
      </sec>
      <sec id="sec-5-2">
        <title>5.2. Results and Discussion</title>
        <p>We participated in both text classification subtasks. Oficial evaluation results on the test set
are presented in Table 3 and Table 4 for each subtask, respectively. We focused on suitable
combinations of deep learning methods as well as their hyperparameter settings. Finetuning
pre-trained language models like RoBERTa on downstream tasks has become ubiquitous in
NLP research and applied NLP. Even without extensive pre-processing of the training data,
we already achieve competitive results and can serve as strong baseline models which, when
ifne-tuned, significantly outperform training models from scratch. The submission for each
subtask is based on the best performing model checkpoint on the validation set as shown in
Table 2.</p>
        <p>When improving on the pretrained baseline models, class imabalance appears to be a primary
challenge. This is clearly reflected in Figure 2, in particular, for the fake news detection subtask.
The poor performance especially for the categories true and other, correlates with distribution
of training data across these categories.</p>
        <p>A commonly used tactic to deal with imbalanced datasets is to assign weights to each label.
(a) fake news detection
(b) topic domain identification</p>
        <p>Alternative solutions for coping with unbalanced datasets for supervised machine learning are
undersampling or oversampling. Undersampling only considers a subset of an overpopulated
class to end up with a balanced dataset. With the same goal oversampling creates copies of the
unbalanced classes. Overfitting poses the most dificult challenge in this experiment, reducing
its generalizability.</p>
        <p>With the above findings, we achieve state of the art performance on the text classification
datasets. RoBERTa has proven to be powerful language representation model for various natural
language processing tasks. As the results of this study show, RoBERTa is also an efective tool
for multi-class text classification. In the future, we will probe more insight of BERT on how it
works and how to counteract its tendency to overfitting.</p>
        <p>
          To further improve our the trained baseline model, we suggest to use Longformer[28] as a
base model. Trained from RoBERTa[
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], it addresses the problem of long sequences by replacing
the attention matrices by sparse matrices, thus, allowing up to 4096 position embeddings.
        </p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion and Future work</title>
      <p>In future work, we plan to investigate more recent neural architectures for language
representation such as T5 [29] and GPT-3 [30].</p>
      <p>Furthermore, we expect great opportunities for transfer learning from the areas such as
argumentation mining [31] and ofensive language detection [ 32]. To deal with data scarcity as
a general challenge in natural language processing, we examine the application of concepts
such as active learning, semi-supervised learning [33] as well as weak supervision [34].
http://arxiv.org/abs/1912.01703. arXiv:1912.01703.
[25] Y. Wu, M. Schuster, Z. Chen, Q. V. Le, M. Norouzi, W. Macherey, M. Krikun, Y. Cao, Q. Gao,
K. Macherey, J. Klingner, A. Shah, M. Johnson, X. Liu, Ł. Kaiser, S. Gouws, Y. Kato, T. Kudo,
H. Kazawa, K. Stevens, G. Kurian, N. Patil, W. Wang, C. Young, J. Smith, J. Riesa, A. Rudnick,
O. Vinyals, G. Corrado, M. Hughes, J. Dean, Google’s Neural Machine Translation System:
Bridging the Gap between Human and Machine Translation (2016). arXiv:1609.08144.
[26] D. Bahdanau, K. H. Cho, Y. Bengio, Neural machine translation by jointly learning to align
and translate, in: 3rd International Conference on Learning Representations, ICLR 2015
Conference Track Proceedings, International Conference on Learning Representations,
ICLR, 2015. arXiv:1409.0473.
[27] K. Xu, J. L. Ba, R. Kiros, K. Cho, A. Courville, R. Salakhutdinov, R. S. Zemel, Y. Bengio,
Show, attend and tell: Neural image caption generation with visual attention, in: 32nd
International Conference on Machine Learning, ICML 2015, volume 3, International Machine
Learning Society (IMLS), 2015, pp. 2048–2057. arXiv:1502.03044.
[28] I. Beltagy, M. E. Peters, A. Cohan, Longformer: The Long-Document Transformer (2020).</p>
      <p>arXiv:2004.05150.
[29] C. Rafel, N. Shazeer, A. Roberts, K. Lee, S. Narang, M. Matena, Y. Zhou, W. Li, P. J. Liu,
Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer, arXiv
21 (2019) 1–67. arXiv:1910.10683.
[30] T. B. Brown, B. Mann, N. Ryder, M. Subbiah, J. Kaplan, P. Dhariwal, A. Neelakantan,
P. Shyam, G. Sastry, A. Askell, S. Agarwal, A. Herbert-Voss, G. Krueger, T. Henighan,
R. Child, A. Ramesh, D. M. Ziegler, J. Wu, C. Winter, C. Hesse, M. Chen, E. Sigler, M. Litwin,
S. Gray, B. Chess, J. Clark, C. Berner, S. McCandlish, A. Radford, I. Sutskever, D. Amodei,
Language models are few-shot learners, 2020. arXiv:2005.14165.
[31] M. Stede, Automatic argumentation mining and the role of stance and sentiment, Journal
of Argumentation in Context 9 (2020) 19–41. URL: https://www.jbe-platform.com/content/
journals/10.1075/jaic.00006.ste. doi:10.1075/jaic.00006.ste.
[32] M. Zampieri, S. Malmasi, P. Nakov, S. Rosenthal, N. Farra, R. Kumar, Predicting the
type and target of ofensive posts in social media, in: NAACL HLT 2019 - 2019
Conference of the North American Chapter of the Association for Computational Linguistics:
Human Language Technologies - Proceedings of the Conference, volume 1, Association
for Computational Linguistics, Stroudsburg, PA, USA, 2019, pp. 1415–1420. URL: http:
//aclweb.org/anthology/N19-1144. doi:10.18653/v1/n19-1144. arXiv:1902.09666.
[33] S. Ruder, B. Plank, Strong Baselines for Neural Semi-supervised Learning under Domain
Shift, ACL 2018 - 56th Annual Meeting of the Association for Computational Linguistics,
Proceedings of the Conference (Long Papers) 1 (2018) 1044–1054. arXiv:1804.09530.
[34] A. Ratner, S. H. Bach, H. Ehrenberg, J. Fries, S. Wu, C. Ré, Snorkel: rapid training data
creation with weak supervision, in: VLDB Journal, volume 29, Springer, 2020, pp. 709–730.
doi:10.1007/s00778-019-00552-1.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          , G. Da San Martino, T. Elsayed,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Míguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shaar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Haouari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hasanain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Babulkov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Struß</surname>
          </string-name>
          , T. Mandl,
          <string-name>
            <surname>The</surname>
            <given-names>CLEF</given-names>
          </string-name>
          -2021 CheckThat! Lab on
          <string-name>
            <given-names>Detecting</given-names>
            <surname>Check-Worthy</surname>
          </string-name>
          <string-name>
            <given-names>Claims</given-names>
            , Previously
            <surname>Fact-Checked Claims</surname>
          </string-name>
          , and Fake News,
          <source>in: Proceedings of the 43rd European Conference on Information Retrieval</source>
          , ECIR˜'
          <volume>21</volume>
          ,
          <string-name>
            <surname>Lucca</surname>
          </string-name>
          , Italy,
          <year>2021</year>
          , pp.
          <fpage>639</fpage>
          -
          <lpage>649</lpage>
          . URL: https://link.springer.com/chapter/ 10.1007/978-3-
          <fpage>030</fpage>
          -72240-1{_}
          <fpage>75</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Struß</surname>
          </string-name>
          , T. Mandl,
          <article-title>Overview of the CLEF-2021 CheckThat! Lab Task 3 on Fake News Detection</article-title>
          , in: Working Notes of CLEF 2021-
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , CLEF˜'
          <year>2021</year>
          , Bucharest, Romania (online),
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          , V. Stoyanov,
          <article-title>RoBERTa: A robustly optimized BERT pretraining approach</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1907</year>
          .11692.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Ł. Kaiser,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems</source>
          , volume
          <volume>2017</volume>
          <source>-Decem</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>5999</fpage>
          -
          <lpage>6009</lpage>
          . arXiv:
          <volume>1706</volume>
          .
          <fpage>03762</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Zafarani</surname>
          </string-name>
          , Fake News: A Survey of Research, Detection Methods, and Opportunities,
          <source>ACM Comput. Surv</source>
          <volume>1</volume>
          (
          <year>2018</year>
          ). arXiv:
          <year>1812</year>
          .00315.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>C. H. de Vreese</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Esser</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Aalberg</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Reinemann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Stanyer</surname>
          </string-name>
          ,
          <article-title>Populism as an Expression of Political Communication Content and Style: A New Perspective</article-title>
          ,
          <source>International Journal of Press/Politics</source>
          <volume>23</volume>
          (
          <year>2018</year>
          )
          <fpage>423</fpage>
          -
          <lpage>438</lpage>
          . URL: http://journals.sagepub.com/doi/10.1177/ 1940161218790035. doi:
          <volume>10</volume>
          .1177/1940161218790035.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Leskovec</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lang</surname>
          </string-name>
          ,
          <article-title>Statistical properties of community structure in large social and information networks</article-title>
          ,
          <source>Proceedings of the 17th international conference on World Wide Web. ACM</source>
          (
          <year>2008</year>
          )
          <fpage>695</fpage>
          -
          <lpage>704</lpage>
          . URL: http://dl.acm.org/citation.cfm?id=
          <fpage>1367591</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>P.</given-names>
            <surname>Badjatiya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Varma</surname>
          </string-name>
          ,
          <article-title>Deep learning for hate speech detection in tweets</article-title>
          ,
          <source>in: 26th International World Wide Web Conference</source>
          <year>2017</year>
          ,
          <article-title>WWW 2017 Companion</article-title>
          , International World Wide Web Conferences Steering Committee,
          <year>2017</year>
          , pp.
          <fpage>759</fpage>
          -
          <lpage>760</lpage>
          . doi:
          <volume>10</volume>
          . 1145/3041021.3054223. arXiv:
          <volume>1706</volume>
          .
          <fpage>00188</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>L.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <article-title>Detecting online hate speech using context aware models</article-title>
          ,
          <source>in: International Conference Recent Advances in Natural Language Processing</source>
          , RANLP, volume
          <volume>2017</volume>
          <source>-Septe, Association for Computational Linguistics (ACL)</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>260</fpage>
          -
          <lpage>266</lpage>
          . doi:
          <volume>10</volume>
          .26615/
          <fpage>978</fpage>
          -954-452-049-6-
          <lpage>036</lpage>
          . arXiv:
          <volume>1710</volume>
          .
          <fpage>07395</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.</given-names>
            <surname>Pavlopoulos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          ,
          <article-title>Deeper attention to abusive user content moderation</article-title>
          ,
          <source>in: EMNLP 2017 - Conference on Empirical Methods in Natural Language Processing</source>
          , Proceedings, Association for Computational Linguistics, Stroudsburg, PA, USA,
          <year>2017</year>
          , pp.
          <fpage>1125</fpage>
          -
          <lpage>1135</lpage>
          . URL: http://aclweb.org/anthology/D17-1117. doi:
          <volume>10</volume>
          .18653/v1/d17-
          <fpage>1117</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Pitsilis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ramampiaro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Langseth</surname>
          </string-name>
          ,
          <article-title>Efective hate-speech detection in Twitter data using recurrent neural networks</article-title>
          ,
          <source>Applied Intelligence</source>
          <volume>48</volume>
          (
          <year>2018</year>
          )
          <fpage>4730</fpage>
          -
          <lpage>4742</lpage>
          . doi:
          <volume>10</volume>
          .1007/ s10489-018-1242-y. arXiv:
          <year>1801</year>
          .04433.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Robinson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tepper</surname>
          </string-name>
          ,
          <article-title>Detecting Hate Speech on Twitter Using a ConvolutionGRU Based Deep Neural Network</article-title>
          ,
          <source>in: Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)</source>
          , volume
          <volume>10843</volume>
          LNCS, Springer Verlag,
          <year>2018</year>
          , pp.
          <fpage>745</fpage>
          -
          <lpage>760</lpage>
          . doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>319</fpage>
          -93417-4_
          <fpage>48</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , BERT:
          <article-title>Pre-training of Deep Bidirectional Transformers for Language Understanding (</article-title>
          <year>2018</year>
          ). arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          , J. Carbonell, R. Salakhutdinov,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <article-title>XLNet: Generalized Autoregressive Pretraining for Language Understanding</article-title>
          ,
          <source>Technical Report</source>
          ,
          <year>2019</year>
          . arXiv:
          <year>1906</year>
          .08237.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Sutskever</surname>
          </string-name>
          ,
          <source>Exploiting Similarities among Languages for Machine Translation</source>
          (
          <year>2013</year>
          ). arXiv:
          <volume>1309</volume>
          .
          <fpage>4168</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>J.</given-names>
            <surname>Pennington</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Socher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          , GloVe:
          <article-title>Global vectors for word representation</article-title>
          ,
          <source>in: EMNLP 2014 - 2014 Conference on Empirical Methods in Natural Language Processing, Proceedings of the Conference</source>
          ,
          <year>2014</year>
          , pp.
          <fpage>1532</fpage>
          -
          <lpage>1543</lpage>
          . doi:
          <volume>10</volume>
          .3115/v1/d14-
          <fpage>1162</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>A.</given-names>
            <surname>Joulin</surname>
          </string-name>
          , E. Grave,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bojanowski</surname>
          </string-name>
          , T. Mikolov,
          <article-title>Bag of tricks for eficient text classification, in: 15th Conference of the European Chapter of the Association for Computational Linguistics</article-title>
          ,
          <source>EACL 2017 - Proceedings of Conference</source>
          , volume
          <volume>2</volume>
          ,
          <year>2017</year>
          , pp.
          <fpage>427</fpage>
          -
          <lpage>431</lpage>
          . URL: https://github.com/facebookresearch/fastText. doi:
          <volume>10</volume>
          .18653/v1/e17-
          <fpage>2068</fpage>
          . arXiv:
          <volume>1607</volume>
          .
          <fpage>01759</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>M.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Neumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Iyyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gardner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          , Deep Contextualized Word Representations,
          <source>Association for Computational Linguistics (ACL)</source>
          ,
          <year>2018</year>
          , pp.
          <fpage>2227</fpage>
          -
          <lpage>2237</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/n18-
          <fpage>1202</fpage>
          . arXiv:
          <year>1802</year>
          .05365.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>M.</given-names>
            <surname>Castelle</surname>
          </string-name>
          ,
          <source>The Linguistic Ideologies of Deep Abusive Language Classification</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>160</fpage>
          -
          <lpage>170</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/w18-
          <fpage>5120</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          , G. Da San Martino, T. Elsayed,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Míguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shaar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Haouari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hasanain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Babulkov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Struß</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mandl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Modha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kutlu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y. S.</given-names>
            <surname>Kartal</surname>
          </string-name>
          ,
          <article-title>Overview of the CLEF-2021 CheckThat! Lab on Detecting Check-Worthy Claims, Previously Fact-Checked Claims, and Fake News</article-title>
          ,
          <source>in: Proceedings of the 12th International Conference of the CLEF Association: Information Access Evaluation Meets Multiliguality</source>
          , Multimodality, and Visualization, CLEF˜'
          <year>2021</year>
          , Bucharest, Romania (online),
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Struß</surname>
          </string-name>
          ,
          <source>T. Mandl, Task</source>
          <volume>3</volume>
          : Fake News Detection at CLEF-2021
          <source>CheckThat!</source>
          , CLEF˜'
          <year>2021</year>
          , Zenodo, Bucharest, Romania (online),
          <year>2021</year>
          . doi:
          <volume>10</volume>
          .5281/zenodo.4714517.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <surname>AMUSED:</surname>
          </string-name>
          <article-title>An Annotation Framework of Multi-modal Social Media Data (</article-title>
          <year>2020</year>
          ). arXiv:
          <year>2010</year>
          .00502.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>T.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Delangue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Moi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Cistac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rault</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Louf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Funtowicz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Davison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shleifer</surname>
          </string-name>
          , P. von Platen, C. Ma,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Plu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. Le</given-names>
            <surname>Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gugger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Drame</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Lhoest</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rush</surname>
          </string-name>
          , Transformers:
          <article-title>State-of-the-Art Natural Language Processing</article-title>
          , in: arxiv.org,
          <year>2020</year>
          , pp.
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          . URL: https://github.com/huggingface/. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .
          <article-title>emnlp-demos.6</article-title>
          . arXiv:
          <year>1910</year>
          .03771v5.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>A.</given-names>
            <surname>Paszke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gross</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Massa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lerer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bradbury</surname>
          </string-name>
          , G. Chanan,
          <string-name>
            <given-names>T.</given-names>
            <surname>Killeen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Gimelshein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Antiga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Desmaison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Köpf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>DeVito</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Raison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tejani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chilamkurthy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Steiner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Fang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bai</surname>
          </string-name>
          , S. Chintala,
          <string-name>
            <surname>PyTorch:</surname>
          </string-name>
          <article-title>An imperative style, high-performance deep learning library</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems</source>
          , volume
          <volume>32</volume>
          ,
          <source>Neural information processing systems foundation</source>
          ,
          <year>2019</year>
          . URL:
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>