sergioburdisso commited on
Commit
a81b8cf
·
verified ·
1 Parent(s): 7118104

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -3
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - information-verification
5
+ - fact-checking
6
+ - fake-news-detection
7
+ pretty_name: >-
8
+ Mapping the Media Landscape: Predicting Factual Reporting and Political Bias Through Web Interactions
9
+ size_categories:
10
+ - 1K<n<10K
11
+ ---
12
+
13
+ # Mapping the Media Landscape: Predicting Factual Reporting and Political Bias Through Web Interactions
14
+
15
+ 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.
16
+
17
+ The dataset consists of a collections of **4K new media domains names with political bias and factual reporting labels**.
18
+
19
+ Columns of the dataset:
20
+ - `source`: domain name
21
+ - `bias`: the political bias label. Values: "left", "left-center", "neutral", "right-center", "right".
22
+ - `factual_reporting`: the factual reporting label. Values: "low", "mixed", "high".
23
+
24
+ **Github repo** released along with the paper [here](https://github.com/idiap/Factual-Reporting-and-Political-Bias-Web-Interactions).
25
+
26
+ ## Load Training Dataset
27
+
28
+ ```python
29
+ from datasets import load_dataset
30
+
31
+ dataset = load_dataset('sergioburdisso/news_media_bias_and_factuality')
32
+
33
+ print(dataset)
34
+ ```
35
+ Output:
36
+ ```python
37
+ DatasetDict({
38
+ train: Dataset({
39
+ features: ['source', 'bias', 'factual_reporting'],
40
+ num_rows: 3920
41
+ })
42
+ })
43
+ ```
44
+
45
+ ## Citation
46
+
47
+ Springer Paper: [here](https://link.springer.com/chapter/10.1007/978-3-031-71736-9_7).
48
+
49
+ ```bibtex
50
+ @inproceedings{sanchez2024mapping,
51
+ title={Mapping the media landscape: predicting factual reporting and political bias through web interactions},
52
+ author={S{\'a}nchez-Cort{\'e}s, Dairazalia and Burdisso, Sergio and Villatoro-Tello, Esa{\'u} and Motlicek, Petr},
53
+ booktitle={International Conference of the Cross-Language Evaluation Forum for European Languages},
54
+ pages={127--138},
55
+ year={2024},
56
+ organization={Springer}
57
+ }
58
+ ```
59
+
60
+ ## License
61
+
62
+ Copyright (c) 2024 [Idiap Research Institute](https://www.idiap.ch/).
63
+ Apache 2.0 License.