johngiorgi commited on
Commit
0d22e83
1 Parent(s): 8c9e2e3

Add description about retrieval process

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This is a copy of the [Multi-News](https://huggingface.co/datasets/multi_news) dataset, with its input source documents replaced by a __sparse__ retriever. The retrieval pipeline used:
2
+
3
+ - __query__: The `summary` field of each example
4
+ - __corpus__: The union of all documents in the `train`, `validation` and `test` sets`
5
+ - __retriever__: BM25 via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings _except_ for no stemming was applied.
6
+
7
+ Retrieval results on the `test` set:
8
+
9
+ |ndcg | recall@100 | recall@1000 | Rprec |
10
+ | ----------- | ----------- | ----------- | ----------- |
11
+ |0.8222 | 0.8242 | 0.8492 | 0.7233 |