Skip to content

Commit

Permalink
add hf/README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
idalr committed Nov 7, 2023
1 parent 8a9cdd9 commit 7768b30
Showing 1 changed file with 130 additions and 0 deletions.
130 changes: 130 additions & 0 deletions dataset_builders/hf/cdcp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Dataset Card for "CDCP"

### Dataset Summary

CDCP (a.k.a. *Cornell eRulemaking Corpus*; [Park and Cardie, 2018](https://aclanthology.org/L18-1257.pdf)) consists of 731 user comments from an eRulemaking platform in the English language. There are five types of components (`Fact`, `Testimony`, `Reference`, `Value`, and `Policy`) and two types of supporting relations (`Reason` and `Evidence`) are annotated on the basis of the study by Park et al. (2015). The resulting dataset contains 4931 elementary unit and 1221 support relation annotations. (pp. 1623-1624)

### Supported Tasks and Leaderboards

- **Tasks:** Argument Minning, Link Prediction, Component Classification, Relation Classification
- **Leaderboards:** https://paperswithcode.com/dataset/cdcp

### Languages

The language in the dataset is English (AmE).

## Dataset Structure

### Data Instances

- **Size of downloaded dataset files:** 5.37 MB

```
{
'id': "00195",
'text': "State and local court rules sometimes make default judgments much more likely. For example, when a person who allegedly owes a debt is told to come to court on a work day, they may be forced to choose between a default judgment and their job. I urge the CFPB to find practices that involve scheduling hearings at inconvenient times unfair, deceptive, and abusive, or inconsistent with 1692i",
'proposition': {
"start": [0, 78, 242],
"end": [78, 242, 391],
"label": [4, 4, 1],
"url": ["", "", ""],
},
'relations': {"head": [0, 2], "tail": [1, 0], "label": [1, 1]},
}
```

### Data Fields

- `id`: the instance id of the text, a `string` feature
- `text`: the text, a `string` feature
- `proposition`: the annotation list of spans with labels and URL (if applicable), a `dictionary` feature
- `relation`: the relation between labeled spans with relation labels, a `dictionary` feature

### Data Splits

| | train | test |
| ---------------- | ----: | ---: |
| No. of instances | 581 | 150 |

Further statistics on data splits to be added.

## Dataset Creation

### Curation Rationale

eRulemaking is a means for government agencies to directly reach citizens to solicit their opinions and experiences regarding newly proposed rules. The effort, however, is partly hampered by citizens’ comments that lack reasoning and evidence, which are largely ignored since government agencies are unable to evaluate the validity and strength. (p. 1623)

It will be a valuable resource for building argument mining systems that can not only extract arguments from unstructured text, but also identify ways in which a given argument can be improved with respect to its evaluability. (p. 1624)

### Source Data

eRulemaking comments (see [eRulemaking](https://www.gsa.gov/about-us/organization/federal-acquisition-service/technology-transformation-services/erulemaking))

#### Initial Data Collection and Normalization

Annotated 731 user comments on Consumer Debt Collection Practices (CDCP) rule by the Consumer Financial Protection Bureau (CFPB) posted on www.regulationroom.org. (p. 1624)

#### Who are the source language producers?

General public participants, implying American citizens.

According to a voluntary user survey that asked the commenters to self-identify themselves, about 64% of the comments came from consumers, 22% from debt collectors, and the remainder from others, such as consumer advocates and counsellor organizations. (p. 1626)

### Annotations

#### Annotation process

The annotators annotated the elementary units and support relations defined in the argumentation model proposed by [Park et al. (2015)](https://dl.acm.org/doi/10.1145/2746090.2746118).

Each user comment was annotated by two annotators, who independently determined the types of elementary units and support relations among them using the GATE annotation tool (Cunningham et al., 2011). A third annotator manually resolved the conflicts to produce the final dataset.

Inter-annotator agreement between 2 annotators is measured with Krippendorf’s α with respect to elementary unit type (α=64.8%) and support relations (α=44.1%); IDs of supported elementary units are treated as labels for the supporting elementary units. (p. 1626)

#### Who are the annotators?

\[More Information Needed\]

### Personal and Sensitive Information

\[More Information Needed\]

## Considerations for Using the Data

### Social Impact of Dataset

Immediate applications include automatically ranking arguments based on their evaluability for a (crude) identification of read-worthy comments and providing real-time feedback to writers, specifying which types of support for which propositions can be added to construct better-formed arguments. (p. 1624)

### Discussion of Biases

Among five types of units, about 45% of the elementary units are `VALUE` type.

A significant portion, roughly 75%, of support relation annotations are between adjacent elementary units. While commenters certainly tend to provide reasons immediately after the proposition to be supported, it is also easier for annotators to identify support relations in proximity. Thus, support relations in the wild may be not as skewed toward those between adjacent elementary units. (pp. 1626-1627)

### Other Known Limitations

\[More Information Needed\]

## Additional Information

### Dataset Curators

\[More Information Needed\]

### Licensing Information

\[More Information Needed\]

### Citation Information

```
@inproceedings{park2018corpus,
title={A corpus of erulemaking user comments for measuring evaluability of arguments},
author={Park, Joonsuk and Cardie, Claire},
booktitle={Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018)},
year={2018}
}
```

### Contributions

Thanks to [@github-username](https://github.com/%3Cgithub-username%3E) for adding this dataset.

0 comments on commit 7768b30

Please sign in to comment.