Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
expert-generated
Annotations Creators:
expert-generated
Source Datasets:
original
Tags:
License:
johngiorgi commited on
Commit
2ad2a4a
1 Parent(s): ad54ee3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -39,10 +39,22 @@ This is a copy of the [Multi-News](https://huggingface.co/datasets/multi_news) d
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__: `"max"`, i.e. the number of documents retrieved, `k`, is set as the maximum 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.815 | 0.8625 | 0.8907 | 0.6927 |
 
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__: `"max"`, i.e. the number of documents retrieved, `k`, is set as the maximum number of documents seen across examples in this dataset, in this case `k==10`
43
+
44
+ Retrieval results on the `train` set:
45
+
46
+ Recall@100 | Rprec | Precision@k | Recall@k |
47
+ | ----------- | ----------- | ----------- | ----------- |
48
+ | 0.8661 | 0.6867 | 0.2118 | 0.7966 |
49
+
50
+ Retrieval results on the `validation` set:
51
+
52
+ Recall@100 | Rprec | Precision@k | Recall@k |
53
+ | ----------- | ----------- | ----------- | ----------- |
54
+ | 0.8626 | 0.6859 | 0.2083 | 0.7949 |
55
 
56
  Retrieval results on the `test` set:
57
 
58
+ Recall@100 | Rprec | Precision@k | Recall@k |
59
  | ----------- | ----------- | ----------- | ----------- |
60
+ | 0.8625 | 0.6927 | 0.2096 | 0.7971 |