Datasets:
crystina-z
commited on
Commit
•
4dde1a3
1
Parent(s):
704ef7b
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- Arabic
|
4 |
+
- Bengali
|
5 |
+
- English
|
6 |
+
- Finnish
|
7 |
+
- Indonesian
|
8 |
+
- Finnish
|
9 |
+
- Korean
|
10 |
+
- Russian
|
11 |
+
- Swahili
|
12 |
+
- Telugu
|
13 |
+
- Thai
|
14 |
+
- Japanese
|
15 |
+
|
16 |
+
license: "Apache License 2.0"
|
17 |
+
---
|
18 |
+
|
19 |
+
# Dataset Summary
|
20 |
+
Mr. TyDi is a multi-lingual benchmark dataset built on TyDi, covering eleven typologically diverse languages. It is designed for monolingual retrieval, specifically to evaluate ranking with learned dense representations.
|
21 |
+
|
22 |
+
This dataset stores documents of Mr. TyDi. To access the queries and judgments, please refer to [castorini/mr-tydi](https://huggingface.co/datasets/castorini/mr-tydi).
|
23 |
+
|
24 |
+
# Dataset Structure
|
25 |
+
The only configuration here is the `language`. As all three folds (train, dev and test) share the same corpus, there is only one fold 'train' under each language, unlike [castorini/mr-tydi](https://huggingface.co/datasets/castorini/mr-tydi).
|
26 |
+
|
27 |
+
An example of document data entry looks as follows:
|
28 |
+
```
|
29 |
+
{
|
30 |
+
'docid': '25#0',
|
31 |
+
'title': 'Autism',
|
32 |
+
'text': 'Autism is a developmental disorder characterized by difficulties with social interaction and communication, ...'
|
33 |
+
}
|
34 |
+
```
|
35 |
+
|
36 |
+
# Load Dataset
|
37 |
+
An example to load the dataset:
|
38 |
+
```
|
39 |
+
language = 'english'
|
40 |
+
dataset = load_dataset('castorini/mr-tydi-corpus', language, 'train')
|
41 |
+
```
|
42 |
+
|
43 |
+
# Citation Information
|
44 |
+
```
|
45 |
+
@article{mrtydi,
|
46 |
+
title={{Mr. TyDi}: A Multi-lingual Benchmark for Dense Retrieval},
|
47 |
+
author={Xinyu Zhang and Xueguang Ma and Peng Shi and Jimmy Lin},
|
48 |
+
year={2021},
|
49 |
+
journal={arXiv:2108.08787},
|
50 |
+
}
|
51 |
+
```
|