<!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>CoulterOzler at CheckThat! 2022: Detecting fake news with transformers</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kadir Bulut Ozler</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Riah Coulter</string-name>
        </contrib>
      </contrib-group>
      <abstract>
        <p>In the age of the internet, people interact with each other more often than ever. Almost everybody with internet access has an afiliation with a social media website. With this popularity, spreading of misinformation has inevitably become a huge problem of the current age. In recent years, 2016 US Presidential Election brought the attention to fake news. With the Coronavirus Pandemic misinformation became an increasingly popular area to research in academia. To be a part of the research on detecting misinformation in the internet, we participated in task 3: Fake News Detection of the Checkthat! Lab at CLEF2022. In this paper, we show the details of our system consisting of data collection, transformer based pre-trained models and extensive preprocessing methods. We achieved an F1-score (macro) of 0.328 against a top score of 0.339 on the oficial test set.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Fake News</kwd>
        <kwd>Multi-class Classification</kwd>
        <kwd>Transformers</kwd>
        <kwd>Fine-tuning</kwd>
        <kwd>Misinformation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        In the information age, internet became the main source of news on what is happening in the
world. Individual access to the internet became easy and afordable which gave people a massive
freedom to obtain and share information online. Although there have been major benefits of
this freedom, it often came with a cost that is called misinformation. Misinformation is seen in
variety of forms [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. It can be a Facebook post with fake content, a tweet from a fake profile of
a credible source, a news article that has a manipulative narrative or a misleading title that tells
a diferent story in the article.
      </p>
      <p>
        In recent years, misinformation became a significant research area in natural language
processing. Some of the past studies focused on rumor detection [2, 3, 4, 5, 6], fake news
detection [7, 8, 9, 10, 11, 12], spam detection [13, 14, 15, 16, 17] and bot detection [
        <xref ref-type="bibr" rid="ref2 ref3">18, 19, 20, 21</xref>
        ].
There have been several shared tasks related to misinformation detection. Recent SemEval
tasks [
        <xref ref-type="bibr" rid="ref4 ref5 ref6">22, 23, 24</xref>
        ] aimed to question stance and veracity of given texts and categorize them
to pre-defined classes. MediaEval [
        <xref ref-type="bibr" rid="ref7">25</xref>
        ] focused on misinformation regarding to Coronavirus
Pandemic and 5G.
      </p>
      <p>
        Task 3 of the Checkthat! Lab at CLEF2022 [
        <xref ref-type="bibr" rid="ref10 ref8 ref9">26, 27, 28</xref>
        ] is another shared task that focuses
on fake news detection. The task’s goal is to determine if the claim of the article belongs to
following categories [
        <xref ref-type="bibr" rid="ref11">29</xref>
        ] : true, partially true, false, or other (label descriptions can be found
in table 1). The task has 2 sub-tasks: mono-lingual in English and cross-lingual for English
and German where the training set is in English and the test set is in German. This year, we
participated in mono-lingual sub-task. In the previous version of the lab [
        <xref ref-type="bibr" rid="ref12">30</xref>
        ], the sub-task 3A
[
        <xref ref-type="bibr" rid="ref13">31</xref>
        ] is very similar to the mono-lingual sub-task of this year’s task 3 of the shared task. For that
sub-task 3A, there have been many diferent approaches from the participants. [
        <xref ref-type="bibr" rid="ref14">32</xref>
        ] employed
several transformer based [
        <xref ref-type="bibr" rid="ref15">33</xref>
        ] models and got their best results with Albert [
        <xref ref-type="bibr" rid="ref16">34</xref>
        ]. [
        <xref ref-type="bibr" rid="ref17">35</xref>
        ] used
an ensemble of Roberta [
        <xref ref-type="bibr" rid="ref18">36</xref>
        ] and Longformer [
        <xref ref-type="bibr" rid="ref19">37</xref>
        ]. [
        <xref ref-type="bibr" rid="ref20">38</xref>
        ] showed that gradient boosting with
extensive preprocessing performed better than widely popular deep learning architectures such
as LSTMs [
        <xref ref-type="bibr" rid="ref21">39</xref>
        ] and BERT [
        <xref ref-type="bibr" rid="ref22">40</xref>
        ].
      </p>
      <p>In the following sections, we show the features of the datasets we used in this work, our
methods, experiments, results, error analysis and our conclusion.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Dataset Analysis</title>
      <p>There are multiple datasets with mixed domains that focus on fake news detection. In this
section, we show features of the used datasets in our work. In table 2, you can find the label
count for all the datasets below. Label counts are calculated after dropping NaN values, bad
lines and duplicates except for oficial test set. In table 3, you can find the nfial distribution of
labels in the training set, dev set and test set that have been used in our work.</p>
      <sec id="sec-2-1">
        <title>2.1. politifact</title>
        <p>
          Introduced in [
          <xref ref-type="bibr" rid="ref23">41</xref>
          ], this dataset consists of fact-checking articles from politifact.com. It includes
article title and article text. The available labels are true, false, partially false. The exact version
we used in our work can be found at Kaggle. We randomly chose 15k of the samples and
included them in our training set.
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. true-fake</title>
        <p>This combined dataset consists of 2 seperate datasets, each includes article titles and article texts.
In true dataset, all samples are considered as true, in fake dataset all samples are considered as
fake. We randomly chose 30k of the samples and included them in our training set. The exact
version we used in our work can be found at here and here. Unfortunately we could not find
the original source that introduced these datasets.</p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. fakenewskdd2020</title>
        <p>This dataset has only article texts and their labels. Fake label is defined as "potentially unreliable".
We randomly chose 1k of the samples and included them in our training set. The dataset can be
found from Kaggle and it was provided by Kai Shu to the competition organizers.</p>
      </sec>
      <sec id="sec-2-4">
        <title>2.4. oficial-training-set</title>
        <p>
          This is the oficial dataset that is released by task organizers privately for the participants [
          <xref ref-type="bibr" rid="ref24">42</xref>
          ].
It contains article text, article title, and all 4 labels. 2/3 of it has been used in our training set,
and 1/3 of it has been used in our dev set during model development phase. It was built by
following steps in [
          <xref ref-type="bibr" rid="ref25">43</xref>
          ].
        </p>
      </sec>
      <sec id="sec-2-5">
        <title>2.5. oficial-test-set</title>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Methods</title>
      <p>This is oficial test set released by task organizers. It contains article id, article text, and all 4
labels. It can be found at Zenodo. We calculated our final scores based on our predictions on
this dataset.</p>
      <p>In this section, we give details about the methods we employed for the task. They consist of
text preprocessing and fine-tuning pre-trained language models.
3.1. Preprocessing
• Concatenating title and content when available: In some datasets, there exists article
title column that contains the title of the articles. In this case, we merged title and article
content in one sequence of text.
• Converting to lower case: It is usually unhelpful to keep the characters in both lowercase
and uppercase form.
• Removing stop words: Stop words are usually the most frequently occurring words
in natural language and they do not contribute much to the meaning. It’s a widely used
practice to remove them from text before feeding the sequences to the model.
• Removing punctuation: As stop words, punctuation marks are usually unnecessary to
keep.
• Standardizing certain words: In order to make the text as clear as possible, we used
some pre-defined tokens to replace urls, email addresses, phone numbers, names, numbers,
digits and currency characters.
• Lemmatizing: In order to simplify the words we used lemmatizing over stemming to
avoid creating words that are not in the dictionary or lost their meaning.
• Shortening: We shortened the sequences to 500 tokens and 4000 tokens in order to fit
them into the models, depending on the model’s capacity.</p>
      <p>
        We used the Natural Language Toolkit (NLTK) [
        <xref ref-type="bibr" rid="ref26">44</xref>
        ] for lemmatizing, name standardization,
and stop words removal, unicodedata1 for punctuation removal, and the clean-text project2 for
converting to lower case and standardizing urls, email addresses, phone numbers, numbers,
digits and currency characters.
      </p>
      <sec id="sec-3-1">
        <title>3.2. Fine-tuning LMs</title>
        <p>
          Transformer based pre-trained language models have become significantly popular in recent
years due to the fact that they led to state of the art improvements in many natural language
processing tasks [
          <xref ref-type="bibr" rid="ref22">40</xref>
          ]. They also do not require in domain training from scratch which would
need more data and more GPU time. Therefore, we decided to go with fine-tuning a pre-trained
language model to develop our in domain model for this shared task. We used Huggingface’s
transformers [
          <xref ref-type="bibr" rid="ref27">45</xref>
          ] during this stage. The code repository has been shared3. We explored multiple
LMs, training/eval batch size, number of epochs and learning rate. We chose distilbert [
          <xref ref-type="bibr" rid="ref28">46</xref>
          ]
because it is a smaller, yet promising model. We also chose longformer anticipating that if
the model is fed long sequences (which is normal for articles), the predictions could be more
accurate. Our hyperparameter space can be found in table 4.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments and Results</title>
      <p>In the model development stage, we used our custom split of training and dev sets that are
explained in section 2. We used 4 32GB Nvidia V100 GPUs. After the initial experiments on dev</p>
      <sec id="sec-4-1">
        <title>1https://docs.python.org/3/library/unicodedata.html 2https://pypi.org/project/clean-text/ 3https://github.com/kbulutozler/clef2022-checkthat-task3</title>
        <p>set, we decided to choose 2e-05 as learning rate, 64 as batch size to focus more on number of
epochs for the rest of the experiments. For the longformer model, we had to reduce the batch
size to 2 due to GPU limitations. The results obtained in the development stage can be found in
table 5 with metrics micro f1 and macro f1.</p>
      </sec>
      <sec id="sec-4-2">
        <title>We can sum up our findings during model development as follows:</title>
        <p>• It can be said that using longformer did not lead to the results we anticipated.
• Longer training had diminishing returns.
• Macro f1 scores are lower than micro f1 scores because the performance on certain label(s)
is significantly worse.</p>
        <p>As seen from Table 5, best model setup is obtained by distilbert model trained for 20 epochs
with batch size of 64 and learning rate of 2e-05. Furthermore, we explored how the model
would perform with no additional data. We used the best model setup and trained on just
oficial training set with no hyperparameter search. Apart from that, we explored the efect of
preprocessing methods. For this, we used the same setup and trained on just oficial training set
with no preprocessing. In table 6, we show the results we obtained on oficial test set in terms
of accuracy, macro precision, macro recall, macro f1 metrics.</p>
        <p>
          Results show that additional data hurt the performance the most. One cause might be the
diference in domains of the oficial dataset and additional datasets. We anticipated that for
sequence classification, combining multiple domains might lead the model to make better
predictions as shown in [
          <xref ref-type="bibr" rid="ref29">47</xref>
          ], however we couldn’t obtain parallel results following similar
intuition. Moreover, training on preprocessed data led to better precision, recall and f1 scores
in comparison to training on unpreprocessed data.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Error Analysis</title>
      <p>In this section we present the confusion matrix on oficial test set for the model that was trained
on oficial training set after preprocessing (second model in table 6) in table 7. The table shows
the model managed to learn the most detecting false claims and struggled to see other labels.
This can be explained by the challenging nature of the data and the dominance of "False" label
in the training set.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion and Future Scope</title>
      <p>We participated in task 3: Fake News Detection of the Checkthat! Lab at CLEF2022 and developed
models to detect and classify misinformation in the internet. We applied extensive preprocessing
methods and fine-tuned several pre-trained language models with the released dataset and
additional datasets. We found that being able to feed longer sequences and additional data with
mixed domains did not improve performance, preprocessing and smaller model led to better
predictions.</p>
      <p>For the future work, one might explore extra pre-training an already pre-trained language
model with data that has similar nature to the oficial training set to develop better models. In
this task, class imbalance seems to be a significant issue. Therefore another direction might be
exploring data augmentation methods to increase in domain data or modifying loss function to
increase penalty for misprediction of samples of the underrepresented label(s).
[2] J. Yu, J. Jiang, L. M. S. Khoo, H. L. Chieu, R. Xia, Coupled hierarchical transformer for
stanceaware rumor verification in social media conversations, Association for Computational
Linguistics, 2020.
[3] S. Kwon, M. Cha, K. Jung, Rumor detection over varying time windows, PloS one 12 (2017)
e0168344.
[4] Q. Zhang, S. Zhang, J. Dong, J. Xiong, X. Cheng, Automatic detection of rumor on social
network, in: Natural Language Processing and Chinese Computing, Springer, 2015, pp.
113–122.
[5] S. Hamidian, M. T. Diab, Rumor detection and classification for twitter data, arXiv preprint
arXiv:1912.08926 (2019).
[6] T. Takahashi, N. Igata, Rumor detection on twitter, in: The 6th International Conference
on Soft Computing and Intelligent Systems, and The 13th International Symposium on
Advanced Intelligence Systems, IEEE, 2012, pp. 452–457.
[7] V. Pérez-Rosas, B. Kleinberg, A. Lefevre, R. Mihalcea, Automatic detection of fake news,
arXiv preprint arXiv:1708.07104 (2017).
[8] J. C. Reis, A. Correia, F. Murai, A. Veloso, F. Benevenuto, Supervised learning for fake
news detection, IEEE Intelligent Systems 34 (2019) 76–81.
[9] K. Shu, A. Sliva, S. Wang, J. Tang, H. Liu, Fake news detection on social media: A data
mining perspective, ACM SIGKDD explorations newsletter 19 (2017) 22–36.
[10] R. K. Kaliyar, A. Goswami, P. Narang, Fakebert: Fake news detection in social media
with a bert-based deep learning approach, Multimedia tools and applications 80 (2021)
11765–11788.
[11] C. Liu, X. Wu, M. Yu, G. Li, J. Jiang, W. Huang, X. Lu, A two-stage model based on
bert for short fake news detection, in: International Conference on Knowledge Science,
Engineering and Management, Springer, 2019, pp. 172–183.
[12] J. C. B. Cruz, J. A. Tan, C. Cheng, Localization of fake news detection via multitask transfer
learning, arXiv preprint arXiv:1910.09295 (2019).
[13] A. Gupta, R. Kaushal, Improving spam detection in online social networks, in: 2015
International conference on cognitive computing and information processing (CCIP), IEEE,
2015, pp. 1–6.
[14] T. Wu, S. Liu, J. Zhang, Y. Xiang, Twitter spam detection based on deep learning, in:</p>
      <p>Proceedings of the australasian computer science week multiconference, 2017, pp. 1–8.
[15] G. Jain, M. Sharma, B. Agarwal, Spam detection on social media using semantic
convolutional neural network, International Journal of Knowledge Discovery in Bioinformatics
(IJKDB) 8 (2018) 12–26.
[16] G. Jain, M. Sharma, B. Agarwal, Optimizing semantic lstm for spam detection, International</p>
      <p>Journal of Information Technology 11 (2019) 239–250.
[17] J. Cao, C. Lai, A bilingual multi-type spam detection model based on m-bert, in:
GLOBE</p>
      <p>COM 2020-2020 IEEE Global Communications Conference, IEEE, 2020, pp. 1–6.
[18] M. Heidari, J. H. Jones, Using bert to extract topic-independent sentiment features for
social media bot detection, in: 2020 11th IEEE Annual Ubiquitous Computing, Electronics
&amp; Mobile Communication Conference (UEMCON), IEEE, 2020, pp. 0542–0547.
[19] S. Feng, Z. Tan, R. Li, M. Luo, Heterogeneity-aware twitter bot detection with relational
graph transformers, arXiv preprint arXiv:2109.02927 (2021).
domain and multi-label uncivil language detection, in: Proceedings of the Fourth Workshop
on Online Abuse and Harms, 2020, pp. 28–33.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>D.</given-names>
            <surname>Bawden</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. Robinson,</surname>
          </string-name>
          <article-title>The dark side of information: overload, anxiety and other paradoxes and pathologies</article-title>
          ,
          <source>Journal of Information Science</source>
          <volume>35</volume>
          (
          <year>2009</year>
          )
          <fpage>180</fpage>
          -
          <lpage>191</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>D.</given-names>
            <surname>Martín-Gutiérrez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Hernández-Peñaloza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. B.</given-names>
            <surname>Hernández</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lozano-Diez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Álvarez</surname>
          </string-name>
          ,
          <article-title>A deep learning approach for robust detection of bots in twitter using transformers</article-title>
          ,
          <source>IEEE Access 9</source>
          (
          <year>2021</year>
          )
          <fpage>54591</fpage>
          -
          <lpage>54601</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>M.</given-names>
            <surname>Heidari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Hajibabaee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Malekzadeh</surname>
          </string-name>
          , S. HekmatiAthar,
          <string-name>
            <given-names>O.</given-names>
            <surname>Uzuner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. H.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <article-title>Bert model for fake news detection based on social bot activities in the covid-19 pandemic</article-title>
          , in: 2021
          <source>IEEE 12th Annual Ubiquitous Computing, Electronics &amp; Mobile Communication Conference (UEMCON)</source>
          , IEEE,
          <year>2021</year>
          , pp.
          <fpage>0103</fpage>
          -
          <lpage>0109</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>G.</given-names>
            <surname>Da San Martino</surname>
          </string-name>
          , A.
          <string-name>
            <surname>Barrón-Cedeno</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Wachsmuth</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Petrov</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Nakov</surname>
          </string-name>
          , Semeval-2020 task 11:
          <article-title>Detection of propaganda techniques in news articles</article-title>
          ,
          <source>in: Proceedings of the fourteenth workshop on semantic evaluation</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>1377</fpage>
          -
          <lpage>1414</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mihaylova</surname>
          </string-name>
          , G. Karadjov,
          <string-name>
            <given-names>P.</given-names>
            <surname>Atanasova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Baly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Mohtarami</surname>
          </string-name>
          , P. Nakov,
          <article-title>Semeval2019 task 8: Fact checking in community question answering forums</article-title>
          , arXiv preprint arXiv:
          <year>1906</year>
          .
          <volume>01727</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>G.</given-names>
            <surname>Gorrell</surname>
          </string-name>
          , E. Kochkina,
          <string-name>
            <given-names>M.</given-names>
            <surname>Liakata</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Aker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zubiaga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Bontcheva</surname>
          </string-name>
          , L. Derczynski, Semeval
          <article-title>-2019 task 7: Rumoureval, determining rumour veracity and support for rumours</article-title>
          ,
          <source>in: Proceedings of the 13th International Workshop on Semantic Evaluation</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>845</fpage>
          -
          <lpage>854</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>K.</given-names>
            <surname>Pogorelov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. T.</given-names>
            <surname>Schroeder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Burchard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Moe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Brenner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Filkukova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Langguth</surname>
          </string-name>
          ,
          <article-title>Fakenews: Corona virus and 5g conspiracy task at mediaeval 2020</article-title>
          , in: MediaEval 2020 Workshop,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          , G. Da San Martino,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</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>R.</given-names>
            <surname>Míguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Caselli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kutlu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zaghouani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shaar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Mubarak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Babulkov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y. S.</given-names>
            <surname>Kartal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Beltrán</surname>
          </string-name>
          ,
          <string-name>
            <surname>The</surname>
            <given-names>CLEF</given-names>
          </string-name>
          -2022
          <string-name>
            <surname>CheckThat!</surname>
          </string-name>
          <article-title>Lab on fighting the covid-19 infodemic and fake news detection</article-title>
          , in: M.
          <string-name>
            <surname>Hagen</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Verberne</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Seifert</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Balog</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Nørvåg</surname>
          </string-name>
          , V. Setty (Eds.),
          <source>Advances in Information Retrieval</source>
          , Springer International Publishing, Cham,
          <year>2022</year>
          , pp.
          <fpage>416</fpage>
          -
          <lpage>428</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          , G. Da San Martino,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</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>R.</given-names>
            <surname>Míguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Caselli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kutlu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zaghouani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shaar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Mubarak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Babulkov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y. S.</given-names>
            <surname>Kartal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Beltrán</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegand</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Siegel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Köhler</surname>
          </string-name>
          ,
          <article-title>Overview of the CLEF-2022 CheckThat! lab on fighting the COVID-19 infodemic and fake news detection</article-title>
          , in: A.
          <string-name>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          , G. Da San Martino, M. Degli
          <string-name>
            <surname>Esposti</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Sebastiani</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Pasi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Hanbury</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Faggioli</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Nicola</surname>
          </string-name>
          (Eds.),
          <source>Proceedings of the 13th International Conference of the CLEF Association: Information Access Evaluation meets Multilinguality</source>
          , Multimodality, and Visualization, CLEF '
          <year>2022</year>
          , Bologna, Italy,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>J.</given-names>
            <surname>Köhler</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>M.</given-names>
            <surname>Wiegand</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Siegel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mandl</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Schütz, Overview of the CLEF-2022 CheckThat! lab task 3 on fake news detection</article-title>
          , in: Working Notes of CLEF 2022-
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , CLEF '
          <year>2022</year>
          , Bologna, Italy,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Dirkson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. A.</given-names>
            <surname>Majchrzak</surname>
          </string-name>
          ,
          <article-title>An exploratory study of covid-19 misinformation on twitter</article-title>
          ,
          <source>Online Social Networks and Media</source>
          <volume>22</volume>
          (
          <year>2021</year>
          )
          <fpage>100104</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [30]
          <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>W.</given-names>
            <surname>Mansour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Hamdan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z. S.</given-names>
            <surname>Ali</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>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>
          . URL: https://link.springer.com/chapter/10. 1007/978-3-
          <fpage>030</fpage>
          -85251-1_
          <fpage>19</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [31]
          <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>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2936</volume>
          /paper-30.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Martinez-Rico</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Martinez-Romo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Araujo</surname>
          </string-name>
          ,
          <string-name>
            <surname>L.</surname>
          </string-name>
          :
          <article-title>Nlp&amp;ir@ uned at checkthat! 2021: check-worthiness estimation and fake news detection using transformer models</article-title>
          ,
          <source>Faggioli</source>
          et al.[
          <volume>33</volume>
          ] (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [33]
          <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>Advances in neural information processing systems</source>
          <volume>30</volume>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [34]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Goodman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Gimpel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Sharma</surname>
          </string-name>
          , R. Soricut,
          <string-name>
            <surname>Albert:</surname>
          </string-name>
          <article-title>A lite bert for self-supervised learning of language representations</article-title>
          , arXiv preprint arXiv:
          <year>1909</year>
          .
          <volume>11942</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [35]
          <string-name>
            <given-names>H.</given-names>
            <surname>Lekshmiammal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. K.</given-names>
            <surname>Madasamy</surname>
          </string-name>
          , Nitk _ nlp at checkthat! 2021:
          <article-title>Ensemble transformer model for fake news classification</article-title>
          ,
          <source>in: Conference and Labs Ofthe Evaluation Forum (CLEF</source>
          <year>2021</year>
          ),
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [36]
          <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>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Roberta: A robustly optimized bert pretraining approach</article-title>
          , arXiv preprint arXiv:
          <year>1907</year>
          .
          <volume>11692</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [37]
          <string-name>
            <given-names>I.</given-names>
            <surname>Beltagy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. E.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Cohan</surname>
          </string-name>
          ,
          <article-title>Longformer: The long-document transformer</article-title>
          , arXiv preprint arXiv:
          <year>2004</year>
          .
          <volume>05150</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [38]
          <string-name>
            <given-names>C. G.</given-names>
            <surname>Cusmuliuc</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Amarandei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Pelin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. I.</given-names>
            <surname>Cociorva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Iftene</surname>
          </string-name>
          , Uaics at checkthat!
          <year>2021</year>
          <article-title>: fake news detection</article-title>
          , Faggioli et al.[
          <volume>33</volume>
          ] (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [39]
          <string-name>
            <given-names>S.</given-names>
            <surname>Hochreiter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Schmidhuber</surname>
          </string-name>
          ,
          <article-title>Long short-term memory</article-title>
          ,
          <source>Neural computation 9</source>
          (
          <year>1997</year>
          )
          <fpage>1735</fpage>
          -
          <lpage>1780</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [40]
          <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>
          , arXiv preprint arXiv:
          <year>1810</year>
          .
          <volume>04805</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [41]
          <string-name>
            <given-names>N.</given-names>
            <surname>Vo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <article-title>Where are the facts? searching for fact-checked information to alleviate the spread of fake news</article-title>
          , arXiv preprint arXiv:
          <year>2010</year>
          .
          <volume>03159</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [42]
          <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>
          , Working Notes of CLEF (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [43]
          <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>
          , arXiv preprint arXiv:
          <year>2010</year>
          .
          <volume>00502</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [44]
          <string-name>
            <given-names>S.</given-names>
            <surname>Bird</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Klein</surname>
          </string-name>
          , E. Loper,
          <article-title>Natural language processing with Python: analyzing text with the natural language toolkit, "</article-title>
          <string-name>
            <surname>O'Reilly Media</surname>
          </string-name>
          ,
          <source>Inc."</source>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [45]
          <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>
          , et al.,
          <article-title>Huggingface's transformers: State-of-the-art natural language processing</article-title>
          , arXiv preprint arXiv:
          <year>1910</year>
          .
          <volume>03771</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [46]
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          , T. Wolf,
          <article-title>Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter</article-title>
          , arXiv preprint arXiv:
          <year>1910</year>
          .
          <volume>01108</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [47]
          <string-name>
            <surname>K. B. Ozler</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Kenski</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Rains</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Shmargad</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Coe</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bethard</surname>
          </string-name>
          ,
          <article-title>Fine-tuning for multi-</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>