johngiorgi commited on
Commit
a1da7da
1 Parent(s): 6094d07

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 __dense__ 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__: [`facebook/contriever-msmarco`](https://huggingface.co/facebook/contriever-msmarco) 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.815 | 0.8625 | 0.8907 | 0.6927 |