Sean MacAvaney commited on
Commit
ec0c54e
1 Parent(s): c63cad9

commit files to HF hub

Browse files
Files changed (2) hide show
  1. README.md +56 -0
  2. codec.py +43 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`codec`'
3
+ viewer: false
4
+ source_datasets: []
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `codec`
10
+
11
+ The `codec` 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/codec#codec).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `docs` (documents, i.e., the corpus); count=729,824
18
+ - `queries` (i.e., topics); count=42
19
+ - `qrels`: (relevance assessments); count=6,186
20
+
21
+
22
+ This dataset is used by: [`codec_economics`](https://huggingface.co/datasets/irds/codec_economics), [`codec_history`](https://huggingface.co/datasets/irds/codec_history), [`codec_politics`](https://huggingface.co/datasets/irds/codec_politics)
23
+
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from datasets import load_dataset
29
+
30
+ docs = load_dataset('irds/codec', 'docs')
31
+ for record in docs:
32
+ record # {'doc_id': ..., 'title': ..., 'text': ..., 'url': ...}
33
+
34
+ queries = load_dataset('irds/codec', 'queries')
35
+ for record in queries:
36
+ record # {'query_id': ..., 'query': ..., 'domain': ..., 'guidelines': ...}
37
+
38
+ qrels = load_dataset('irds/codec', 'qrels')
39
+ for record in qrels:
40
+ record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
41
+
42
+ ```
43
+
44
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
45
+ data in 🤗 Dataset format.
46
+
47
+ ## Citation Information
48
+
49
+ ```
50
+ @inproceedings{mackie2022codec,
51
+ title={CODEC: Complex Document and Entity Collection},
52
+ author={Mackie, Iain and Owoicho, Paul and Gemmell, Carlos and Fischer, Sophie and MacAvaney, Sean and Dalton, Jeffery},
53
+ booktitle={Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval},
54
+ year={2022}
55
+ }
56
+ ```
codec.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 = 'codec'
11
+ IRDS_ENTITY_TYPES = {'docs': {'doc_id': 'string', 'title': 'string', 'text': 'string', 'url': 'string'}, 'queries': {'query_id': 'string', 'query': 'string', 'domain': 'string', 'guidelines': 'string'}, 'qrels': {'query_id': 'string', 'doc_id': 'string', 'relevance': 'int64', 'iteration': 'string'}}
12
+
13
+ _CITATION = '@inproceedings{mackie2022codec,\n title={CODEC: Complex Document and Entity Collection},\n author={Mackie, Iain and Owoicho, Paul and Gemmell, Carlos and Fischer, Sophie and MacAvaney, Sean and Dalton, Jeffery},\n booktitle={Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval},\n year={2022}\n}'
14
+
15
+ _DESCRIPTION = "" # TODO
16
+
17
+ class codec(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/codec#codec",
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)