johngiorgi commited on
Commit
5cd0772
1 Parent(s): 824d800

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -28,8 +28,20 @@ This is a copy of the [MS^2](https://huggingface.co/datasets/allenai/mslr2022) d
28
  - __retriever__: BM25 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==25`
30
 
 
 
 
 
 
 
31
  Retrieval results on the `validation` set:
32
 
33
  | Recall@100 | Rprec | Precision@k | Recall@k |
34
  | ----------- | ----------- | ----------- | ----------- |
35
- | 0.378 | 0.1827 | 0.1559 | 0.2188 |
 
 
 
 
 
 
28
  - __retriever__: BM25 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==25`
30
 
31
+ Retrieval results on the `train` set:
32
+
33
+ | Recall@100 | Rprec | Precision@k | Recall@k |
34
+ | ----------- | ----------- | ----------- | ----------- |
35
+ | 0.4333 | 0.2163 | 0.1746 | 0.2636 |
36
+
37
  Retrieval results on the `validation` set:
38
 
39
  | Recall@100 | Rprec | Precision@k | Recall@k |
40
  | ----------- | ----------- | ----------- | ----------- |
41
+ | 0.378 | 0.1827 | 0.1559 | 0.2188 |
42
+
43
+ Retrieval results on the `test` set:
44
+
45
+ | Recall@100 | Rprec | Precision@k | Recall@k |
46
+ | ----------- | ----------- | ----------- | ----------- |
47
+ | 0.3928 | 0.1898 | 0.1672 | 0.2208 |