johngiorgi commited on
Commit
8077caf
1 Parent(s): a5910a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -30,10 +30,10 @@ This is a copy of the [MS^2](https://huggingface.co/datasets/allenai/mslr2022) d
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 `validation` set:
36
 
37
- |ndcg | recall@100 | recall@1000 | Rprec |
38
  | ----------- | ----------- | ----------- | ----------- |
39
- | 0.4012 | 0.3780 | 0.6601 | 0.1833 |
 
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, in this case `k==25`
34
 
35
  Retrieval results on the `validation` set:
36
 
37
+ | Recall@100 | Rprec | Precision@k | Recall@k |
38
  | ----------- | ----------- | ----------- | ----------- |
39
+ | 0.378 | 0.1827 | 0.1559 | 0.2188 |