johngiorgi commited on
Commit
c9f008f
1 Parent(s): ab5dbff

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
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: Multi-News
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - summarization
19
+ task_ids:
20
+ - news-articles-summarization
21
+ paperswithcode_id: multi-news
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 [Multi-News](https://huggingface.co/datasets/multi_news) 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__: `"mean"`, i.e. the number of documents retrieved, `k`, is set as the mean number of documents seen across examples in this dataset
43
+
44
+ Retrieval results on the `test` set:
45
+
46
+ |ndcg | recall@100 | recall@1000 | Rprec |
47
+ | ----------- | ----------- | ----------- | ----------- |
48
+ | 0.8532 | 0.8775 | 0.8964 | 0.748 |