system HF staff commited on
Commit
e27d7d6
1 Parent(s): 7fba0a4

Update files from the datasets library (from 1.17.0)

Browse files

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

Files changed (2) hide show
  1. README.md +31 -2
  2. big_patent.py +1 -1
README.md CHANGED
@@ -37,6 +37,7 @@ task_categories:
37
  task_ids:
38
  - summarization
39
  paperswithcode_id: bigpatent
 
40
  ---
41
 
42
  # Dataset Card for Big Patent
@@ -108,7 +109,18 @@ Each instance contains a pair of `description` and `abstract`. `description` is
108
 
109
  ### Data Splits
110
 
111
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
112
 
113
  ## Dataset Creation
114
 
@@ -166,7 +178,24 @@ Each instance contains a pair of `description` and `abstract`. `description` is
166
 
167
  ### Citation Information
168
 
169
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
 
171
  ### Contributions
172
 
 
37
  task_ids:
38
  - summarization
39
  paperswithcode_id: bigpatent
40
+ pretty_name: Big Patent
41
  ---
42
 
43
  # Dataset Card for Big Patent
 
109
 
110
  ### Data Splits
111
 
112
+ | | train | validation | test |
113
+ |:----|------------------:|-------------:|-------:|
114
+ | all | 1207222 | 67068 | 67072 |
115
+ | a | 174134 | 9674 | 9675 |
116
+ | b | 161520 | 8973 | 8974 |
117
+ | c | 101042 | 5613 | 5614 |
118
+ | d | 10164 | 565 | 565 |
119
+ | e | 34443 | 1914 | 1914 |
120
+ | f | 85568 | 4754 | 4754 |
121
+ | g | 258935 | 14385 | 14386 |
122
+ | h | 257019 | 14279 | 14279 |
123
+ | y | 124397 | 6911 | 6911 |
124
 
125
  ## Dataset Creation
126
 
 
178
 
179
  ### Citation Information
180
 
181
+ ```bibtex
182
+ @article{DBLP:journals/corr/abs-1906-03741,
183
+ author = {Eva Sharma and
184
+ Chen Li and
185
+ Lu Wang},
186
+ title = {{BIGPATENT:} {A} Large-Scale Dataset for Abstractive and Coherent
187
+ Summarization},
188
+ journal = {CoRR},
189
+ volume = {abs/1906.03741},
190
+ year = {2019},
191
+ url = {http://arxiv.org/abs/1906.03741},
192
+ eprinttype = {arXiv},
193
+ eprint = {1906.03741},
194
+ timestamp = {Wed, 26 Jun 2019 07:14:58 +0200},
195
+ biburl = {https://dblp.org/rec/journals/corr/abs-1906-03741.bib},
196
+ bibsource = {dblp computer science bibliography, https://dblp.org}
197
+ }
198
+ ```
199
 
200
  ### Contributions
201
 
big_patent.py CHANGED
@@ -101,7 +101,7 @@ class BigPatent(datasets.GeneratorBasedBuilder):
101
  BigPatentConfig( # pylint:disable=g-complex-comprehension
102
  cpc_codes=[k],
103
  name=k,
104
- description=(f"Patents under Cooperative Patent Classification (CPC)" "{k}: {v}"),
105
  )
106
  for k, v in sorted(_CPC_DESCRIPTION.items())
107
  ]
 
101
  BigPatentConfig( # pylint:disable=g-complex-comprehension
102
  cpc_codes=[k],
103
  name=k,
104
+ description=("Patents under Cooperative Patent Classification (CPC)" f"{k}: {v}"),
105
  )
106
  for k, v in sorted(_CPC_DESCRIPTION.items())
107
  ]