<!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>German to English: Fake News Detection with Machine Translation</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jin Liu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Stefen Thoma</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>FZI Research Center for Information Technology, Information Process Engineering</institution>
          ,
          <addr-line>Haid-und-Neu-Str. 10-14, 76131 Karlsruhe</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Fighting the spreading of fake news is one of the most challenging tasks on the Internet. In this paper, we experiment with various pre-trained language models (PLMs) to check the veracity of German news articles. Since there are very few PLMs for German, we translate the German benchmark dataset to English. Then, we conduct experiments with both German and translated English datasets for predicting the veracity of the news articles. In the experiments, we apply the fine-tuning and adapter methods based on corresponding PLMs. Our experiments on the FANG-COVID dataset show that the errors resulting from translating German to English can be compensated by the accuracy of available PLMs in English. With these experiments, we show that translating a dataset from a lower-resource language to English is a valid intermediate step for further processing with English PLMs.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Fake News Detection</kwd>
        <kwd>Pre-trained Language Model</kwd>
        <kwd>Machine Translation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Since the US election in 2016, the spread of fake news has caused more and more concern in the
public [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. There are various motives behind the spread of fake news, e.g. political and financial.
In academia, there has been an increasing interest in fighting fake news with machine learning
and natural language processing (NLP) based methods. There are diferent kinds of definitions
for fake news. Following Shu et al. [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], fake news is a news article that is intentionally and
verifiably false. For fighting fake news, there are many public training datasets, most of which
have been crawled from the Internet. A large part of the popular datasets is in English, e.g.
BuzzFeed News [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], Fake News Challenge dataset [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], FEVER [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], LIAR [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], etc. Currently,
pre-trained language models (PLMs) are standard tools for NLP tasks. English datasets are also
the main material for training these models. Therefore, there are obvious advantages regarding
the amount of pre-trained language models and relevant datasets to detecting fake news in
English.
      </p>
      <p>
        Due to the aforementioned facts, we come up with an intuitive way for detecting fake
news in German and thereby show that the translation to English is a reasonable way for
fake news detection. Concretely, we translate a German fake news dataset to English with
a transformer-based machine translator. We then fine-tune or adapt Bidirectional Encoder
Representations from Transformers (BERT) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and Robustly Optimized BERT Pretraining
Approach (RoBERTa) [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], which are mainly trained on English datasets, to predict the veracity
of news articles. For comparison, we directly fine-tune or adapt the German version of the
BERT model with the German fake news dataset for further prediction. Based on the results
of the experiments with indirect and direct methods, we show the feasibility of the indirect
method via translation for fake news detection.
      </p>
      <p>The rest of the paper is organized as follows: We briefly review related papers for fake news
detection, especially on computational methods, in Section 2. In Section 3, we describe the
original German open-source dataset and the translation process. In Section 4, we explain our
models for the experiments in detail. In Section 5, we report the results of various experiments.
Finally, we conclude and give an outlook for future work in Section 6.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        Fake news detection has drawn increasing attention from the research community. There
is fake news in various forms of news, text, image, video, and multimedia. We restrict the
literature review to text-based fake news detection. The models for fake news detection can
be based on the news contents and social contexts [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The latter is often applied to combat
fake news on social media platforms. According to Shu et al. [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], the content-based models
for checking the facts in the news can be classified into three groups, namely expert-oriented,
crowdsourcing-oriented, and computational-oriented. The computational-oriented models are
our focus in the review.
      </p>
      <p>
        Before the introduction of large PLMs, most computation-oriented models applied
supervised learning in the form of classification with the construction of various features. Zhou
et al. [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] classified the features into 5 groups, namely lexicon, syntax, semantic, discourse,
and combination. The traditional machine learning models for detecting fake news include
Naive Bayes [
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ], Support Vector Machine [
        <xref ref-type="bibr" rid="ref11 ref9">9, 11</xref>
        ], Random Forest [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], and so on. These
methods achieve high accuracy for verifying the news. Meanwhile, they need complex feature
engineering, that demands domain expertise.
      </p>
      <p>
        Transformer-based PLMs have achieved SOTA performance for many NLP tasks. Fine-tuning
is the standard method for downstream tasks with PLMs, which updates all parameters in
the PLM for the specific downstream task [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. They have also been applied for fake news
detection. Due to the extensive training corpora, transformer models can capture the linguistic
features in text well. Sepúlveda-Torres et al. [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] achieved SOTA performance on the dataset
of fake news challenge with PLMs. Hously et al. [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] proposed adapter modules that add only
a few trainable parameters per task and freeze the parameters in the PLMs. Compared to full
ifne-tuning, the adapter method needs to train many fewer parameters. For fake news detection,
the adapter modules are often used to introduce external knowledge into the PLMs for fact
verification. Whitehouse et al. [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] evaluated fake news detection with knowledge-enhanced
language models which include the K-Adapter model. Factual knowledge obtained from the
text triples on Wikipedia and Wikidata, and linguistic knowledge obtained from dependency
parsing, are added to the PLMs via the adapter modules [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. The evaluation in [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] shows that
given relevant and up-to-date knowledge bases, knowledge-enhanced models can significantly
improve the performance of fake news detection.
      </p>
      <p>
        Machine translation is a widely applied data augmentation method for NLP tasks [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. Amjad
et al. [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] translated English corpus to Urdu as extra training data for fake news detection. The
augmented data has not improved the performance due to the quality of machine translation.
De et al. [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] tackled the non-availability of annotated corpora for four low-resource languages
by translating English datasets to corresponding languages.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset</title>
      <p>In this section, we provide an overview of the dataset used for the following experiments.
We first describe the original chosen German dataset about COVID-19. Based on the German
dataset, we then give an introduction to our machine translator for converting German news
articles to English.</p>
      <sec id="sec-3-1">
        <title>3.1. Original Dataset</title>
        <p>
          There are very few German fake news datasets publicly available. We have searched and decided
to choose the FANG-COVID dataset provided in [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]. The reason we choose this dataset is
that the dataset is well labeled and contains a large number of training examples. The dataset
contains in total 41,242 news articles about the COVID-19 pandemic, 28,056 news articles are
labeled as real and 13,186 news articles are abeled as fake. The dataset has been crawled from 3
reliable news agencies, including Sueddeutsche Zeitung, Tagesspiegel, ZEIT, and 10 unreliable
news agencies, e.g. AnonymousNews, Contra-Magazin, etc. The news articles from the 3 reliable
news agencies are labeled as real and from the 10 unreliable news agencies as fake. In addition
to labels, headers, and contents of the news articles, the dataset also contains meta-information
about URL, date, source, and Twitter history. We only use the text contents of the news articles
and the labels for training and prediction. The headers and meta-information are excluded from
the experiments.
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Dataset Translation</title>
        <p>
          The original FANG-COVID dataset is in German. We translate all articles to English for further
experiments. The dataset has over 40,000 articles and each article has about 48 sentences
on average. Considering the progress in neural machine translation with transformer-based
models, we implemented our own machine translator. The engine of our translator is the
pre-trained opus-mt-de-en, based on Marian-NMT [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]. Each article is separated into sentences
with spaCy sentence detector [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ]. Afterwards, each sentence is put into the translator to obtain
the corresponding English translation.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology</title>
      <p>
        In this section, we present our experiments with the FANG-COVID dataset. Based on pre-trained
language models we explore two typical methods: fine-tuning and adapter models, for predicting
the labels of the news articles in the dataset. All base models are based on the Huggingface
transformers library [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ].
      </p>
      <sec id="sec-4-1">
        <title>4.1. Fine-tuning</title>
        <p>
          For the experiments, we choose a German version BERT model, namely
bert-base-germancased, as the base model [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ]. For the English version, we try with two base models, namely
bert-base-uncased [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and roberta-base [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. Since PLMs are mostly trained on English corpora,
we use two English base models to reflect the availability of models in English compared to
other languages. We then add a binary classification head to the base models for predicting the
veracity of the news articles.
        </p>
        <p>
          We split our dataset into training, validation, and test dataset (64%, 16%, 20%). The content of
each news article is tokenized with the corresponding tokenizer provided by the base model.
The maximum input length of each base model is limited to 512. The tokens outside the range
are dropped. We choose cross-entropy loss as our loss function with
ℒ(, ) = −  * log() − (1 − ) * log(1 − ),
(1)
where  is the target value (0 or 1) and  is the predicted probability. AdamW [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] is used as
the optimizer. We have tried diferent learning rates and choose the learning rate to be 0.00005.
With some test runs, we find that within 5 epochs, the fine-tuning method already achieves
very good performance regarding accuracy. So, we fine-tune each model with 5 epochs. We
then choose the model with the smallest loss on the validation dataset as the final model for the
predictions on the test dataset.
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Adapter</title>
        <p>
          As an alternative to the fine-tuning method, we also experiment with the adapter method. The
adapter method adds extra layers to the original pre-trained transformer-based models. As
in the fine-tuning method, we also add a classification head for predicting the veracity of the
news. For the downstream task, the model only updates the added parameters by freezing
the parameters of the pre-trained models [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. With this property, the adapter model can add
extra layers for each downstream task without forgetting the learned knowledge in PLMs [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ].
Additionally, the adapter methods need to train many fewer parameters compared to the full
ifne-tuning methods. We have applied the framework of AdapterHub [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ] which has been built
on top of the Huggingface transformer framework. For the configuration of the adapter, we
applied the Pfeifer version configuration [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ]. With the adapter method, we have the same
base models, dataset split, optimizer, and loss function. We have selected the learning rate of
0.0001. The adapter models achieve very good performance regarding accuracy on training and
validation datasets within 10 epochs. So, we run each adapter model with 10 epochs and choose
the model with the smallest loss on the validation dataset for evaluating the test dataset.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Evaluation</title>
      <p>For the evaluation, we have chosen standard accuracy, F1 score, precision, and recall as metrics.
To reduce the impact of randomness, we run each model 5 times with diferent seeds. We report
the mean of the performance of the fine-tuning and the adapter method separately in Table 1.
The top performance of each group (fine-tuning and adapter) is marked in bold.</p>
      <p>
        Comparing the results across two groups (fine-tuning and adapters), both methods have very
similar performance. This confirms the finding in [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ] that, for the dataset with a large number
of training examples (FANG-COVID over 41k), adapter methods have not shown significant
advantages in performance over fine-tuning methods. Within each group (fine-tuning and
adapters), the RoBERTa-based models achieve the best performance among the three base
models. The performance has proven the improvement of retrained RoBERTa over the original
BERT model. The German BERT version has also outperformed the original BERT model in both
ifne-tuning and adapter methods which has shown good performance in the German domain.
The results show that machine translation of the dataset from lower-resource languages to
English is a valid intermediate step since more PLMs are available for the specific downstream
task.
      </p>
      <p>
        We give here a brief analysis of the prediction errors by the models. In general (averaged
over 5 seeds), the articles labeled as fake have a higher probability of 4.5% being misclassified,
compared to the misclassification probability of 1.5% for the articles labeled as real. This
can be partly explained by the unbalanced dataset, 68% of the articles are labeled as real and
32% as fake. Fewer training examples of fake articles lead to worse performance in the test
datasets. We further apply Jaccard similarity to estimate how similar the prediction errors
are. Jaccard similarity is defined as  (, ) = ||∩∪|| [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ], where | ∩ | is the number of
common prediction errors of models A and B, and | ∪ | is the number of total prediction
errors of models A and B. With pairwise comparison (6 models, 15 pairs) and averaged over 5
seeds, model Fine-tuning bert-base-uncased (English) and Adapter bert-base-uncased (English)
have the highest similarity coeficient of 0.269. Model Fine-tuning bert-base-german-cased
(German) and Adapter bert-base-german-cased (German) have a similarity coeficient of 0.255.
The similarity coeficients of models with diferent input languages are mostly below 0.15. The
models with the same input language have a higher similarity of prediction errors.
      </p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion and Outlook</title>
      <p>In this paper, we have experimented with an open-source German news dataset to validate the
hypothesis that machine translation to English can be a viable intermediate step for fake news
detection. Besides original news articles in German, we have translated German news articles
to English with a self-implemented neural machine translator. For the original German news
articles, we applied a German pre-trained BERT model. For the translated news articles we
experimented with the BERT and the RoBERTa model. Based on the base models, we predict
the truthfulness of news articles with the fine-tuning and adapter method. The results of the
experiments show that the prediction via translation is a competitive method (even slightly
better than the direct method) and the errors resulting from translation can be mitigated by the
accuracy of available PLMs in English.</p>
      <p>We have tackled the fake news detection problem with coarse granularity, namely binary
real and fake labels. In future work, we will focus on a taxonomy with more fine-grained labels
to also generate explanations for why an article is classified as fake news. This information
would be useful to gain a user’s trust to use a fake news detection system.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments References</title>
      <p>This work was carried out with the support of the German Federal Ministry of Education and
Research (BMBF) within the project "DeFaktS" (Grant 16KIS1524K).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Zafarani</surname>
          </string-name>
          ,
          <article-title>A survey of fake news: Fundamental theories, detection methods, and opportunities</article-title>
          ,
          <source>ACM Comput. Surv</source>
          .
          <volume>53</volume>
          (
          <year>2020</year>
          ). URL: https://doi.org/10.1145/3395046. doi:
          <volume>10</volume>
          .1145/3395046.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>K.</given-names>
            <surname>Shu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sliva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tang</surname>
          </string-name>
          , H. Liu,
          <article-title>Fake news detection on social media: A data mining perspective</article-title>
          ,
          <source>SIGKDD Explor. Newsl</source>
          .
          <volume>19</volume>
          (
          <year>2017</year>
          )
          <fpage>22</fpage>
          -
          <lpage>36</lpage>
          . URL: https://doi.org/10.1145/ 3137597.3137600. doi:
          <volume>10</volume>
          .1145/3137597.3137600.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>BuzzFeedNews</surname>
          </string-name>
          ,
          <year>2014</year>
          . URL: https://github.com/BuzzFeedNews.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>FakeNewsChallenge</surname>
          </string-name>
          ,
          <year>2017</year>
          . URL: https://github.com/FakeNewsChallenge/fnc-1.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>Thorne</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vlachos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Christodoulopoulos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mittal</surname>
          </string-name>
          ,
          <article-title>Fever: a large-scale dataset for fact extraction and verification</article-title>
          ,
          <source>in: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , New Orleans, Louisiana,
          <year>2018</year>
          , pp.
          <fpage>809</fpage>
          -
          <lpage>819</lpage>
          . URL: https://aclanthology.org/N18-1074. doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>N18</fpage>
          -1074.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>"Liar, Liar Pants on Fire": A new benchmark dataset for fake news detection, in: Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics</article-title>
          (Volume
          <volume>2</volume>
          :
          <string-name>
            <surname>Short</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Vancouver, Canada,
          <year>2017</year>
          , pp.
          <fpage>422</fpage>
          -
          <lpage>426</lpage>
          . URL: https://aclanthology.org/P17-2067. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P17</fpage>
          -2067.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Delvin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</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>
          ). doi:
          <volume>10</volume>
          .48550/ARXIV.
          <year>1810</year>
          .
          <volume>04805</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <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>
          <year>2019</year>
          ). doi:
          <volume>10</volume>
          . 48550/ARXIV.
          <year>1907</year>
          .
          <volume>11692</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>S.</given-names>
            <surname>Afroz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Brennan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Greenstadt</surname>
          </string-name>
          ,
          <article-title>Detecting hoaxes, frauds, and deception in writing style online</article-title>
          ,
          <source>in: 2012 IEEE Symposium on Security and Privacy, IEEE Symposium on Security and Privacy</source>
          , San Francisco, California, USA,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>P.</given-names>
            <surname>Bharadwaj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Shao</surname>
          </string-name>
          ,
          <article-title>Fake news detection with semantic features and text mining</article-title>
          ,
          <source>International Journal on Natural Language Computing (IJNLC)</source>
          (
          <year>2019</year>
          )
          <fpage>17</fpage>
          -
          <lpage>22</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>V.</given-names>
            <surname>Pérez-Rosas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kleinberg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lefevre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Mihalcea</surname>
          </string-name>
          ,
          <article-title>Automatic detection of fake news</article-title>
          ,
          <source>in: Proceeding of the 27th International Conference on Computational Linguistics</source>
          , Santa Fe, New Mexico, USA,
          <year>2018</year>
          , pp.
          <fpage>3391</fpage>
          -
          <lpage>3401</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>R.</given-names>
            <surname>Sepúlveda-Torres</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Vicente</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Saquete</surname>
          </string-name>
          , E. Lloret,
          <string-name>
            <given-names>M.</given-names>
            <surname>Palomar</surname>
          </string-name>
          , Headlinestancechecker:
          <article-title>Exploiting summarization to detect headline disinformation</article-title>
          ,
          <source>Journal of Web Semantics</source>
          <volume>71</volume>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <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>
          ,
          <string-name>
            <surname>Q. De Laroussilhe</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Gesmundo</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Attariyan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Gelly</surname>
          </string-name>
          ,
          <article-title>Parameter-eficient transfer learning for nlp</article-title>
          ,
          <source>in: Proceedings of the 36th International Conference on Machine Learning</source>
          , California, USA,
          <year>2019</year>
          , pp.
          <fpage>2790</fpage>
          -
          <lpage>2799</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>C.</given-names>
            <surname>Whitehouse</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Weyde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Madhyastha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Komninos</surname>
          </string-name>
          ,
          <article-title>Evaluation of fake news detection with knowledge-enhanced language models</article-title>
          ,
          <source>in: Proceedings of the International AAAI Conference on Web and Social Media</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>1425</fpage>
          -
          <lpage>1429</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>R.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Duan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Ji</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhou</surname>
          </string-name>
          , K-adapter:
          <article-title>Infusing knowledge into pre-trained models with adapters, Findings of the Association for Computational Linguistics: ACL-IJCNLP</article-title>
          ,
          <year>Online</year>
          ,
          <year>2021</year>
          , pp.
          <fpage>1405</fpage>
          -
          <lpage>1418</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>S.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Gangal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chandar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Vosoughi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mitamura</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Hovy</surname>
          </string-name>
          ,
          <article-title>A survey of data augmentation approaches for nlp, Findings of the Assocaition for Computational Linguistics: ACL-</article-title>
          <string-name>
            <surname>IJCNLP</surname>
          </string-name>
          ,
          <year>2021</year>
          , pp.
          <fpage>968</fpage>
          -
          <lpage>988</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>M.</given-names>
            <surname>Amjad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Sidorov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhila</surname>
          </string-name>
          ,
          <article-title>Data augmentation using machine transation for fake news detection in the urdu language</article-title>
          ,
          <source>in: Proceedings of the 12th Conference on Language Resources and Evaluation (LREC)</source>
          ,
          <year>Marseille</year>
          ,
          <year>2020</year>
          , pp.
          <fpage>2537</fpage>
          -
          <lpage>2542</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>A. De</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Bandyopahyay</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Gain</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Ekbal</surname>
          </string-name>
          ,
          <article-title>A transformer-based approach to multilingual fake news detection in low-resource languages</article-title>
          ,
          <source>ACM Transactions on Asian and LowResource Language Information Processing</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>J.</given-names>
            <surname>Mattern</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Qiao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Kerz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Wiechmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Strohmaier</surname>
          </string-name>
          ,
          <article-title>Fang-covid: A new large-scale benchmark dataset for fake news detection in German</article-title>
          ,
          <source>in: Proceedings of the Fourth Workshop on Fact Extraction and VERification (FEVER)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Dominican Republic,
          <year>2021</year>
          , pp.
          <fpage>78</fpage>
          -
          <lpage>91</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          . fever-
          <volume>1</volume>
          .9. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .fever-
          <volume>1</volume>
          .9.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Thottingal</surname>
          </string-name>
          ,
          <article-title>Opus-mt - building open translation services for the world</article-title>
          ,
          <source>in: Proceedings of the 22nd Annual Conference of the European Association for Machine Translation, European Association for Machine Translation</source>
          , Lisboa, Portugal,
          <year>2020</year>
          , pp.
          <fpage>479</fpage>
          -
          <lpage>480</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .eamt-
          <volume>1</volume>
          .
          <fpage>61</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>A.</given-names>
            <surname>Honnibal</surname>
          </string-name>
          , I. Montani,
          <string-name>
            <given-names>S. Van</given-names>
            <surname>Landeghem</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          <article-title>Boyd, spycy: Industrial-strength natural language processing in python (</article-title>
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <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.</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>
          ,
          <source>in: Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstration</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <surname>deepset</surname>
            <given-names>Homepage</given-names>
          </string-name>
          ,
          <year>2019</year>
          . URL: https://www.deepset.ai/german-bert.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>I.</given-names>
            <surname>Loshchilov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hutter</surname>
          </string-name>
          ,
          <article-title>Decoupled weight decay regularization</article-title>
          ,
          <source>Seventh International Conference on Learning Representations (ICLR)</source>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>A.</given-names>
            <surname>Lauscher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Majewska</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Ribeiro</surname>
          </string-name>
          , I. Gurevych,
          <string-name>
            <given-names>N.</given-names>
            <surname>Rozanov</surname>
          </string-name>
          , G. Glavaš,
          <article-title>Common sense or world knowledge? investigating adapter-based knowledge injection into pretrained transformers</article-title>
          ,
          <source>in: Proceedings of Deep Learning Inside Out</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>43</fpage>
          -
          <lpage>49</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>J.</given-names>
            <surname>Pfeifer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rücklé</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Poth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kamath</surname>
          </string-name>
          , I. Vulić,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ruder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Adapterhub: A framework for adapting transformers</article-title>
          ,
          <source>in: Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>46</fpage>
          -
          <lpage>54</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          . emnlp-demos.7. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp-demos.
          <volume>7</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>R.</given-names>
            <surname>He</surname>
          </string-name>
          , L. Liu,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ye</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ding</surname>
          </string-name>
          , L. Cheng, J.
          <string-name>
            <surname>Low</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Bing</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Si</surname>
          </string-name>
          ,
          <article-title>On the efectiveness of adapter-based tuning for pretrained language model adaptation</article-title>
          ,
          <source>in: Proceedings of the 59 Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing, Association for Computational Linguistics</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>2208</fpage>
          -
          <lpage>2222</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>S.</given-names>
            <surname>Niwattanakul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Singthongchai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Naenudorn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Wanapu</surname>
          </string-name>
          ,
          <article-title>Using of jaccard coeficient for keywords similarity</article-title>
          ,
          <source>in: Proceedings of the International MultiConference of Engineers and Computer Scientist</source>
          , Hong Kong,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>