<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">CiTIUS at FakeDeS 2021: A Hybrid Strategy for Fake News Detection</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author role="corresp">
							<persName><forename type="first">Pablo</forename><surname>Gamallo</surname></persName>
							<email>pablo.gamallo@usc.gal</email>
							<affiliation key="aff0">
								<orgName type="laboratory">Centro de Investigación en Tecnoloxías da Información (CiTIUS</orgName>
								<orgName type="institution">Universidade de Santiago de Compostela</orgName>
							</affiliation>
						</author>
						<title level="a" type="main">CiTIUS at FakeDeS 2021: A Hybrid Strategy for Fake News Detection</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">A0276DC99E62DB65068AF884E1D3D7FA</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T00:23+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>Fake News</term>
					<term>Transformers</term>
					<term>BERT Sentence Similarity</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>This article describes several BERT-based supervised classification strategies submitted to Fake News Detection in Spanish Shared Task, where the sources of data are news annotated as fake or real. In our experiments, the systems were trained exclusively with the official datasets provided by the organizers of the shared task, without making use of any other source of information. The best system turned out to be a hybrid strategy that combines sentence similarity with some linguistic heuristics.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>The widespread use of social media and e-communication platforms pushed people to rely on them as the main source for information. Unfortunately, an abnormal amount of fake news, rumours and disinformation has overflowed social media, with the aim of drawing the attention of their users to shape their opinions and judgments <ref type="bibr" target="#b9">[10]</ref>. Fake news and all kind of disinformation can have dramatic effects on countries, businesses, and people on various levels, whether political or economically <ref type="bibr" target="#b1">[2]</ref>.</p><p>Many approaches have been proposed to identify the authenticity of published news on social media and e-communication platforms. Some of these approaches rely on the users of the platforms. For example, Facebook urges their users to report suspicious news or comments <ref type="bibr" target="#b13">[14]</ref>, and even makes uses of professionals to manually checks the reported comments and news published on their platform. The manual fact checking process also has been used by many other fact-checkers, journals and organizations to discover questionable news, however, this manual method is a waste of human efforts because of the huge amount of news published every second on social media <ref type="bibr" target="#b6">[7]</ref>. Accordingly, automating the detection of fake news has caught the attention of researchers in academia and industry particularly after the incident of the American elections in 2016.</p><p>The use of Natural Language Processing (NLP) techniques with machine learning and deep learning methods for the detection of fake news can help to stop or at least reducing the misinformation. The use of both traditional machine learning techniques and deep learning approaches for the detection of hostile communication (a term that embraces both disinformation and hate speech) has received much attention recently <ref type="bibr" target="#b9">[10,</ref><ref type="bibr" target="#b0">1,</ref><ref type="bibr" target="#b7">8]</ref>, even though the most successful systems for such a task are those using domain-specific fine-tuning of pre-trained masked language models (i.e., Transformers architectures). For example, in the shared subtask focused on COVID-19 Fake News Detection in English, the best performances were achieved by Transformer-based systems <ref type="bibr" target="#b11">[12]</ref>.</p><p>In this paper, we describe the experiments performed to participate at Fake News Detection in Spanish Shared Task (FakeDeS 2021) <ref type="bibr" target="#b8">[9]</ref> In order to train and develop the systems, the organizers of this task provide the Spanish Fake News Corpus, which consists of news compiled from different web sources and covering several topics, e.g. Economy, Science, Politics, Sport, Health, etc. <ref type="bibr" target="#b12">[13]</ref>. The final test corpus provided by the organizers for evaluation contains news on COVID-19, a specific topic which was not including in the train and development corpora. The task consists of deciding if a piece of news is real or fake by considering both the title and body text of the news.</p><p>In this paper, in order to accomplish the Fake News Detection in Spanish Shared Task, we compare several strategies that make use of BERT-based models <ref type="bibr" target="#b3">[4]</ref>. One of the proposed strategies is hybrid as they compute semantic similarity by combining BERT-based models with linguistic heuristics. This turned out to be our best model in the test dataset, and the sixth best model in the shared task, out of 21 participants.</p><p>The remaining of the paper is organized as follows. In section 2, we describe the proposed methods. Experimental results and discussion are addressed in section 3, while section 4 reports the conclusion of the current study as well as future work.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">The Strategies</head><p>As it has been said, our aim is to compare several BERT-based strategies by making use of the training data provided by the organizers of Fake News Detection in Spanish Shared Task, which is part of Iberian Languages Evaluation Forum (IberLEF 2021) <ref type="bibr" target="#b10">[11]</ref>.</p><p>Bidirectional Encoder Representations from Transformers, known as BERT <ref type="bibr" target="#b3">[4]</ref>, is a bi-directional transformer-based language model learning information from left to right and from right to left. As any language model, it can be used to extract high quality language features from input text, but it can also be fine-tuned on specific NLP tasks such as entity recognition, classification, question answering, sentiment analysis, or claim verification in fact checking.</p><p>In the experiments described in the next section, we will use BERT with three different strategies:</p><p>Fine-tune model: In the fine tuning strategy, we add a dense layer on top of the last layer of the pre-trained BERT model and then train the whole model by making use of the task specific dataset. Pre-trained BERT model has been fine-tuned in order to conduct the binary classification task to fake news detection.</p><p>Sentence similarity: BERT is also able to extract both contextualized word embeddings and sentence embeddings from text in order to compute semantic similarity between complex expressions or sentences. For the particular task at stake, we compare the target news of the test set with news labeled as fake in the training dataset and those labeled as real. Comparison consists in compute sentence similarity between the target news and all labeled news of the training data. The target news is classified as fake if the average of sentence similarities with fake news is exceeding the average of sentence similarities with real news. It is classified as real if the opposite situation arises.</p><p>Hybrid strategy: This uses the output of the previous method in order to identify the borderline cases, that is, those news that were classified as either fake or real with a low value (this value was set empirically). These borderline cases were then reclassified by using linguistic cues, such as size of the news, the presence of sentences written in capital letters, or specific fake statements (e.g., 5G...) in the body text of the news.</p><p>To compare these systems with traditional machine learning methods, we also performed tests with a Naive Bayes classifier. For this purpose, we used the system we implemented in a previous work for the task of bot detection <ref type="bibr" target="#b5">[6]</ref>, which relies on Linguakit <ref type="bibr" target="#b4">[5]</ref> for tokenization and extraction of n-grams.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Experiments</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">Datasets</head><p>The datasets provided by the organizers consists of three partitions: train, development, and test. The train dataset consists of 676 labeled news containing 264K words. The development dataset consists of 295 news with 126K words, while the test dataset consists of 572 news with 190K words, the first being used for preliminary experiments and configuration of the systems, and the second one for final evaluation. The systems submitted to the shared task for final evaluation were trained by merging both the train and development datasets: 971 news with 391K words.</p><p>It should be noticed that we did not made use of any external source of knowledge or other annotated datasets to fine tune the models</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Systems Configuration</head><p>Both fine tuning and sentence similarity strategies were performed with BETO [3], a pre-trained model for Spanish with 12 layers, by making use of Huggingface Transformers library <ref type="bibr" target="#b14">[15]</ref>. Concerning fine tuning, the training dataset was divided in both train (80%) and validation (20%) file partitions, while the development dataset was used as test file. For the official results, train and development were merged to build a larger training file.Concerning the use of BERT for sentence similarity, we built sentence embeddings with a pooling method: it adds a pooling operation to the output of the Transformer to derive fixed sized sentence embeddings. The specific pooling strategy we used is the mean of all output vectors.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3">Evaluation</head><p>Table <ref type="table" target="#tab_0">1</ref> shows F1 scores (just for fake values) obtained by our four strategies on both development and final test datasets. The two strategies submitted to the shared task, which where the best in the development dataset, are in bold. The last column (F1 test) stands for the official scores obtained in the final evaluation. Our best system, the hybrid method, ranked 6th out of 21 participants. This system has a more stable behaviour than the fine tuned BERT model, whose F1 scores is much lower in the test dataset than in the development one. Traditional Naive Bayes classifier gives the lowest values on the development dataset. It is worth noting that the content of the test dataset is very different from that of the development one as they were built using different topics and journals of different countries, which makes test classification a very difficult task.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Conclusions</head><p>In this paper, several classification strategies have been compared for the fake news detection task on Spanish news. More precisely, we compared recent strategies relying on the use of Transformers, which provide deep semantic models with contextualized word embeddings. The best result combines BERT-based sentence similarity with linguistic heuristics. The results were submitted to Fake News Detection in Spanish Shared Task. Experiments were performed without considering external sources of knowledge or other annotated datasets.</p><p>In future work, we will try to carry out an in-depth analysis of the results obtained to establish what factors determine the significant difference between the different strategies with the datasets evaluated. We will also look for other sources of information and explore more linguistic information so as to improve the hybrid strategy.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1 .</head><label>1</label><figDesc>Results in F1 of four systems on both development and test datasets.</figDesc><table><row><cell>Methods</cell><cell cols="2">F1 devel F1 test</cell></row><row><cell>BERT fine tuning</cell><cell>76.55</cell><cell>47.19</cell></row><row><cell>Sentence BERT</cell><cell>71.38</cell><cell>-</cell></row><row><cell cols="2">Sentence BERT + Heur. 73.54</cell><cell>70.1</cell></row><row><cell>Naive Bayes</cell><cell>68.58</cell><cell>-</cell></row></table></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Supervised classifiers to identify hate speech on english and spanish tweets</title>
		<author>
			<persName><forename type="first">S</forename><surname>Almatarneh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Gamallo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">J R</forename><surname>Pena</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Alexeev</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">International Conference on Asian Digital Libraries</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2019">2019</date>
			<biblScope unit="page" from="23" to="30" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Fake news and covid-19: modelling the predictors of fake news sharing among social media users</title>
		<author>
			<persName><forename type="first">O</forename><forename type="middle">D</forename><surname>Apuke</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Omar</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Telematics and Informatics</title>
		<imprint>
			<biblScope unit="page">101475</biblScope>
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Spanish pretrained bert model and evaluation data</title>
		<author>
			<persName><forename type="first">J</forename><surname>Caete</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Chaperon</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Fuentes</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">H</forename><surname>Ho</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Kang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Prez</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">PML4DC at ICLR</title>
				<imprint>
			<date type="published" when="2020">2020. 2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">BERT: Pre-training of deep bidirectional transformers for language understanding</title>
		<author>
			<persName><forename type="first">J</forename><surname>Devlin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">W</forename><surname>Chang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Lee</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Toutanova</surname></persName>
		</author>
		<idno type="DOI">10.18653/v1/N19-1423</idno>
		<ptr target="https://www.aclweb.org/anthology/N19-1423" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</title>
				<meeting>the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies<address><addrLine>Minneapolis, Minnesota</addrLine></address></meeting>
		<imprint>
			<publisher>Association for Computational Linguistics</publisher>
			<date type="published" when="2019">2019</date>
			<biblScope unit="volume">1</biblScope>
			<biblScope unit="page" from="4171" to="4186" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Lin-guaKit: A Big Data-Based Multilingual Tool for Linguistic Analysis and Information Extraction</title>
		<author>
			<persName><forename type="first">P</forename><surname>Gamallo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Garcia</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Pieiro</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Martinez-Castao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">C</forename><surname>Pichel</surname></persName>
		</author>
		<idno type="DOI">10.1109/SNAMS.2018.8554689</idno>
		<ptr target="https://doi.org/10.1109/SNAMS.2018.8554689" />
	</analytic>
	<monogr>
		<title level="m">2018 Fifth International Conference on Social Networks Analysis, Management and Security (SNAMS)</title>
				<imprint>
			<date type="published" when="2018">2018</date>
			<biblScope unit="page" from="239" to="244" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Naive-bayesian classification for bot detection in twitter</title>
		<author>
			<persName><forename type="first">P</forename><surname>Gamallo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Almatarneh</surname></persName>
		</author>
		<ptr target="http://ceur-ws.org/Vol-2380/paper\_194.pdf" />
	</analytic>
	<monogr>
		<title level="m">Working Notes of CLEF 2019 -Conference and Labs of the Evaluation Forum</title>
		<title level="s">CEUR Workshop Proceedings</title>
		<editor>
			<persName><forename type="first">L</forename><surname>Cappellato</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><forename type="middle">E</forename><surname>Losada</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">H</forename><surname>Müller</surname></persName>
		</editor>
		<meeting><address><addrLine>Lugano, Switzerland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2019">September 9-12, 2019. 2019</date>
			<biblScope unit="volume">2380</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">The battle against online harmful information: The cases of fake news and hate speech</title>
		<author>
			<persName><forename type="first">A</forename><surname>Giachanou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Rosso</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 29th ACM International Conference on Information &amp; Knowledge Management</title>
				<meeting>the 29th ACM International Conference on Information &amp; Knowledge Management</meeting>
		<imprint>
			<date type="published" when="2020">2020</date>
			<biblScope unit="page" from="3503" to="3504" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Evaluating machine learning algorithms for fake news detection</title>
		<author>
			<persName><forename type="first">S</forename><surname>Gilda</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">IEEE 15th Student Conference on Research and Development (SCOReD)</title>
				<imprint>
			<publisher>IEEE</publisher>
			<date type="published" when="2017">2017. 2017</date>
			<biblScope unit="page" from="110" to="115" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Overview of fakedes task at iberlef 2020: Fake news detection in spanish</title>
		<author>
			<persName><forename type="first">H</forename><surname>Gómez-Adorno</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">P</forename><surname>Posadas-Durán</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Bel-Enguix</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Porto</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Procesamiento del Lenguaje Natural</title>
		<imprint>
			<biblScope unit="volume">67</biblScope>
			<biblScope unit="issue">0</biblScope>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Fake news detection using deep learning models: A novel approach</title>
		<author>
			<persName><forename type="first">S</forename><surname>Kumar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Asthana</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Upadhyay</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Upreti</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Akbar</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Transactions on Emerging Telecommunications Technologies</title>
		<imprint>
			<biblScope unit="volume">31</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page">e3767</biblScope>
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<author>
			<persName><forename type="first">M</forename><surname>Montes</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Rosso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Aragn</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Agerri</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Ngel Lvarez Carmona</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Lvarez Mellado</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">C</forename><surname>De Albornoz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Chiruzzo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Freitas</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><forename type="middle">G</forename><surname>Adorno</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Gutirrez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">M J</forename><surname>Zafra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Lima</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">M P</forename><surname>De Arco</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Taul</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the iberian languages evaluation forum</title>
		<title level="s">CEUR Workshop Proceedings</title>
		<meeting>the iberian languages evaluation forum<address><addrLine>iberlef</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2021">2021. 2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Overview of constraint 2021 shared tasks: Detecting english covid-19 fake news and hindi hostile posts</title>
		<author>
			<persName><forename type="first">P</forename><surname>Patwa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Bhardwaj</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Guptha</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Kumari</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Sharma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Pykl</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Das</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Ekbal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">S</forename><surname>Akhtar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Chakraborty</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Combating Online Hostile Posts in Regional Languages during Emergency Situation</title>
				<editor>
			<persName><forename type="first">T</forename><surname>Chakraborty</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Shu</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">H</forename><forename type="middle">R</forename><surname>Bernard</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">H</forename><surname>Liu</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><forename type="middle">S</forename><surname>Akhtar</surname></persName>
		</editor>
		<meeting><address><addrLine>Cham</addrLine></address></meeting>
		<imprint>
			<publisher>Springer International Publishing</publisher>
			<date type="published" when="2021">2021</date>
			<biblScope unit="page" from="42" to="53" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Detection of fake news in a new corpus for the spanish language</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">P</forename><surname>Posadas-Durán</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Gómez-Adorno</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Sidorov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">J M</forename><surname>Escobar</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Intelligent &amp; Fuzzy Systems</title>
		<imprint>
			<biblScope unit="volume">36</biblScope>
			<biblScope unit="issue">5</biblScope>
			<biblScope unit="page" from="4869" to="4876" />
			<date type="published" when="2019">2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Fake news stance detection using deep learning architecture (cnn-lstm)</title>
		<author>
			<persName><forename type="first">M</forename><surname>Umer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Imtiaz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Ullah</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Mehmood</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><forename type="middle">S</forename><surname>Choi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><forename type="middle">W</forename><surname>On</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">IEEE Access</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="page" from="156695" to="156706" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">Transformers: State-of-the-art natural language processing</title>
		<author>
			<persName><forename type="first">T</forename><surname>Wolf</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Debut</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Sanh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Chaumond</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Delangue</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Moi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cistac</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Rault</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Louf</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Funtowicz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Davison</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Shleifer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Von Platen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Ma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Jernite</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Plu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Xu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Le Scao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Gugger</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Drame</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><surname>Lhoest</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Rush</surname></persName>
		</author>
		<idno type="DOI">10.18653/v1/2020.emnlp-demos.6</idno>
		<ptr target="https://www.aclweb.org/anthology/2020.emnlp-demos.6" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</title>
				<meeting>the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</meeting>
		<imprint>
			<publisher>Association for Computational Linguistics</publisher>
			<date type="published" when="2020-10">Oct 2020</date>
			<biblScope unit="page" from="38" to="45" />
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
