Sean MacAvaney commited on
Commit ·
b084fbb
1
Parent(s): 7a7f0b8
commit files to HF hub
Browse files- README.md +55 -0
- clueweb12_b13_clef-ehealth.py +43 -0
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: '`clueweb12/b13/clef-ehealth`'
|
| 3 |
+
viewer: false
|
| 4 |
+
source_datasets: ['irds/clueweb12_b13']
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-retrieval
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Dataset Card for `clueweb12/b13/clef-ehealth`
|
| 10 |
+
|
| 11 |
+
The `clueweb12/b13/clef-ehealth` 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/clueweb12#clueweb12/b13/clef-ehealth).
|
| 13 |
+
|
| 14 |
+
# Data
|
| 15 |
+
|
| 16 |
+
This dataset provides:
|
| 17 |
+
- `queries` (i.e., topics); count=300
|
| 18 |
+
- `qrels`: (relevance assessments); count=269,232
|
| 19 |
+
|
| 20 |
+
- For `docs`, use [`irds/clueweb12_b13`](https://huggingface.co/datasets/irds/clueweb12_b13)
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from datasets import load_dataset
|
| 26 |
+
|
| 27 |
+
queries = load_dataset('irds/clueweb12_b13_clef-ehealth', 'queries')
|
| 28 |
+
for record in queries:
|
| 29 |
+
record # {'query_id': ..., 'text': ...}
|
| 30 |
+
|
| 31 |
+
qrels = load_dataset('irds/clueweb12_b13_clef-ehealth', 'qrels')
|
| 32 |
+
for record in qrels:
|
| 33 |
+
record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'trustworthiness': ..., 'understandability': ..., 'iteration': ...}
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
|
| 38 |
+
data in 🤗 Dataset format.
|
| 39 |
+
|
| 40 |
+
## Citation Information
|
| 41 |
+
|
| 42 |
+
```
|
| 43 |
+
@inproceedings{Zuccon2016ClefEhealth,
|
| 44 |
+
title={The IR Task at the CLEF eHealth Evaluation Lab 2016: User-centred Health Information Retrieval},
|
| 45 |
+
author={Guido Zuccon and Joao Palotti and Lorraine Goeuriot and Liadh Kelly and Mihai Lupu and Pavel Pecina and Henning M{\"u}ller and Julie Budaher and Anthony Deacon},
|
| 46 |
+
booktitle={CLEF},
|
| 47 |
+
year={2016}
|
| 48 |
+
}
|
| 49 |
+
@inproceedings{Palotti2017ClefEhealth,
|
| 50 |
+
title={CLEF 2017 Task Overview: The IR Task at the eHealth Evaluation Lab - Evaluating Retrieval Methods for Consumer Health Search},
|
| 51 |
+
author={Joao Palotti and Guido Zuccon and Jimmy and Pavel Pecina and Mihai Lupu and Lorraine Goeuriot and Liadh Kelly and Allan Hanbury},
|
| 52 |
+
booktitle={CLEF},
|
| 53 |
+
year={2017}
|
| 54 |
+
}
|
| 55 |
+
```
|
clueweb12_b13_clef-ehealth.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 = 'clueweb12/b13/clef-ehealth'
|
| 11 |
+
IRDS_ENTITY_TYPES = {'queries': {'query_id': 'string', 'text': 'string'}, 'qrels': {'query_id': 'string', 'doc_id': 'string', 'relevance': 'int64', 'trustworthiness': 'int64', 'understandability': 'int64', 'iteration': 'string'}}
|
| 12 |
+
|
| 13 |
+
_CITATION = '@inproceedings{Zuccon2016ClefEhealth,\n title={The IR Task at the CLEF eHealth Evaluation Lab 2016: User-centred Health Information Retrieval},\n author={Guido Zuccon and Joao Palotti and Lorraine Goeuriot and Liadh Kelly and Mihai Lupu and Pavel Pecina and Henning M{\\"u}ller and Julie Budaher and Anthony Deacon},\n booktitle={CLEF},\n year={2016}\n}\n@inproceedings{Palotti2017ClefEhealth,\n title={CLEF 2017 Task Overview: The IR Task at the eHealth Evaluation Lab - Evaluating Retrieval Methods for Consumer Health Search},\n author={Joao Palotti and Guido Zuccon and Jimmy and Pavel Pecina and Mihai Lupu and Lorraine Goeuriot and Liadh Kelly and Allan Hanbury},\n booktitle={CLEF},\n year={2017}\n}'
|
| 14 |
+
|
| 15 |
+
_DESCRIPTION = "" # TODO
|
| 16 |
+
|
| 17 |
+
class clueweb12_b13_clef_ehealth(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/clueweb12#clueweb12/b13/clef-ehealth",
|
| 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)
|