Gabriel-Lino-Garcia commited on
Commit
5c68e6a
·
verified ·
1 Parent(s): 45c1560

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +89 -3
README.md CHANGED
@@ -1,3 +1,89 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ language:
5
+ - pt
6
+ tags:
7
+ - 'FakeRecogna '
8
+ - Fake News
9
+ - Portuguese
10
+ - Dataset
11
+ license: mit
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+ # FakeRecogna 2.0 Extractive
16
+
17
+ FakeRecogna 2.0 presents the extension for the FakeRecogna dataset in the context of fake news detection. FakeRecogna includes real and fake news texts collected from online media and ten fact-checking sources in Brazil. An important aspect is the lack of relation between the real and fake news samples, i.e., they are not mutually related to each other to avoid intrinsic bias in the data.
18
+
19
+ ## The Dataset
20
+
21
+ The fake news collection was performed on licensed and verified Brazilian news websites with enrollment in the [Duke Reporters´ Lab Center](https://reporterslab.org/fact-checking/).
22
+ The system was designed as a source to fight against fake news spreading worldwide. For real news, we selected well-known media platforms in Brazil. Since real texts are much larger than most of the produced fake content, the genuine news was preprocessed with text summarization. At this stage, there is no further processing of stop words or lemmatization of the text. After trimming and standardizing the real news, we produced textual representations based on Bag of Words (BoW), Term Frequency – Inverse Document Frequency (TF-IDF), FastText, PTT5, and BERTimbau to form the input feature vectors for the ML models. Figure illustrates the steps of the proposed method.
23
+
24
+
25
+ <!--- PROJECT LOGO -->
26
+ <p align="center">
27
+ <img src="https://huggingface.co/datasets/recogna-nlp/FakeRecogna2/resolve/main/pipeline_proposed_method.jpg" alt="Pipeline FakeRecogna 2.0" width="600" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
28
+ </p>
29
+
30
+
31
+ Fake news sources were selected from nine fact-checking agencies in Brazil. This process provides a broad range of categories and many fake news samples to promote data diversity. Table 1 presents the existing Brazilian fact-checking initiatives and the number of fake news samples collected from each news source. When the search process was concluded, we ended up with 26,569 fake news samples, which, in turn, were further processed to detect and remove possible duplicate samples, thus leading to a final set of 26,400 fake news articles.
32
+
33
+ | Fact-Check Agency | Web address | # News |
34
+ | ------------------ | ------------------------------------ | ------ |
35
+ | AFP Checamos | https://checamos.afp.com/afp-brasil | 1,587 |
36
+ | Agência Lupa | https://piaui.folha.uol.com.br/lupa | 3,147 |
37
+ | Aos Fatos | https://aosfatos.org | 2,720 |
38
+ | Boatos.org | https://boatos.org | 8,654 |
39
+ | Estadão Verifica | https://politica.estadao.com.br/blogs/estadao-verifica | 1,405 |
40
+ | E-farsas | https://www.e-farsas.com | 3,330 |
41
+ | Fato ou Fake | https://oglobo.globo.com/fato-ou-fake| 2,270 |
42
+ | Projeto Comprova | https://checamos.afp.com/afp-brasil | 887 |
43
+ | UOL Confere | https://noticias.uol.com.br/confere | 2,579 |
44
+ | Total | -------------------------------------| 26, 569|
45
+
46
+ ## More informations
47
+
48
+ The FakeRecogna 2 dataset is a single XLSX file that contains 8 columns for the metadata, and each row represents a sample (real or fake news), as described in Table 2.
49
+
50
+ | Columns | Description |
51
+ | ------------------------ | ------------------------------------------ |
52
+ | Title | Title of article |
53
+ | Sub-title (if available) | Brief description of news |
54
+ | News | Information about the article |
55
+ | Category | News grouped according to your information |
56
+ | Author | Publication author |
57
+ | Date | Publication date |
58
+ | URL | Article web address |
59
+ | Label | 0 for real news and 1 for fake news |
60
+
61
+ ### FakeRecogna v2 - Abstrative
62
+
63
+ The abstrative summarization version of FakeRecogna 2 can be found [here](https://huggingface.co/datasets/recogna-nlp/fakerecogna2-abstrativo).
64
+
65
+ # Citation
66
+
67
+
68
+ @inproceedings{garcia-etal-2024-text,
69
+ title = "Text Summarization and Temporal Learning Models Applied to {P}ortuguese Fake News Detection in a Novel {B}razilian Corpus Dataset",
70
+ author = "Garcia, Gabriel Lino and
71
+ Paiola, Pedro Henrique and
72
+ Jodas, Danilo Samuel and
73
+ Sugi, Luis Afonso and
74
+ Papa, Jo{\~a}o Paulo",
75
+ editor = "Gamallo, Pablo and
76
+ Claro, Daniela and
77
+ Teixeira, Ant{\'o}nio and
78
+ Real, Livy and
79
+ Garcia, Marcos and
80
+ Oliveira, Hugo Gon{\c{c}}alo and
81
+ Amaro, Raquel",
82
+ booktitle = "Proceedings of the 16th International Conference on Computational Processing of Portuguese - Vol. 1",
83
+ month = mar,
84
+ year = "2024",
85
+ address = "Santiago de Compostela, Galicia/Spain",
86
+ publisher = "Association for Computational Lingustics",
87
+ url = "https://aclanthology.org/2024.propor-1.9/",
88
+ pages = "86--96"
89
+ }