crystina-z
commited on
Commit
•
c51474b
1
Parent(s):
adff01c
testA
Browse files
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 `
|
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 |
|