johngiorgi commited on
Commit
035aa83
1 Parent(s): 1393d26

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ language:
7
+ - en
8
+ license:
9
+ - apache-2.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - extended|other-MS^2
16
+ - extended|other-Cochrane
17
+ task_categories:
18
+ - summarization
19
+ - text2text-generation
20
+ task_ids:
21
+ - summarization-other-query-based-summarization
22
+ - summarization-other-query-based-multi-document-summarization
23
+ - summarization-other-scientific-documents-summarization
24
+ paperswithcode_id: multi-document-summarization
25
+ pretty_name: MSLR Shared Task
26
+ ---
27
+
28
+ This is a copy of the [MS^2](https://huggingface.co/datasets/allenai/mslr2022) dataset, except the input source documents of its `validation` split have been replaced by a __sparse__ retriever. The retrieval pipeline used:
29
+
30
+ - __query__: The `background` field of each example
31
+ - __corpus__: The union of all documents in the `train`, `validation` and `test` splits. A document is the concatenation of the `title` and `abstract`.
32
+ - __retriever__: BM25 via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
33
+ - __top-k strategy__: `"max"`, i.e. the number of documents retrieved, `k`, is set as the maximum number of documents seen across examples in this dataset
34
+
35
+ Retrieval results on the `test` set:
36
+
37
+ |ndcg | recall@100 | recall@1000 | Rprec |
38
+ | ----------- | ----------- | ----------- | ----------- |
39
+ | 0.4012 | 0.3780 | 0.6601 | 0.1833 |