Update README
Browse files
README.md
CHANGED
@@ -1,3 +1,135 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-generated
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
language_creators:
|
7 |
+
- found
|
8 |
+
license:
|
9 |
+
- odc-by
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
pretty_name: Multi-LexSum
|
13 |
+
size_categories:
|
14 |
+
- 1K<n<10K
|
15 |
+
- 10K<n<100K
|
16 |
+
source_datasets:
|
17 |
+
- original
|
18 |
+
tags: []
|
19 |
+
task_categories:
|
20 |
+
- summarization
|
21 |
+
task_ids: []
|
22 |
---
|
23 |
+
|
24 |
+
# Dataset Card for Multi-LexSum
|
25 |
+
## Table of Contents
|
26 |
+
- [Dataset Card for Multi-LexSum](#dataset-card-for-multi-lexsum)
|
27 |
+
- [Table of Contents](#table-of-contents)
|
28 |
+
- [Dataset Description](#dataset-description)
|
29 |
+
- [Dataset Summary](#dataset-summary)
|
30 |
+
- [Languages](#languages)
|
31 |
+
- [Dataset](#dataset)
|
32 |
+
- [Data Fields](#data-fields)
|
33 |
+
- [Data Splits](#data-splits)
|
34 |
+
- [Dataset Sheet (Datasheet)](#dataset-sheet-datasheet)
|
35 |
+
- [Additional Information](#additional-information)
|
36 |
+
- [Dataset Curators](#dataset-curators)
|
37 |
+
- [Licensing Information](#licensing-information)
|
38 |
+
- [Citation Information](#citation-information)
|
39 |
+
- [Release History](#release-history)
|
40 |
+
|
41 |
+
## Dataset Description
|
42 |
+
|
43 |
+
| <a href="https://multilexsum.github.io"><img src="https://img.shields.io/badge/-homepage-informational.svg?logo=jekyll" title="Multi-LexSum Paper"></a> | <a href="https://github.com/multilexsum/dataset"><img src="https://img.shields.io/badge/-multilexsum-lightgrey.svg?logo=github" title="Multi-LexSum Github Repo"></a> | <a href="https://arxiv.org/abs/2206.10883"><img src="https://img.shields.io/badge/arXiv-2206.10883-b31b1b.svg" title="Multi-LexSum Paper"></a>
|
44 |
+
|-- | -- | -- |
|
45 |
+
|
46 |
+
|
47 |
+
### Dataset Summary
|
48 |
+
|
49 |
+
The Multi-LexSum dataset is a collection of 9,280 such legal case summaries. Multi-LexSum is distinct from other datasets in its **multiple target summaries, each at a different granularity** (ranging from one-sentence “extreme” summaries to multi-paragraph narrations of over five hundred words). It presents a challenging multi-document summarization task given **the long length of the source documents**, often exceeding two hundred pages per case. Unlike other summarization datasets that are (semi-)automatically curated, Multi-LexSum consists of **expert-authored summaries**: the experts—lawyers and law students—are trained to follow carefully created guidelines, and their work is reviewed by an additional expert to ensure quality.
|
50 |
+
|
51 |
+
### Languages
|
52 |
+
|
53 |
+
English
|
54 |
+
|
55 |
+
## Dataset
|
56 |
+
|
57 |
+
### Data Fields
|
58 |
+
|
59 |
+
The dataset contains a list of instances (cases); each instance contains the following data:
|
60 |
+
|
61 |
+
| Field | Description |
|
62 |
+
| ------------: | -------------------------------------------------------------------------------: |
|
63 |
+
| id | `(str)` The case ID |
|
64 |
+
| sources | `(List[str])` A list of strings for the text extracted from the source documents |
|
65 |
+
| summary/long | `(str)` The long (multi-paragraph) summary for this case |
|
66 |
+
| summary/short | `(Optional[str])` The short (one-paragraph) summary for this case |
|
67 |
+
| summary/tiny | `(Optional[str])` The tiny (one-sentence) summary for this case |
|
68 |
+
|
69 |
+
Please check the exemplar usage below for loading the data:
|
70 |
+
|
71 |
+
```python
|
72 |
+
from datasets import load_dataset
|
73 |
+
|
74 |
+
multi_lexsum = load_dataset("allenai/multi_lexsum", name="v20220616")
|
75 |
+
# Download multi_lexsum locally and load it as a Dataset object
|
76 |
+
|
77 |
+
example = multi_lexsum["validation"][0] # The first instance of the dev set
|
78 |
+
example["sources"] # A list of source document text for the case
|
79 |
+
|
80 |
+
for sum_len in ["long", "short", "tiny"]:
|
81 |
+
print(example["summary/" + sum_len]) # Summaries of three lengths
|
82 |
+
```
|
83 |
+
|
84 |
+
### Data Splits
|
85 |
+
|
86 |
+
| | Instances | Source Documents (D) | Long Summaries (L) | Short Summaries (S) | Tiny Summaries (T) | Total Summaries |
|
87 |
+
| ----------: | --------: | -------------------: | -----------------: | ------------------: | -----------------: | --------------: |
|
88 |
+
| Train (70%) | 3,177 | 28,557 | 3,177 | 2,210 | 1,130 | 6,517 |
|
89 |
+
| Test (20%) | 908 | 7,428 | 908 | 616 | 312 | 1,836 |
|
90 |
+
| Dev (10%) | 454 | 4,134 | 454 | 312 | 161 | 927 |
|
91 |
+
|
92 |
+
|
93 |
+
## Dataset Sheet (Datasheet)
|
94 |
+
|
95 |
+
Please check our [dataset sheet](https://multilexsum.github.io/datasheet) for details regarding dataset creation, source data, annotation, and considerations for the usage.
|
96 |
+
|
97 |
+
## Additional Information
|
98 |
+
|
99 |
+
### Dataset Curators
|
100 |
+
|
101 |
+
The dataset is created by the collaboration between Civil Rights Litigation Clearinghouse (CRLC, from University of Michigan) and Allen Institute for AI. Multi-LexSum builds on the dataset used and posted by the Clearinghouse to inform the public about civil rights litigation.
|
102 |
+
|
103 |
+
### Licensing Information
|
104 |
+
|
105 |
+
The Multi-LexSum dataset is distributed under the [Open Data Commons Attribution License (ODC-By)](https://opendatacommons.org/licenses/by/1-0/).
|
106 |
+
The case summaries and metadata are licensed under the [Creative Commons Attribution License (CC BY-NC)](https://creativecommons.org/licenses/by-nc/4.0/), and the source documents are already in the public domain.
|
107 |
+
Commercial users who desire a license for summaries and metadata can contact [info@clearinghouse.net](mailto:info@clearinghouse.net), which will allow free use but limit summary re-posting.
|
108 |
+
The corresponding code for downloading and loading the dataset is licensed under the Apache License 2.0.
|
109 |
+
|
110 |
+
### Citation Information
|
111 |
+
|
112 |
+
|
113 |
+
```
|
114 |
+
@article{Shen2022MultiLexSum,
|
115 |
+
author = {Zejiang Shen and
|
116 |
+
Kyle Lo and
|
117 |
+
Lauren Yu and
|
118 |
+
Nathan Dahlberg and
|
119 |
+
Margo Schlanger and
|
120 |
+
Doug Downey},
|
121 |
+
title = {Multi-LexSum: Real-World Summaries of Civil Rights Lawsuits at Multiple Granularities},
|
122 |
+
journal = {CoRR},
|
123 |
+
volume = {abs/2206.10883},
|
124 |
+
year = {2022},
|
125 |
+
url = {https://doi.org/10.48550/arXiv.2206.10883},
|
126 |
+
doi = {10.48550/arXiv.2206.10883}
|
127 |
+
}
|
128 |
+
```
|
129 |
+
|
130 |
+
|
131 |
+
## Release History
|
132 |
+
|
133 |
+
| Version | Description |
|
134 |
+
| ----------: | -----------------------: |
|
135 |
+
| `v20220616` | The initial v1.0 release |
|