Create README.md 🍦
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# TyDiQA-GoldP-Th
|
2 |
+
This dataset contains a removed Thai TyDiQA dataset obtained from [Khalidalt's TyDiQA Dataset](https://huggingface.co/datasets/khalidalt/tydiqa-goldp).
|
3 |
+
This dataset version does the following additional preprocessing to the dataset
|
4 |
+
1. Convert byte-level index into character-level index
|
5 |
+
2. Fix any mismatch text between answer span and actual text
|
6 |
+
3. Re-split train/development set such that there's no leakage in context passage
|
7 |
+
4. Deduplicate questions from the same context passage
|
8 |
+
|
9 |
+
## Dataset Format
|
10 |
+
The dataset is formatted to make it compatible to [XTREME benchmark](https://github.com/google-research/xtreme) format. The data is formatted as the following pattern:
|
11 |
+
```json
|
12 |
+
{
|
13 |
+
"version": "TyDiQA-GoldP-1.1-for-SQuAD-1.1",
|
14 |
+
"data": [
|
15 |
+
{
|
16 |
+
"paragrahs": [{
|
17 |
+
"context": [PASSAGE CONTEXT HERE],
|
18 |
+
"qas": [{
|
19 |
+
"answers": [{
|
20 |
+
"answer_start": [CONTEXT START CHAR INDEX OF ANSWER],
|
21 |
+
"text": [TEXT SPAN FROM CONTEXT],
|
22 |
+
}],
|
23 |
+
"question": [QUESTION],
|
24 |
+
"id": [ID]
|
25 |
+
}]
|
26 |
+
}],
|
27 |
+
},
|
28 |
+
...
|
29 |
+
]
|
30 |
+
}
|
31 |
+
```
|
32 |
+
|
33 |
+
## Author
|
34 |
+
Chompakorn Chaksangchaichot
|