kiddothe2b commited on
Commit
53beff2
1 Parent(s): 23b4df8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +136 -0
README.md CHANGED
@@ -1,3 +1,139 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ source_datasets:
4
+ - extended
5
+ language_creators:
6
+ - found
7
+ language:
8
+ - bg
9
+ - cs
10
+ - da
11
+ - de
12
+ - el
13
+ - en
14
+ - es
15
+ - et
16
+ - fi
17
+ - fr
18
+ - hr
19
+ - hu
20
+ - it
21
+ - lt
22
+ - lv
23
+ - mt
24
+ - nl
25
+ - pl
26
+ - pt
27
+ - ro
28
+ - sk
29
+ - sl
30
+ - sv
31
+ tags:
32
+ - politics
33
+ size_categories:
34
+ - 10K<n<100K
35
+ pretty_name: EU Debates
36
  ---
37
+
38
+
39
+ # Dataset Description
40
+
41
+ EU Debates is a corpus of parliamentary proceedings (debates) from the EU parliament released by [Chalkidis and Brandl (2024)]((https://openreview.net/pdf?id=E-S6354vKNn)). The corpus consists of approx. 87k individual speeches in the period 2009-2023.
42
+ We exhaustively scrape the data from the official European Parliament Plenary website ([Link](https://www.europarl.europa.eu/)). All speeches are time-stamped, thematically organized on debates,
43
+ and include metadata relevant to the speaker's identity (full name, euro-party affiliation, speaker role), and the debate (date and title).
44
+ Older debate speeches are originally in English, while newer ones are linguistically diverse across the 23 official EU languages, thus we also provide machine-translated
45
+ versions in English, when official translations are missing, using the EasyNMT framework with the M2M2-100 (418M) model.
46
+
47
+ # Data Fields
48
+
49
+ - `speaker_name: a `string` with the full-name of the speaker.
50
+ - `speaker_party`: a `string` with the name of the euro-party (group) that the MEP is affiliated with.
51
+ - `speaker_role`: a `string` with the role of speaker (Member of the European Parliament (MEP), EUROPARL President, etc.)
52
+ - `debate_title`: a `string` with the title of the debate in the European Parliament.
53
+ - `date`: a `string` with the full date (YYYY-MM-DD) of the speech.
54
+ - `year` a `string` with the year (YYYY).
55
+ - `text`: a `string` with the full speech of the speaker.
56
+ - `translated_text`: a `string` with the translation of the speech in English, if the original is not.
57
+
58
+
59
+ # Data Instances
60
+
61
+ Example of a data instance from the EU Debates dataset:
62
+
63
+ ```
64
+ {
65
+ 'speaker_name': 'Annemie Neyts-Uyttebroeck'
66
+ 'speaker_party': 'ALDE',
67
+ 'speaker_role': 'MEP', ,
68
+ 'debate_title': 'Iran (debate)',
69
+ 'date': '2009-07-15',
70
+ 'year': '2009',
71
+ 'text': 'Iran is a large country with a large and predominantly young population, a long and eventful history and an impressive culture. [...]'
72
+ 'translated_text': None
73
+ }
74
+
75
+ # How to use
76
+
77
+ ```python
78
+
79
+ from datasets import load_dataset
80
+ eu_debates_dataset = load_dataset('coastalcph/eu_debates'))
81
+
82
+ ```
83
+
84
+ # Dataset Statistics
85
+
86
+ Distribution of speeches across euro-parties:
87
+
88
+ <table>
89
+ <tr><td> <b>Euro-party</b> </td> <td> <b>No. of Speeches</b> </td> </tr>
90
+ <tr><td>EPP </td> <td> 25,455 (29%)</td> </tr>
91
+ <tr><td>S&D </td> <td> 20,042 (23%)</td> </tr>
92
+ <tr><td>ALDE </td> <td> 8,946 (10%)</td> </tr>
93
+ <tr><td>ECR </td> <td> 7,493 (9%)</td> </tr>
94
+ <tr><td>ID </td> <td> 6,970 (8%) </td> </tr>
95
+ <tr><td>GUE/NGL </td> <td>6,780 (8%)</td> </tr>
96
+ <tr><td>Greens/EFA </td> <td> 6,398 (7%)</td> </tr>
97
+ <tr><td>NI </td> <td> 5,127 (6\%)</td> </tr>
98
+ <tr><td>Total </td> <td> 87,221 </td> </tr>
99
+ </table>
100
+
101
+
102
+ Distribution of speeches across years and euro-parties:
103
+
104
+ <table>
105
+ <tr><td><b>Year</b></td><td><b>EPP</b></td><td><b>S&D</b></td><td><b>ALDE</b></td><td><b>ECR</b></td><td><b>ID</b></td><td><b>GUE/NGL</b></td><td><b>Greens/EFA</b></td><td><b>NI</b></td><td><b>Total</b></td></tr>
106
+ <tr><td> 2009 </td><td> 748 </td><td> 456 </td><td> 180 </td><td> 138 </td><td> 72 </td><td> 174 </td><td> 113 </td><td> 163 </td><td> 2044 </td></tr>
107
+ <tr><td> 2010 </td><td> 3205 </td><td> 1623 </td><td> 616 </td><td> 340 </td><td> 341 </td><td> 529 </td><td> 427 </td><td> 546 </td><td> 7627 </td></tr>
108
+ <tr><td> 2011 </td><td> 4479 </td><td> 2509 </td><td> 817 </td><td> 418 </td><td> 761 </td><td> 792 </td><td> 490 </td><td> 614 </td><td> 10880 </td></tr>
109
+ <tr><td> 2012 </td><td> 3366 </td><td> 1892 </td><td> 583 </td><td> 419 </td><td> 560 </td><td> 486 </td><td> 351 </td><td> 347 </td><td> 8004 </td></tr>
110
+ <tr><td> 2013 </td><td> 724 </td><td> 636 </td><td> 240 </td><td> 175 </td><td> 152 </td><td> 155 </td><td> 170 </td><td> 154 </td><td> 2406 </td></tr>
111
+ <tr><td> 2014 </td><td> 578 </td><td> 555 </td><td> 184 </td><td> 180 </td><td> 131 </td><td> 160 </td><td> 144 </td><td> 180 </td><td> 2112 </td></tr>
112
+ <tr><td> 2015 </td><td> 978 </td><td> 1029 </td><td> 337 </td><td> 405 </td><td> 398 </td><td> 325 </td><td> 246 </td><td> 240 </td><td> 3958 </td></tr>
113
+ <tr><td> 2016 </td><td> 919 </td><td> 972 </td><td> 309 </td><td> 387 </td><td> 457 </td><td> 317 </td><td> 225 </td><td> 151 </td><td> 3737 </td></tr>
114
+ <tr><td> 2017 </td><td> 649 </td><td> 766 </td><td> 181 </td><td> 288 </td><td> 321 </td><td> 229 </td><td> 162 </td><td> 135 </td><td> 2731 </td></tr>
115
+ <tr><td> 2018 </td><td> 554 </td><td> 611 </td><td> 161 </td><td> 242 </td><td> 248 </td><td> 175 </td><td> 160 </td><td> 133 </td><td> 2284 </td></tr>
116
+ <tr><td> 2019 </td><td> 1296 </td><td> 1339 </td><td> 719 </td><td> 556 </td><td> 513 </td><td> 463 </td><td> 490 </td><td> 353 </td><td> 5729 </td></tr>
117
+ <tr><td> 2020 </td><td> 1660 </td><td> 1564 </td><td> 823 </td><td> 828 </td><td> 661 </td><td> 526 </td><td> 604 </td><td> 346 </td><td> 7012 </td></tr>
118
+ <tr><td> 2021 </td><td> 2147 </td><td> 2189 </td><td> 1290 </td><td> 1062 </td><td> 909 </td><td> 708 </td><td> 990 </td><td> 625 </td><td> 9920 </td></tr>
119
+ <tr><td> 2022 </td><td> 2436 </td><td> 2273 </td><td> 1466 </td><td> 1177 </td><td> 827 </td><td> 962 </td><td> 1031 </td><td> 641 </td><td> 10813 </td></tr>
120
+ <tr><td> 2023 </td><td> 1716 </td><td> 1628 </td><td> 1040 </td><td> 878 </td><td> 619 </td><td> 779 </td><td> 795 </td><td> 499 </td><td> 7954 </td></tr>
121
+ </table>
122
+
123
+ ### Citation Information
124
+
125
+ [*Llama meets EU: Investigating the European political spectrum through the lens of LLMs. Ilias Chalkidis and Stephanie Brandl. In the Proceedings of the Annual Conference of the North American Chapter of the Association for Computational Linguistics (NAACL), Mexico City, Mexico, June 16–21, 2024.](https://openreview.net/pdf?id=E-S6354vKNn)*
126
+
127
+ ```
128
+ @inproceedings{chalkidis-and-brandl-eu-llama-2024,
129
+ title = "Llama meets EU: Investigating the European political spectrum through the lens of LLMs",
130
+ author = "Chalkidis, Ilias and
131
+ Stephanie Brandl",
132
+ booktitle = "Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics",
133
+ month = jun,
134
+ year = "2021",
135
+ address = "Mexico City, Mexico",
136
+ publisher = "Association for Computational Linguistics",
137
+ }
138
+
139
+ ```