Datasets:

Modalities:
Text
Formats:
csv
Libraries:
Datasets
pandas
File size: 2,070 Bytes
18c683e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# RealFakeNews: A Dataset for Detecting Fake News

**RealFakeNews** is a dataset of over **108,000 news samples**, created to support the development of models that detect misinformation. Each entry contains a short news article along with a label indicating whether it’s **real** or **fake**.

---

##  What's in the Dataset?

- **Samples**: 108,032  
- **Columns**:  
  - `text`: News content (string)  
  - `label`: Classification label (string: `REAL` or `FAKE`)  
- **Language**: English  
- **Format**: CSV  
- **License**: [CC BY‑NC‑SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)

---

##  Label Distribution

| Label | Meaning    | Count   |
|-------|------------|---------|
| REAL  | Real News  | 64,641  |
| FAKE  | Fake News  | 43,391  |

> The dataset is slightly imbalanced, with more real news than fake news entries.

---

##  Use Cases

- Fake news classification  
- NLP experiments on misinformation  
- Training and fine‑tuning transformers (e.g., BERT, RoBERTa)  
- Evaluation using classification metrics like Accuracy, F1-score, ROC-AUC  

---

##  Sample Entry

```json
{
  "text": "From India Censoring Internet Archive To No Night On Aug 12: Not Real....No! Banks are NOT charging Rs 150 after 4 transactions on...",
  "label": "FAKE"
}
```

---

## ⚠️ Warning

- **Misinformation Risk**: This dataset includes content labeled as "FAKE" that may contain false or misleading information. Even "REAL" entries may not be fully accurate or current.
- **Not for Automated Fact-Checking**: Models trained using this dataset should not be used to make critical decisions or perform real-world fact-checking without human oversight.
- **Potential Bias**: While the data comes from a range of sources, biases may still exist in topic selection, language, or cultural framing.
- **Research & Educational Use Only**: This dataset is intended strictly for non-commercial research and educational purposes. Commercial use requires separate permission.

> Use this dataset responsibly and with awareness of its limitations.