Dataset Open Access
Kristof, Victor; Suresh, Aswin; Grossglauser, Matthias; Thiran, Patrick
<?xml version='1.0' encoding='utf-8'?> <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.1/metadata.xsd"> <identifier identifierType="DOI">10.5281/zenodo.4525015</identifier> <creators> <creator> <creatorName>Kristof, Victor</creatorName> <givenName>Victor</givenName> <familyName>Kristof</familyName> <affiliation>EPFL</affiliation> </creator> <creator> <creatorName>Suresh, Aswin</creatorName> <givenName>Aswin</givenName> <familyName>Suresh</familyName> <affiliation>EPFL</affiliation> </creator> <creator> <creatorName>Grossglauser, Matthias</creatorName> <givenName>Matthias</givenName> <familyName>Grossglauser</familyName> <affiliation>EPFL</affiliation> </creator> <creator> <creatorName>Thiran, Patrick</creatorName> <givenName>Patrick</givenName> <familyName>Thiran</familyName> <affiliation>EPFL</affiliation> </creator> </creators> <titles> <title>War of Words II: Enriched Models of Law-Making Processes</title> </titles> <publisher>Zenodo</publisher> <publicationYear>2021</publicationYear> <contributors> <contributor contributorType="ContactPerson"> <contributorName>Kristof, Victor</contributorName> <givenName>Victor</givenName> <familyName>Kristof</familyName> <affiliation>EPFL</affiliation> </contributor> <contributor contributorType="ContactPerson"> <contributorName>Suresh, Aswin</contributorName> <givenName>Aswin</givenName> <familyName>Suresh</familyName> <affiliation>EPFL</affiliation> </contributor> </contributors> <dates> <date dateType="Issued">2021-04-19</date> </dates> <resourceType resourceTypeGeneral="Dataset"/> <alternateIdentifiers> <alternateIdentifier alternateIdentifierType="url">https://zenodo.org/record/4525015</alternateIdentifier> </alternateIdentifiers> <relatedIdentifiers> <relatedIdentifier relatedIdentifierType="DOI" relationType="IsDocumentedBy" resourceTypeGeneral="ConferencePaper">10.1145/3442381.3450131</relatedIdentifier> <relatedIdentifier relatedIdentifierType="DOI" relationType="Continues" resourceTypeGeneral="Dataset">10.1145/3366423.3380041</relatedIdentifier> <relatedIdentifier relatedIdentifierType="DOI" relationType="IsVersionOf">10.5281/zenodo.4525014</relatedIdentifier> <relatedIdentifier relatedIdentifierType="URL" relationType="IsPartOf">https://zenodo.org/communities/epfl</relatedIdentifier> </relatedIdentifiers> <version>1.0</version> <rightsList> <rights rightsURI="https://creativecommons.org/licenses/by/4.0/legalcode">Creative Commons Attribution 4.0 International</rights> <rights rightsURI="info:eu-repo/semantics/openAccess">Open Access</rights> </rightsList> <descriptions> <description descriptionType="Abstract"><pre><code>@inproceedings{kristof2021war, author = {Kristof, Victor and Suresh, Aswin and Grossglauser, Matthias and Thiran, Patrick}, title = {War of Words II: Enriched Models for Law-Making Processes}, year = {2021}, booktitle = {Proceedings of The Web Conference 2021}, TODO: pages = {2803–2809}, numpages = {12}, location = {Ljubljana, Solvenia}, series = {WWW '21} }</code></pre> <p>This upload contains the dataset presented and used in the paper:</p> <blockquote> <p>Victor Kristof, Aswin Suresh, Matthias Grossglauser, Patrick Thiran, <a href="https://infoscience.epfl.ch/record/284828">War of Words II: Enriched Models of Law-Making Processes</a>,&nbsp;The Web Conference 2021, April 19-23, 2021, Ljubljana, Slovenia</p> </blockquote> <p>The code to process and use the dataset can be found on&nbsp;<a href="https://github.com/indy-lab/war-of-words">GitHub</a>.</p> <p>This is a follow-up work to&nbsp;<em><a href="https://zenodo.org/record/3757714">War of Words: The Competitive Dynamics of Legislative Processes</a>.</em></p> <p>The dataset is split into two legislature periods of the European Parliament, the 7th (<strong>war-of-words-2-ep7.txt</strong>) and the 8th (<strong>war-of-words-2-ep8.txt</strong>) legislature.&nbsp;Here is a snippet to load the dataset (for EP8&nbsp;in this example) in Python:</p> <pre><code class="language-python">import json with open('path/to/war-of-words-2-ep8.txt') as f: dataset = [json.loads(l) for l in f.readlines()] </code></pre> <p>In the two text files, each line is a data point representing a&nbsp;<em>conflict between edits</em>. It is encoded as a JSON list of dictionaries, where each dictionary is an edit.&nbsp;Each edit has the following structure:</p> <pre><code class="language-json">{ 'edit_id': 163187, // Unique edit identifier 'edit_type': 'insert', // One of 'insert', 'delete', or 'replace' 'accepted': True, // Label 'dossier_ref': 'ENVI-AD(2012)487738', // Reference to dossier (see below) 'dossier_type': 'opinion', // One of 'opinion' or 'report' 'date': '2017-03-02', // Date of vote of all amendments for this dossier 'legal_act': 'regulation', // One of 'regulation', 'directive', or 'decision' 'committee': 'BUDG', // Committee in which this edit was proposed 'outsider': False, // Whether the above committee is the reporting committee 'article_type': 'recital', // One of 7 article types 'source': 'BUDG-AM(2017)599742', // Reference to original document of the amendment 'justification': None, // The text of the optional justification (or None) 'edit_indices': {...}, // Indices of edit in the amendment (see below) 'text_original': [...], // Original text reported in the source document (see below) 'text_amended': [...], // Amended text reported in the source document (see below) 'authors': [ // List of authors { 'id': 88882, // Unique MEP identifier (see below) 'name': 'Victor NEGRESCU', // MEP full name 'gender': 'M', // Gender as reported on the Parliament database 'nationality': 'Romania', // One of 28 nationalities 'group': 'Group of the Progressive Alliance of Socialists and Democrats in the European Parliament', // One 9 political groups 'rapporteur': False // Whether the MEP is rapporteur for this dossier }, ], }</code></pre> <p>The <strong>text_original</strong>&nbsp;and <strong>text_amended</strong>&nbsp;keys contain the portion of text reported in the `source` document. The text is tokenized as a list of terms (words, numbers, punctuation, ...).&nbsp;<em>These two keys are not the actual edit.</em>&nbsp;This is because the amendments are reported as an edited paragraph (which also gives some context to the edit).&nbsp;An amendment contains one or more edits. To access the actual text of the edit, use the&nbsp;`edit_indices` key, which&nbsp;is a dictionary (such as `{&#39;i1&#39;: 80, &#39;i2&#39;: 80, &#39;j1&#39;: 80, &#39;j2&#39;: 101}`). The `i1` and `i2` keys are the first and last indices of the change in the original text, and the `j1` and `j2` keys are the first and last indices of the amended text. Hence, you can access the text of the edit by doing:</p> <pre><code class="language-python">idx = edit['edit_indices'] i1, i2, j1, j2 = idx['i1'], idx['i2'], idx['j1'], idx['j2'] old = edit['text_original'][i1:i2] new = edit['text_amended'][j1:j2] print(f'"{old}" is replaced by "{new}"')</code></pre> <p>If an edit is an insertion, then `i1 == i2`. If it is a deletion, then `j1 == j2`. Read the documentation of <a href="https://docs.python.org/3.6/library/difflib.html#difflib.SequenceMatcher.get_opcodes">difflib</a> to learn more about how these indices&nbsp;are obtained.</p> <p>You can assume that:</p> <ul> <li>Each data point has at least one edit.</li> <li>If there is only one edit, then it is&nbsp;<em>in conflict with the status quo&nbsp;</em>(see Section 2&nbsp;of the paper).</li> <li>If there are two or more edits in conflict, then they are all in conflict against each other&nbsp;<em>and</em>&nbsp;they are in conflict with the status quo (see Section 2&nbsp;of the paper).</li> <li>At most one edit is accepted in&nbsp;each data point.</li> <li>In each legislature, each edit has a unique identifier.</li> </ul> <p>You&nbsp;can find the original documents where the amendments were proposed using the `source` key, which has the format `COMM-AM(YEAR)PENUMBER`.&nbsp;Use the following search tools for&nbsp;<a href="https://www.europarl.europa.eu/committees/en/archives/7/document-search">EP7</a>&nbsp;and&nbsp;<a href="https://www.europarl.europa.eu/committees/en/archives/8/document-search">EP8</a>&nbsp;(the PE number field should be enough, adding a &quot;.&quot; to fit the required format).</p> <p>The&nbsp;parliamentarians (MEPs, for Member of the European Parliament) have a unique identifier that you can use to get more details about them on the Parliament website: Go to&nbsp;<strong>https://www.europarl.europa.eu/meps/en/MEP_ID</strong>, where&nbsp;<strong>MEP_ID&nbsp;</strong>is the id of the MEP of interest.</p> <p><strong>Don&#39;t hesitate to&nbsp;<a href="mailto:victor.kristof@epfl.ch?subject=Question%20about%20the%20War%20of%20Words%20dataset">reach out to me</a>&nbsp;if you have any questions!</strong></p> <p>&nbsp;</p> <p>To cite this work:</p> <pre><code>@inproceedings{kristof2021war, author = {Kristof, Victor and Suresh, Aswin and Grossglauser, Matthias and Thiran, Patrick}, title = {War of Words II: Enriched Models for Law-Making Processes}, year = {2021}, booktitle = {Proceedings of The Web Conference 2021}, TODO: pages = {2803–2809}, numpages = {12}, location = {Ljubljana, Solvenia}, series = {WWW '21} }</code></pre> <p>&nbsp;</p></description> </descriptions> </resource>
All versions | This version | |
---|---|---|
Views | 147 | 65 |
Downloads | 59 | 21 |
Data volume | 18.2 GB | 7.0 GB |
Unique views | 112 | 56 |
Unique downloads | 32 | 15 |