File size: 2,039 Bytes
a81b8cf 8fcd3b9 a81b8cf 8fcd3b9 a81b8cf e1ddc42 a81b8cf e1ddc42 a81b8cf e54f6eb a81b8cf |
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 65 |
---
license: apache-2.0
tags:
- information-verification
- fact-checking
- fake-news-detection
pretty_name: >-
News Media Factual Reporting and Political Bias
size_categories:
- 1K<n<10K
---
# News Media Factual Reporting and Political Bias
Dataset introduced in the paper ["Mapping the Media Landscape: Predicting Factual Reporting and Political Bias Through Web Interactions"](https://arxiv.org/abs/2410.17655) published in the CLEF 2024 main conference.
Similar to the [news media reliability dataset](https://huggingface.co/datasets/sergioburdisso/news_media_reliability), this dataset consists of a collections of **4K new media domains names with political bias and factual reporting labels**.
Columns of the dataset:
- `source`: domain name
- `bias`: the political bias label. Values: "left", "left-center", "neutral", "right-center", "right".
- `factual_reporting`: the factual reporting label. Values: "low", "mixed", "high".
**Github repo** released along with the paper [here](https://github.com/idiap/Factual-Reporting-and-Political-Bias-Web-Interactions).
## Load Training Dataset
```python
from datasets import load_dataset
dataset = load_dataset('sergioburdisso/news_media_bias_and_factuality')
print(dataset)
```
Output:
```python
DatasetDict({
train: Dataset({
features: ['source', 'bias', 'factual_reporting'],
num_rows: 3920
})
})
```
## Citation
Springer Paper: [here](https://link.springer.com/chapter/10.1007/978-3-031-71736-9_7).
```bibtex
@inproceedings{sanchez2024mapping,
title={Mapping the media landscape: predicting factual reporting and political bias through web interactions},
author={S{\'a}nchez-Cort{\'e}s, Dairazalia and Burdisso, Sergio and Villatoro-Tello, Esa{\'u} and Motlicek, Petr},
booktitle={International Conference of the Cross-Language Evaluation Forum for European Languages},
pages={127--138},
year={2024},
organization={Springer}
}
```
## License
Copyright (c) 2024 [Idiap Research Institute](https://www.idiap.ch/).
Apache 2.0 License. |