johngiorgi commited on
Commit
6f08610
1 Parent(s): 8ec5b97

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -26,10 +26,22 @@ This is a copy of the [Multi-XScience](https://huggingface.co/datasets/multi_x_s
26
  - __query__: The `related_work` field of each example
27
  - __corpus__: The union of all documents in the `train`, `validation` and `test` splits
28
  - __retriever__: [`facebook/contriever-msmarco`](https://huggingface.co/facebook/contriever-msmarco) via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
29
- - __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
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  Retrieval results on the `test` set:
32
 
33
- |ndcg | recall@100 | recall@1000 | Rprec |
34
  | ----------- | ----------- | ----------- | ----------- |
35
- | 0.3783 | 0.5229 | 0.7217 | 0.2081 |
 
26
  - __query__: The `related_work` field of each example
27
  - __corpus__: The union of all documents in the `train`, `validation` and `test` splits
28
  - __retriever__: [`facebook/contriever-msmarco`](https://huggingface.co/facebook/contriever-msmarco) via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
29
+ - __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==4`
30
+
31
+ Retrieval results on the `train` set:
32
+
33
+ | Recall@100 | Rprec | Precision@k | Recall@k |
34
+ | ----------- | ----------- | ----------- | ----------- |
35
+ | 0.5270 | 0.2005 | 0.1551 | 0.2357 |
36
+
37
+ Retrieval results on the `validation` set:
38
+
39
+ | Recall@100 | Rprec | Precision@k | Recall@k |
40
+ | ----------- | ----------- | ----------- | ----------- |
41
+ | 0.5310 | 0.2026 | 0.1603 | 0.2432 |
42
 
43
  Retrieval results on the `test` set:
44
 
45
+ | Recall@100 | Rprec | Precision@k | Recall@k |
46
  | ----------- | ----------- | ----------- | ----------- |
47
+ | 0.5229 | 0.2081 | 0.1612 | 0.2440 |