Datasets:
Tasks:
Summarization
Modalities:
Text
Formats:
parquet
Sub-tasks:
news-articles-summarization
Languages:
English
Size:
10K - 100K
License:
johngiorgi
commited on
Commit
•
4b55360
1
Parent(s):
83d1a94
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-generated
|
4 |
+
language_creators:
|
5 |
+
- expert-generated
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
license:
|
9 |
+
- other
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
pretty_name: WCEP-10
|
13 |
+
size_categories:
|
14 |
+
- 1K<n<10K
|
15 |
+
source_datasets:
|
16 |
+
- original
|
17 |
+
task_categories:
|
18 |
+
- summarization
|
19 |
+
task_ids:
|
20 |
+
- news-articles-summarization
|
21 |
+
paperswithcode_id: wcep
|
22 |
+
train-eval-index:
|
23 |
+
- config: default
|
24 |
+
task: summarization
|
25 |
+
task_id: summarization
|
26 |
+
splits:
|
27 |
+
train_split: train
|
28 |
+
eval_split: test
|
29 |
+
col_mapping:
|
30 |
+
document: text
|
31 |
+
summary: target
|
32 |
+
metrics:
|
33 |
+
- type: rouge
|
34 |
+
name: Rouge
|
35 |
+
---
|
36 |
+
|
37 |
+
This is a copy of the [WCEP-10](https://huggingface.co/datasets/ccdv/WCEP-10) dataset, except the input source documents of its `test` split have been replaced by a __sparse__ retriever. The retrieval pipeline used:
|
38 |
+
|
39 |
+
- __query__: The `summary` field of each example
|
40 |
+
- __corpus__: The union of all documents in the `train`, `validation` and `test` splits
|
41 |
+
- __retriever__: BM25 via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
|
42 |
+
- __top-k strategy__: `"oracle"`, i.e. the number of documents retrieved, `k`, is set as the original number of input documents for each example
|
43 |
+
|
44 |
+
Retrieval results on the `test` set:
|
45 |
+
|
46 |
+
|ndcg | recall@100 | recall@1000 | Rprec |
|
47 |
+
| ----------- | ----------- | ----------- | ----------- |
|
48 |
+
| 0.8338 | 0.8836 | 0.9459 | 0.6658 |
|