Datasets:

Multilinguality:
multilingual
Annotations Creators:
expert-generated
ArXiv:
License:
crystina-z commited on
Commit
c51474b
β€’
1 Parent(s): adff01c
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -76,7 +76,7 @@ lang='ar' # or any of the 16 languages
76
  miracl = datasets.load_dataset('miracl/miracl', lang, use_auth_token=True)
77
 
78
  # training set:
79
- for data in miracl['train']: # or 'dev'
80
  query_id = data['query_id']
81
  query = data['query']
82
  positive_passages = data['positive_passages']
@@ -87,7 +87,7 @@ for data in miracl['train']: # or 'dev'
87
  title = entry['title']
88
  text = entry['text']
89
  ```
90
- The structure is the same for `train` and `dev` set.
91
  Note that `negative_passages` are annotated by native speakers as well, instead of the non-positive passages from top-`k` retrieval results.
92
 
93
 
76
  miracl = datasets.load_dataset('miracl/miracl', lang, use_auth_token=True)
77
 
78
  # training set:
79
+ for data in miracl['train']: # or 'dev', 'testA'
80
  query_id = data['query_id']
81
  query = data['query']
82
  positive_passages = data['positive_passages']
87
  title = entry['title']
88
  text = entry['text']
89
  ```
90
+ The structure is the same for `train`, `dev`, and `testA` set, where `testA` only exists for languages in Mr. TyDi (i.e., Arabic, Bengali, English, Finnish, Indonesian, Japanese, Korean, Russian, Swahili, Telugu, Thai).
91
  Note that `negative_passages` are annotated by native speakers as well, instead of the non-positive passages from top-`k` retrieval results.
92
 
93