Sean MacAvaney commited on
Commit
52c67d9
·
1 Parent(s): 13674b1

commit files to HF hub

Browse files
Files changed (2) hide show
  1. README.md +47 -0
  2. disks45_nocr.py +43 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: '`disks45/nocr`'
3
+ viewer: false
4
+ source_datasets: []
5
+ task_categories:
6
+ - text-retrieval
7
+ ---
8
+
9
+ # Dataset Card for `disks45/nocr`
10
+
11
+ The `disks45/nocr` 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/disks45#disks45/nocr).
13
+
14
+ # Data
15
+
16
+ This dataset provides:
17
+ - `docs` (documents, i.e., the corpus); count=528,155
18
+
19
+
20
+ This dataset is used by: [`disks45_nocr_trec-robust-2004`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004), [`disks45_nocr_trec-robust-2004_fold1`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004_fold1), [`disks45_nocr_trec-robust-2004_fold2`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004_fold2), [`disks45_nocr_trec-robust-2004_fold3`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004_fold3), [`disks45_nocr_trec-robust-2004_fold4`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004_fold4), [`disks45_nocr_trec-robust-2004_fold5`](https://huggingface.co/datasets/irds/disks45_nocr_trec-robust-2004_fold5), [`disks45_nocr_trec7`](https://huggingface.co/datasets/irds/disks45_nocr_trec7), [`disks45_nocr_trec8`](https://huggingface.co/datasets/irds/disks45_nocr_trec8)
21
+
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from datasets import load_dataset
27
+
28
+ docs = load_dataset('irds/disks45_nocr', 'docs')
29
+ for record in docs:
30
+ record # {'doc_id': ..., 'title': ..., 'body': ..., 'marked_up_doc': ...}
31
+
32
+ ```
33
+
34
+ Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
35
+ data in 🤗 Dataset format.
36
+
37
+ ## Citation Information
38
+
39
+ ```
40
+ @misc{Voorhees1996Disks45,
41
+ title = {NIST TREC Disks 4 and 5: Retrieval Test Collections Document Set},
42
+ author = {Ellen M. Voorhees},
43
+ doi = {10.18434/t47g6m},
44
+ year = {1996},
45
+ publisher = {National Institute of Standards and Technology}
46
+ }
47
+ ```
disks45_nocr.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 = 'disks45/nocr'
11
+ IRDS_ENTITY_TYPES = {'docs': {'doc_id': 'string', 'title': 'string', 'body': 'string', 'marked_up_doc': 'binary'}}
12
+
13
+ _CITATION = '@misc{Voorhees1996Disks45,\n title = {NIST TREC Disks 4 and 5: Retrieval Test Collections Document Set},\n author = {Ellen M. Voorhees},\n doi = {10.18434/t47g6m},\n year = {1996},\n publisher = {National Institute of Standards and Technology}\n}'
14
+
15
+ _DESCRIPTION = "" # TODO
16
+
17
+ class disks45_nocr(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/disks45#disks45/nocr",
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)