johngiorgi commited on
Commit
256814e
1 Parent(s): c9f008f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -39,10 +39,10 @@ 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__: BM25 via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
42
- - __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
43
 
44
  Retrieval results on the `test` set:
45
 
46
- |ndcg | recall@100 | recall@1000 | Rprec |
47
  | ----------- | ----------- | ----------- | ----------- |
48
- | 0.8532 | 0.8775 | 0.8964 | 0.748 |
 
39
  - __query__: The `summary` field of each example
40
  - __corpus__: The union of all documents in the `train`, `validation` and `test` splits
41
  - __retriever__: BM25 via [PyTerrier](https://pyterrier.readthedocs.io/en/latest/) with default settings
42
+ - __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, in this case `k==3`
43
 
44
  Retrieval results on the `test` set:
45
 
46
+ | Recall@100 | Rprec | Precision@k | Recall@k |
47
  | ----------- | ----------- | ----------- | ----------- |
48
+ | 0.878 | 0.748 | 0.637 | 0.744 |