<!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>Fraunhofer SIT at CheckThat! 2024: Adapter Fusion for Check-Worthiness Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Inna Vogel</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Pauline Möhle</string-name>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>ATHENE - National Research Center for Applied Cybersecurity</institution>
          ,
          <addr-line>Rheinstrasse 75, Darmstadt, 64295, Germany, url=https://</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Advisori FTC GmbH</institution>
          ,
          <addr-line>Kaiserstraße 44, 60329 Frankfurt am Main, Germany, url=https://</addr-line>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Fraunhofer Institute for Secure Information Technology SIT</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <abstract>
        <p>This paper describes the Fraunhofer SIT team's third-place approach for CLEF-2024 CheckThat! lab Challenge Task 1 for English. The "Check-Worthiness Estimation" task is to determine whether a text snippet from a political debate should be prioritised for fact-checking. Identifying check-worthy statements aims to facilitate manual fact-checking by prioritising claims that fact-checkers should consider first. It can also be considered as the primary step of a fact-checking system. Our proposed system is an adapter fusion model that integrates a task adapter with a Named Entity Recognition (NER) adapter. Adapters ofer a resource-eficient alternative to fully ifne-tuning transformer models. Our submitted model achieves a 1 score of 0.78 on the English test set and was ranked as the third best model in the competition.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;check-worthiness detection</kwd>
        <kwd>fact-checking</kwd>
        <kwd>adapter fusion</kwd>
        <kwd>task adapter</kwd>
        <kwd>NER</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>The fact-checking process typically involves three main steps. The first step is to identify statements or
claims within a text that need to be fact-checked, as not all claims are equally important or contain
pertinent information that needs to be verified. This can include false claims, statistics or other
objectively verifiable inaccuracies. Fact-checkers prioritise claims for verification based on their potential
impact, factual consistency or public interest. Once a claim has been selected, the second step is to
gather credible evidence to support or refute it by consulting reliable sources such as academic journals,
oficial reports, reputable news organisations, subject matter experts and primary sources such as
original documents or statistics. To ensure consistency and accuracy, fact-checkers and journalists
cross-reference information from multiple sources. The main challenge is that the majority of
factcheckers’ work remains manual. As a result, there is an urgent need to develop technologies that can
facilitate, accelerate and improve journalists’ fact-checking and fake news and misinformation detection
tasks.</p>
      <p>The first step in the fact-checking pipeline, automatically identifying statements worthy of verification,
has the potential to assist fact-checkers and journalists by locating and highlighting statements within
a text that warrant further verification. This process could streamline the fact-checking workflow and
reduce the potential for human bias in selecting claims for verification. Check-worthy sentences or
statements are usually those that contain factual information such as dates, definitions, statistics or
descriptions of events or laws.</p>
      <p>
        The CheckThat! Lab has been tackling this scientific problem for the past several years. The aim
of this year’s CheckThat! Lab Task 1 "Check-Worthiness Estimation" is to determine whether a claim
in a tweet and/or a political debate/speech is worth fact-checking. The task is considered a binary
classification task with data available in Arabic, English and Spanish [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Frauhofer SIT participated
in Task 1 of the CLEF 2024 CheckThat! Lab Challenge for the English language identifying relevant
claims in political debates.
      </p>
      <p>
        In this paper, we propose an adapter fusion approach that integrates a task adapter with a Named
Entity Recognition (NER) adapter. Adapters are a resource-eficient alternative to fully fine-tuned
transformer models [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Initially, we trained a task adapter to efectively detect check-worthy statements.
As check-worthy claims often contain facts in the form of named entities — such as personal names,
dates, financial and percentage values - we combined the task adapter with a NER adapter. With a 1
score of 0.78, our proposed adapter fusion model placed third in the competition.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        While early approaches focused on a fixed set of features (such as sentiment, word count, part of speech
(PoS) tags and named entities (NE)) and utilized traditional machine learning models (Naive Bayes,
SVM and Random Forest) [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], recent work focuses on pre-trained language models such as BERT [
        <xref ref-type="bibr" rid="ref4 ref5">4, 5</xref>
        ].
      </p>
      <p>
        The CLEF CheckThat! challenge, which was introduced in 2018 and is still ongoing, has contributed
a considerable amount of research in recent years. Despite the diversity of models and representations
employed in the initial years of the challenge, including k-nearest neighbors [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] and recurrent neural
networks [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] for models, and character n-grams [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] and word embeddings [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] for representation,
neural approaches utilizing word embeddings demonstrated superior performance compared to classical
methods [9]. This trend continued in the 2019 challenge, where the top-performing team used an
LSTM model trained with dual token embeddings (domain-specific word embeddings and syntactic
dependencies) after pre-training on previous debates [10].
      </p>
      <p>After the emergence of transformers in 2019 [11], there was a shift in contributions towards utilizing
transformers for check-worthiness detection in subsequent years [12, 13]. Following the introduction
of GPT-3, the best-performing approach for the English subtask 2023 was to fine-tune GPT-3 with
7.7k examples from pre-existing datasets. However, subsequent experiments by the same group using
DeBERTaV3 yielded almost identical results to GPT-3 [14].</p>
      <p>Schlicht et al. [15] conducted an investigation into the cross-training of adapter fusion models across
various world languages, including Arabic, English, and Spanish, for the purpose of multilingual
checkworthiness detection. They used mBERT and XLM-R and adapter fusion models on multilingual datasets
from the CLEF CheckThat! Lab 2022 and 2021 challenges. They showed that the models outperformed
monolingual task adapters and fully tuned models. A 1 score of 0.51 was achieved for the detection of
English check-worthy claims. Vogel et al. [16] combined a task adapter and a NER adapter and achieved
state-of-the-art results on two challenging check-worthiness benchmarks. The best-performing model
achieved a 1 score of 0.92 on the CheckThat! Lab 2023 dataset. In addition, the authors interpreted the
fusion attentions, demonstrating the efectiveness of their approach.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Data Set Description</title>
      <p>
        The data for this year’s CheckThat! 2024 Challenge Task 1 "Check-Worthiness Estimation" is available
in Arabic, English, and Dutch1 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. However, our approach focuses only on the English data set. While
the methodology employed could theoretically be applied to other languages, specific modifications to
the model would be required to account for linguistic diferences.
      </p>
      <p>For the English task, the data set consists of political debates collected from the US presidential
general election debates. Examples from the data set are shown in Table 1.</p>
      <p>The aim goal of Task 1 is to identify entries that contain check-worthy claims. The data set was
annotated by human labelers. The label distributions and data set splits were provided by the organisers
and are shown in Table 2. As can be seen, the data set consists of 23,851 entries, divided into two
classes: check-worthy and non-check-worthy, labeled "YES" and "NO" respectively. The data set is
1Spanish was only ofered for training</p>
      <sec id="sec-3-1">
        <title>Instance</title>
      </sec>
      <sec id="sec-3-2">
        <title>It called for an increase in the production of energy in the United States.</title>
      </sec>
      <sec id="sec-3-3">
        <title>There are 9 countries that spend more than we do on public education.</title>
      </sec>
      <sec id="sec-3-4">
        <title>I’d like to mention one thing. "And for that to happen, we have to strengthen our economy here at home." Class Yes</title>
        <p>significantly unbalanced, with approximately 25% of the entries labeled as check-worthy and 75% labeled
as non-check-worthy.</p>
        <p>To train and test the system, the data set is divided into three subsets: training (Train: 22,501 entries),
development (Dev: 1,032 entries), and development test (Dev Test: 318 entries). The development test
set contains a slightly higher proportion of check-worthy entries (33%) compared to the other data sets.
The unlabeled test set (Test) was provided for evaluation purposes and consists of 341 sentences.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology and Results</title>
      <p>
        In this section, we present our submitted adapter fusion approach, which combines a task adapter with
a NER adapter. Adapters are a lightweight alternative to full model fine-tuning, consisting of a small set
of re-initialised weights at each layer of the pre-trained model [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. These newly introduced weights are
updated during fine-tuning, while the pre-existing parameters of the model remain fixed. This feature
makes adapters parameter-eficient, speeds up training iterations and, due to their compact and modular
nature, enables their modular sharing and composition without compromising model performance.
      </p>
      <p>
        Adapter fusion is a method that combines the knowledge derived from diferent pre-trained adapters
that were trained for distinct tasks. This process incorporates an attention module, which adeptly
merges knowledge from various task adapters dynamically. Consequently, it fuses the knowledge
acquired from diverse adapters into a unified representation. Various fusion techniques, including
weighted summation, gating mechanisms, or attention mechanisms, can be employed for this purpose
[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The goal of the adapter fusion method is to harness the synergies between diferent tasks and
adapters.
      </p>
      <p>
        Initially, we trained a task adapter on the CheckThat! Lab 2024 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] dataset to efectively identify
check-worthy sentences. No data pre-processing or cleaning was applied to the dataset. To train
the task adapter, we applied adapter transformers from the "Adapter Hub" repository for pre-trained
adapter models [17]. We used the pre-trained RoBERTa model [18] to tokenize the input data using the
maximum sequence length of 512 (truncation=True, padding="max_length"). The task adapter model
was trained for 6 epochs with a learning rate of 1e-4 and a batch size of 32.
      </p>
      <p>The task adapter was trained on the "Train" dataset containing 22,501 instances, while the performance
of the models during training was evaluated on the "Dev" set containing 1,032 instances. Finally, the
"Dev Test" set of 318 samples was used to evaluate the trained model (Table 2). Our model achieves a
1 of 0.866 over the positive (check-worthy) class. The results of the evaluation are shown in Table 3.
We chose to use the adapter fusion approach, combining a task adapter with a NER adapter, to efectively
detect named entities in the dataset. Previous studies have shown that check-worthy sentences tend
to contain more named entities than non-check-worthy sentences [16]. This is due to the fact that
factual information often arises in the form of names and numerical data, encompassing personal
names, company names, geographical locations, dates, years, and percentages. Table 4 gives examples
of sentences from the dataset containing named entities.</p>
      <sec id="sec-4-1">
        <title>Instance</title>
      </sec>
      <sec id="sec-4-2">
        <title>1. "Today, 47 million people are on food stamps."</title>
      </sec>
      <sec id="sec-4-3">
        <title>2. "Of the nine million people put to work in new jobs since I’ve been in ofice, 1.3 million</title>
        <p>of those has been among black Americans, and another million among those who speak</p>
      </sec>
      <sec id="sec-4-4">
        <title>Spanish."</title>
      </sec>
      <sec id="sec-4-5">
        <title>3. If you take the tax cut that the president of the United States has given – President Bush gave to Americans in the top 1 percent of America – just that tax cut that went to the top 1 percent of America would have saved Social Security until the year 2075.</title>
      </sec>
      <sec id="sec-4-6">
        <title>Class Yes Yes Yes</title>
        <p>The adapter fusion model takes as input the representations generated by multiple adapters, each
trained for distinct tasks, and learns a parameterized mixer of the encoded information. The previously
trained task adapter was fused with the fine-tuned version of the DistilRoBERTa [ 19] based NER model.
The NER model was trained and evaluated on the CoNLL 2003 dataset and achieves an 1 score of 0.92
[20].</p>
        <p>We trained our adapter fusion model for 6 epochs with a learning rate of 5e-5 and a batch size of 32
with a maximum sequence length of 512. The model was evaluated on the "Dev Test" and achieves a 1
of 0.916 over the check-worthy class. The results of the approach are shown in Table 5.
Since the adapter fusion model outperformed the adapter model in terms of 1 score, we used the
former to classify the private test set of this year’s CheckThat! 2024 competition. Our model achieves
an 1 score of 0.78 over the positive check-worthy class.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and Future Work</title>
      <p>Identifying check-worthy statements can be seen as a first step in detecting the spread of false
information online. Used as a pre-filter, this approach can significantly reduce the amount of data requiring
manual evaluation by human experts. In this paper, we presented an adapter fusion method that
combines a task-specific adapter and a NER adapter.</p>
      <p>Initially, we trained a task adapter to detect check-worthy statements efectively. Given that
checkworthy statements often contain named entities (such as references to persons, locations, or dates),
we integrated this task adapter with a pre-trained NER adapter. This integration aimed to exploit the
synergies between diferent tasks. Our approach achieves a 1 score of 0.78 on the CheckThat! Lab
2023 test dataset and was ranked third in the competition.</p>
      <p>Future research may explore the integration of additional task-specific or pre-trained adapters. In
our current approach, we utilized a pre-trained NER adapter developed to detect four NER classes.
Subsequent work could investigate the use of a NER classifier trained to identify a broader range of
NER classes.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgements</title>
      <p>This work was supported by the German Federal Ministry of Education and Research (BMBF) and the
Hessian Ministry of Higher Education, Research, Science and the Arts within their joint support of
“ATHENE – CRISIS”.
[9] P. Atanasova, A. Barron-Cedeno, T. Elsayed, R. Suwaileh, W. Zaghouani, S. Kyuchukov, G. D. S.</p>
      <p>Martino, P. Nakov, Overview of the clef-2018 checkthat! lab on automatic identification and
verification of political claims. task 1: Check-worthiness, 2018. arXiv:1808.05542.
[10] C. Hansen, C. Hansen, J. Simonsen, C. Lioma, Neural weakly supervised fact check-worthiness
detection with contrastive sampling-based ranking loss, volume 2380, ceur workshop proceedings,
2019. 20th Working Notes of CLEF Conference and Labs of the Evaluation Forum, CLEF 2019 ;
Conference date: 09-09-2019 Through 12-09-2019.
[11] J. Devlin, M.-W. Chang, K. Lee, K. Toutanova, BERT: Pre-training of deep bidirectional transformers
for language understanding, in: J. Burstein, C. Doran, T. Solorio (Eds.), Proceedings of the 2019
Conference of the North American Chapter of the Association for Computational Linguistics:
Human Language Technologies, Volume 1 (Long and Short Papers), Association for Computational
Linguistics, Minneapolis, Minnesota, 2019, pp. 4171–4186. URL: https://aclanthology.org/N19-1423.
doi:10.18653/v1/N19-1423.
[12] A. Barron-Cedeno, T. Elsayed, P. Nakov, G. D. S. Martino, M. Hasanain, R. Suwaileh, F. Haouari,
N. Babulkov, B. Hamdan, A. Nikolov, S. Shaar, Z. S. Ali, Overview of checkthat! 2020: Automatic
identification and verification of claims in social media, 2020. arXiv:2007.07997.
[13] P. Nakov, G. D. S. Martino, T. Elsayed, A. Barrón-Cedeño, R. Míguez, S. Shaar, F. Alam, F. Haouari,
M. Hasanain, W. Mansour, B. Hamdan, Z. S. Ali, N. Babulkov, A. Nikolov, G. K. Shahi, J. M.
Struß, T. Mandl, M. Kutlu, Y. S. Kartal, Overview of the clef–2021 checkthat! lab on detecting
check-worthy claims, previously fact-checked claims, and fake news, 2021. arXiv:2109.12987.
[14] M. Sawinski, K. Węcel, E. Księżniak, M. Stróżyna, W. Lewoniewski, P. Stolarski, W. Abramowicz,
Openfact at checkthat! 2023: Head-to-head gpt vs. bert - a comparative study of transformers
language models for the detection of check-worthy claims, 2023.
[15] I. B. Schlicht, L. Flek, P. Rosso, Multilingual detection of check-worthy claims using world
languages and adapter fusion, in: J. Kamps, L. Goeuriot, F. Crestani, M. Maistro, H. Joho, B. Davis,
C. Gurrin, U. Kruschwitz, A. Caputo (Eds.), Advances in Information Retrieval, Springer Nature
Switzerland, Cham, 2023, pp. 118–133.
[16] I. Vogel, P. Möhle, M. Meghana, M. Steinebach, Adapter fusion for check-worthiness detection
– combining a task adapter with a ner adapter., ROMCIR 2024: The 4th Workshop on Reducing
Online Misinformation through Credible Information Retrieval, held as part of ECIR 2024: the
46th European Conference on Information Retrieval, March 24, 2024, Glasgow, UK (2024). URL:
https://romcir.disco.unimib.it/wp-content/uploads/sites/151/2024/03/Paper6_Vogel.pdf.
[17] C. Poth, H. Sterz, I. Paul, S. Purkayastha, L. Engländer, T. Imhof, I. Vulić, S. Ruder, I. Gurevych,
J. Pfeifer, Adapters: A unified library for parameter-eficient and modular transfer learning, 2023.
arXiv:2311.11077.
[18] Y. Liu, M. Ott, N. Goyal, J. Du, M. Joshi, D. Chen, O. Levy, M. Lewis, L. Zettlemoyer, V. Stoyanov,
Roberta: A robustly optimized bert pretraining approach, ArXiv abs/1907.11692 (2019). URL:
https://api.semanticscholar.org/CorpusID:198953378.
[19] V. Sanh, L. Debut, J. Chaumond, T. Wolf, Distilbert, a distilled version of bert: smaller, faster,
cheaper and lighter, ArXiv abs/1910.01108 (2019).
[20] A. Akbik, T. Bergmann, D. Blythe, K. Rasul, S. Schweter, R. Vollgraf, FLAIR: An easy-to-use
framework for state-of-the-art NLP, in: NAACL 2019, 2019 Annual Conference of the North
American Chapter of the Association for Computational Linguistics (Demonstrations), 2019, pp.
54–59.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Chakraborty</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Elsayed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Przybyła</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Struß</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>F.</given-names>
            <surname>Ruggeri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Suwaileh</surname>
          </string-name>
          ,
          <article-title>The clef-2024 checkthat! lab: Check-worthiness, subjectivity, persuasion, roles, authorities, and adversarial robustness</article-title>
          , in: N.
          <string-name>
            <surname>Goharian</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Tonellotto</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Lipani</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
          </string-name>
          , I. Ounis (Eds.),
          <source>Advances in Information Retrieval</source>
          , Springer Nature Switzerland, Cham,
          <year>2024</year>
          , pp.
          <fpage>449</fpage>
          -
          <lpage>458</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>N.</given-names>
            <surname>Houlsby</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Giurgiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Jastrzebski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Morrone</surname>
          </string-name>
          , Q. de Laroussilhe,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gesmundo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Attariyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gelly</surname>
          </string-name>
          ,
          <article-title>Parameter-eficient transfer learning for nlp</article-title>
          ., in: K. Chaudhuri, R. Salakhutdinov (Eds.), ICML, volume
          <volume>97</volume>
          <source>of Proceedings of Machine Learning Research, PMLR</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>2790</fpage>
          -
          <lpage>2799</lpage>
          . URL: http://dblp.uni-trier.de/db/conf/icml/icml2019.html#HoulsbyGJMLGAG19.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>N.</given-names>
            <surname>Hassan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Tremayne</surname>
          </string-name>
          ,
          <article-title>Detecting check-worthy factual claims in presidential debates</article-title>
          ,
          <source>in: Proceedings of the 24th ACM International on Conference on Information and Knowledge Management</source>
          , CIKM '15,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2015</year>
          , p.
          <fpage>1835</fpage>
          -
          <lpage>1838</lpage>
          . URL: https://doi.org/10.1145/2806416.2806652. doi:
          <volume>10</volume>
          .1145/2806416.2806652.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>F.</given-names>
            <surname>Alam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. S.</given-names>
            <surname>Cheema</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hakimov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hasanain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Míguez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Mubarak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. K.</given-names>
            <surname>Shahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Zaghouani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <article-title>Overview of the CLEF-2023 CheckThat! lab task 1 on checkworthiness in multimodal and multigenre content</article-title>
          , in: Working Notes of CLEF 2023-
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , CLEF '
          <year>2023</year>
          , Thessaloniki, Greece,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>K.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jimenez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Arslan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. D.</given-names>
            <surname>Devasier</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Obembe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Gradient-based adversarial training on transformer networks for detecting check-worthy factual claims</article-title>
          , ArXiv abs/
          <year>2002</year>
          .07725 (
          <year>2020</year>
          ). URL: https://api.semanticscholar.org/CorpusID:211146392.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>B.</given-names>
            <surname>Ghanem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Montes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Rangel Pardo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <article-title>Upv-inaoe-autoritas - check that: Preliminary approach for checking worthiness of claims</article-title>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>C.</given-names>
            <surname>Hansen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Hansen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Simonsen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Lioma</surname>
          </string-name>
          ,
          <article-title>The copenhagen team participation in the checkworthiness task of the competition of automatic identification and verification of claims in political debates of the clef-2018 checkthat! lab</article-title>
          , in: L.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Nie</surname>
          </string-name>
          , L. Soulier (Eds.),
          <source>CLEF 2018 Working Notes, CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2018</year>
          . 19th Working Notes of CLEF Conference and
          <article-title>Labs of the Evaluation Forum</article-title>
          , CLEF 2018 ; Conference date:
          <fpage>10</fpage>
          -
          <lpage>09</lpage>
          -2018 Through 14-
          <fpage>09</fpage>
          -
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>R.</given-names>
            <surname>Banerjee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zuo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Karakaş</surname>
          </string-name>
          ,
          <article-title>A hybrid recognition system for check-worthy claims using heuristics and supervised learning</article-title>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>