Datasets:
Tasks:
Text Retrieval
ArXiv:
Sean MacAvaney
commited on
Commit
•
38c95af
1
Parent(s):
10676b0
commit files to HF hub
Browse files- README.md +68 -0
- beir_trec-covid.py +43 -0
README.md
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pretty_name: '`beir/trec-covid`'
|
3 |
+
viewer: false
|
4 |
+
source_datasets: []
|
5 |
+
task_categories:
|
6 |
+
- text-retrieval
|
7 |
+
---
|
8 |
+
|
9 |
+
# Dataset Card for `beir/trec-covid`
|
10 |
+
|
11 |
+
The `beir/trec-covid` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
|
12 |
+
For more information about the dataset, see the [documentation](https://ir-datasets.com/beir#beir/trec-covid).
|
13 |
+
|
14 |
+
# Data
|
15 |
+
|
16 |
+
This dataset provides:
|
17 |
+
- `docs` (documents, i.e., the corpus); count=171,332
|
18 |
+
- `queries` (i.e., topics); count=50
|
19 |
+
- `qrels`: (relevance assessments); count=66,336
|
20 |
+
|
21 |
+
|
22 |
+
## Usage
|
23 |
+
|
24 |
+
```python
|
25 |
+
from datasets import load_dataset
|
26 |
+
|
27 |
+
docs = load_dataset('irds/beir_trec-covid', 'docs')
|
28 |
+
for record in docs:
|
29 |
+
record # {'doc_id': ..., 'text': ..., 'title': ..., 'url': ..., 'pubmed_id': ...}
|
30 |
+
|
31 |
+
queries = load_dataset('irds/beir_trec-covid', 'queries')
|
32 |
+
for record in queries:
|
33 |
+
record # {'query_id': ..., 'text': ..., 'query': ..., 'narrative': ...}
|
34 |
+
|
35 |
+
qrels = load_dataset('irds/beir_trec-covid', 'qrels')
|
36 |
+
for record in qrels:
|
37 |
+
record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
|
38 |
+
|
39 |
+
```
|
40 |
+
|
41 |
+
Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
|
42 |
+
data in 🤗 Dataset format.
|
43 |
+
|
44 |
+
## Citation Information
|
45 |
+
|
46 |
+
```
|
47 |
+
@article{Wang2020Cord19,
|
48 |
+
title={CORD-19: The Covid-19 Open Research Dataset},
|
49 |
+
author={Lucy Lu Wang and Kyle Lo and Yoganand Chandrasekhar and Russell Reas and Jiangjiang Yang and Darrin Eide and K. Funk and Rodney Michael Kinney and Ziyang Liu and W. Merrill and P. Mooney and D. Murdick and Devvret Rishi and Jerry Sheehan and Zhihong Shen and B. Stilson and A. Wade and K. Wang and Christopher Wilhelm and Boya Xie and D. Raymond and Daniel S. Weld and Oren Etzioni and Sebastian Kohlmeier},
|
50 |
+
journal={ArXiv},
|
51 |
+
year={2020}
|
52 |
+
}
|
53 |
+
@article{Voorhees2020TrecCovid,
|
54 |
+
title={TREC-COVID: Constructing a Pandemic Information Retrieval Test Collection},
|
55 |
+
author={E. Voorhees and Tasmeer Alam and Steven Bedrick and Dina Demner-Fushman and W. Hersh and Kyle Lo and Kirk Roberts and I. Soboroff and Lucy Lu Wang},
|
56 |
+
journal={ArXiv},
|
57 |
+
year={2020},
|
58 |
+
volume={abs/2005.04474}
|
59 |
+
}
|
60 |
+
@article{Thakur2021Beir,
|
61 |
+
title = "BEIR: A Heterogenous Benchmark for Zero-shot Evaluation of Information Retrieval Models",
|
62 |
+
author = "Thakur, Nandan and Reimers, Nils and Rücklé, Andreas and Srivastava, Abhishek and Gurevych, Iryna",
|
63 |
+
journal= "arXiv preprint arXiv:2104.08663",
|
64 |
+
month = "4",
|
65 |
+
year = "2021",
|
66 |
+
url = "https://arxiv.org/abs/2104.08663",
|
67 |
+
}
|
68 |
+
```
|
beir_trec-covid.py
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
"""
|
3 |
+
""" # TODO
|
4 |
+
try:
|
5 |
+
import ir_datasets
|
6 |
+
except ImportError as e:
|
7 |
+
raise ImportError('ir-datasets package missing; `pip install ir-datasets`')
|
8 |
+
import datasets
|
9 |
+
|
10 |
+
IRDS_ID = 'beir/trec-covid'
|
11 |
+
IRDS_ENTITY_TYPES = {'docs': {'doc_id': 'string', 'text': 'string', 'title': 'string', 'url': 'string', 'pubmed_id': 'string'}, 'queries': {'query_id': 'string', 'text': 'string', 'query': 'string', 'narrative': 'string'}, 'qrels': {'query_id': 'string', 'doc_id': 'string', 'relevance': 'int64', 'iteration': 'string'}}
|
12 |
+
|
13 |
+
_CITATION = '@article{Wang2020Cord19,\n title={CORD-19: The Covid-19 Open Research Dataset},\n author={Lucy Lu Wang and Kyle Lo and Yoganand Chandrasekhar and Russell Reas and Jiangjiang Yang and Darrin Eide and K. Funk and Rodney Michael Kinney and Ziyang Liu and W. Merrill and P. Mooney and D. Murdick and Devvret Rishi and Jerry Sheehan and Zhihong Shen and B. Stilson and A. Wade and K. Wang and Christopher Wilhelm and Boya Xie and D. Raymond and Daniel S. Weld and Oren Etzioni and Sebastian Kohlmeier},\n journal={ArXiv},\n year={2020}\n}\n@article{Voorhees2020TrecCovid,\n title={TREC-COVID: Constructing a Pandemic Information Retrieval Test Collection},\n author={E. Voorhees and Tasmeer Alam and Steven Bedrick and Dina Demner-Fushman and W. Hersh and Kyle Lo and Kirk Roberts and I. Soboroff and Lucy Lu Wang},\n journal={ArXiv},\n year={2020},\n volume={abs/2005.04474}\n}\n@article{Thakur2021Beir,\n title = "BEIR: A Heterogenous Benchmark for Zero-shot Evaluation of Information Retrieval Models",\n author = "Thakur, Nandan and Reimers, Nils and Rücklé, Andreas and Srivastava, Abhishek and Gurevych, Iryna", \n journal= "arXiv preprint arXiv:2104.08663",\n month = "4",\n year = "2021",\n url = "https://arxiv.org/abs/2104.08663",\n}'
|
14 |
+
|
15 |
+
_DESCRIPTION = "" # TODO
|
16 |
+
|
17 |
+
class beir_trec_covid(datasets.GeneratorBasedBuilder):
|
18 |
+
BUILDER_CONFIGS = [datasets.BuilderConfig(name=e) for e in IRDS_ENTITY_TYPES]
|
19 |
+
|
20 |
+
def _info(self):
|
21 |
+
return datasets.DatasetInfo(
|
22 |
+
description=_DESCRIPTION,
|
23 |
+
features=datasets.Features({k: datasets.Value(v) for k, v in IRDS_ENTITY_TYPES[self.config.name].items()}),
|
24 |
+
homepage=f"https://ir-datasets.com/beir#beir/trec-covid",
|
25 |
+
citation=_CITATION,
|
26 |
+
)
|
27 |
+
|
28 |
+
def _split_generators(self, dl_manager):
|
29 |
+
return [datasets.SplitGenerator(name=self.config.name)]
|
30 |
+
|
31 |
+
def _generate_examples(self):
|
32 |
+
dataset = ir_datasets.load(IRDS_ID)
|
33 |
+
for i, item in enumerate(getattr(dataset, self.config.name)):
|
34 |
+
key = i
|
35 |
+
if self.config.name == 'docs':
|
36 |
+
key = item.doc_id
|
37 |
+
elif self.config.name == 'queries':
|
38 |
+
key = item.query_id
|
39 |
+
yield key, item._asdict()
|
40 |
+
|
41 |
+
def as_dataset(self, split=None, *args, **kwargs):
|
42 |
+
split = self.config.name # always return split corresponding with this config to avid returning a redundant DatasetDict layer
|
43 |
+
return super().as_dataset(split, *args, **kwargs)
|