Datasets:
Tasks:
Text Retrieval
ArXiv:
Sean MacAvaney
commited on
Commit
·
5b07156
1
Parent(s):
30511d4
commit files to HF hub
Browse files- README.md +59 -0
- beir_fiqa.py +43 -0
README.md
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pretty_name: '`beir/fiqa`'
|
3 |
+
viewer: false
|
4 |
+
source_datasets: []
|
5 |
+
task_categories:
|
6 |
+
- text-retrieval
|
7 |
+
---
|
8 |
+
|
9 |
+
# Dataset Card for `beir/fiqa`
|
10 |
+
|
11 |
+
The `beir/fiqa` 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/fiqa).
|
13 |
+
|
14 |
+
# Data
|
15 |
+
|
16 |
+
This dataset provides:
|
17 |
+
- `docs` (documents, i.e., the corpus); count=57,638
|
18 |
+
- `queries` (i.e., topics); count=6,648
|
19 |
+
|
20 |
+
|
21 |
+
This dataset is used by: [`beir_fiqa_dev`](https://huggingface.co/datasets/irds/beir_fiqa_dev), [`beir_fiqa_test`](https://huggingface.co/datasets/irds/beir_fiqa_test), [`beir_fiqa_train`](https://huggingface.co/datasets/irds/beir_fiqa_train)
|
22 |
+
|
23 |
+
|
24 |
+
## Usage
|
25 |
+
|
26 |
+
```python
|
27 |
+
from datasets import load_dataset
|
28 |
+
|
29 |
+
docs = load_dataset('irds/beir_fiqa', 'docs')
|
30 |
+
for record in docs:
|
31 |
+
record # {'doc_id': ..., 'text': ...}
|
32 |
+
|
33 |
+
queries = load_dataset('irds/beir_fiqa', 'queries')
|
34 |
+
for record in queries:
|
35 |
+
record # {'query_id': ..., 'text': ...}
|
36 |
+
|
37 |
+
```
|
38 |
+
|
39 |
+
Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
|
40 |
+
data in 🤗 Dataset format.
|
41 |
+
|
42 |
+
## Citation Information
|
43 |
+
|
44 |
+
```
|
45 |
+
@article{Maia2018Fiqa,
|
46 |
+
title={WWW'18 Open Challenge: Financial Opinion Mining and Question Answering},
|
47 |
+
author={Macedo Maia and S. Handschuh and A. Freitas and Brian Davis and R. McDermott and M. Zarrouk and A. Balahur},
|
48 |
+
journal={Companion Proceedings of the The Web Conference 2018},
|
49 |
+
year={2018}
|
50 |
+
}
|
51 |
+
@article{Thakur2021Beir,
|
52 |
+
title = "BEIR: A Heterogenous Benchmark for Zero-shot Evaluation of Information Retrieval Models",
|
53 |
+
author = "Thakur, Nandan and Reimers, Nils and Rücklé, Andreas and Srivastava, Abhishek and Gurevych, Iryna",
|
54 |
+
journal= "arXiv preprint arXiv:2104.08663",
|
55 |
+
month = "4",
|
56 |
+
year = "2021",
|
57 |
+
url = "https://arxiv.org/abs/2104.08663",
|
58 |
+
}
|
59 |
+
```
|
beir_fiqa.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/fiqa'
|
11 |
+
IRDS_ENTITY_TYPES = {'docs': {'doc_id': 'string', 'text': 'string'}, 'queries': {'query_id': 'string', 'text': 'string'}}
|
12 |
+
|
13 |
+
_CITATION = '@article{Maia2018Fiqa,\n title={WWW\'18 Open Challenge: Financial Opinion Mining and Question Answering},\n author={Macedo Maia and S. Handschuh and A. Freitas and Brian Davis and R. McDermott and M. Zarrouk and A. Balahur},\n journal={Companion Proceedings of the The Web Conference 2018},\n year={2018}\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_fiqa(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/fiqa",
|
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)
|