Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
found
Annotations Creators:
found
Source Datasets:
original
ArXiv:
Tags:
bills-summarization
License:
system HF staff commited on
Commit
3b572fc
1 Parent(s): f3b3a1a

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - conditional-text-generation
18
+ task_ids:
19
+ - summarization
20
+ ---
21
+
22
+ # Dataset Card for "billsum"
23
+
24
+ ## Table of Contents
25
+ - [Dataset Description](#dataset-description)
26
+ - [Dataset Summary](#dataset-summary)
27
+ - [Supported Tasks](#supported-tasks)
28
+ - [Languages](#languages)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Instances](#data-instances)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits Sample Size](#data-splits-sample-size)
33
+ - [Dataset Creation](#dataset-creation)
34
+ - [Curation Rationale](#curation-rationale)
35
+ - [Source Data](#source-data)
36
+ - [Annotations](#annotations)
37
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
38
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
39
+ - [Social Impact of Dataset](#social-impact-of-dataset)
40
+ - [Discussion of Biases](#discussion-of-biases)
41
+ - [Other Known Limitations](#other-known-limitations)
42
+ - [Additional Information](#additional-information)
43
+ - [Dataset Curators](#dataset-curators)
44
+ - [Licensing Information](#licensing-information)
45
+ - [Citation Information](#citation-information)
46
+ - [Contributions](#contributions)
47
+
48
+ ## [Dataset Description](#dataset-description)
49
+
50
+ - **Homepage:** [https://github.com/FiscalNote/BillSum](https://github.com/FiscalNote/BillSum)
51
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
52
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
53
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
54
+ - **Size of downloaded dataset files:** 64.14 MB
55
+ - **Size of the generated dataset:** 259.80 MB
56
+ - **Total amount of disk used:** 323.94 MB
57
+
58
+ ### [Dataset Summary](#dataset-summary)
59
+
60
+ BillSum, summarization of US Congressional and California state bills.
61
+
62
+ There are several features:
63
+ - text: bill text.
64
+ - summary: summary of the bills.
65
+ - title: title of the bills.
66
+ features for us bills. ca bills does not have.
67
+ - text_len: number of chars in text.
68
+ - sum_len: number of chars in summary.
69
+
70
+ ### [Supported Tasks](#supported-tasks)
71
+
72
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
73
+
74
+ ### [Languages](#languages)
75
+
76
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
77
+
78
+ ## [Dataset Structure](#dataset-structure)
79
+
80
+ We show detailed information for up to 5 configurations of the dataset.
81
+
82
+ ### [Data Instances](#data-instances)
83
+
84
+ #### default
85
+
86
+ - **Size of downloaded dataset files:** 64.14 MB
87
+ - **Size of the generated dataset:** 259.80 MB
88
+ - **Total amount of disk used:** 323.94 MB
89
+
90
+ An example of 'train' looks as follows.
91
+ ```
92
+ {
93
+ "summary": "some summary",
94
+ "text": "some text.",
95
+ "title": "An act to amend Section xxx."
96
+ }
97
+ ```
98
+
99
+ ### [Data Fields](#data-fields)
100
+
101
+ The data fields are the same among all splits.
102
+
103
+ #### default
104
+ - `text`: a `string` feature.
105
+ - `summary`: a `string` feature.
106
+ - `title`: a `string` feature.
107
+
108
+ ### [Data Splits Sample Size](#data-splits-sample-size)
109
+
110
+ | name |train|ca_test|test|
111
+ |-------|----:|------:|---:|
112
+ |default|18949| 1237|3269|
113
+
114
+ ## [Dataset Creation](#dataset-creation)
115
+
116
+ ### [Curation Rationale](#curation-rationale)
117
+
118
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
119
+
120
+ ### [Source Data](#source-data)
121
+
122
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
123
+
124
+ ### [Annotations](#annotations)
125
+
126
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
127
+
128
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
129
+
130
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
131
+
132
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
133
+
134
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
135
+
136
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
137
+
138
+ ### [Discussion of Biases](#discussion-of-biases)
139
+
140
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
141
+
142
+ ### [Other Known Limitations](#other-known-limitations)
143
+
144
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
145
+
146
+ ## [Additional Information](#additional-information)
147
+
148
+ ### [Dataset Curators](#dataset-curators)
149
+
150
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
151
+
152
+ ### [Licensing Information](#licensing-information)
153
+
154
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
155
+
156
+ ### [Citation Information](#citation-information)
157
+
158
+ ```
159
+
160
+ @misc{kornilova2019billsum,
161
+ title={BillSum: A Corpus for Automatic Summarization of US Legislation},
162
+ author={Anastassia Kornilova and Vlad Eidelman},
163
+ year={2019},
164
+ eprint={1910.00523},
165
+ archivePrefix={arXiv},
166
+ primaryClass={cs.CL}
167
+ }
168
+
169
+ ```
170
+
171
+
172
+ ### Contributions
173
+
174
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@jplu](https://github.com/jplu), [@lewtun](https://github.com/lewtun) for adding this dataset.