ebrarkiziloglu commited on
Commit
eee8993
·
verified ·
1 Parent(s): c532a5d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -35,3 +35,40 @@ configs:
35
  - split: test
36
  path: data/test-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  - split: test
36
  path: data/test-*
37
  ---
38
+
39
+ # Dataset Card for XQuAD-TR
40
+
41
+ ## Table of Contents
42
+ - [Dataset Description](#dataset-description)
43
+ - [Dataset Structure](#dataset-structure)
44
+ - [Data Fields](#data-fields)
45
+ - [Source Data](#source-data)
46
+
47
+ ## Dataset Description
48
+
49
+ XQuAD is originally [released](https://huggingface.co/datasets/google/xquad) by Google for 11 languages.
50
+ We used the `xquad.tr` subset for Turkish.
51
+
52
+ ### Dataset Structure
53
+
54
+ The original `xquad.tr` subset only had `validation` split. We applied the following splitting methodology to obtain the `train` and `test` splits:
55
+
56
+ * If a train-val-test split is available, we use the existing divisions as provided.
57
+ * For datasets with a train-test split only, we create a val split from the training set, sized to match the test set, and apply this across all models.
58
+ * In cases with a train-val split, we reassign the val set as the test split, then generate a new val split from the training data following the approach above.
59
+ * In cases with a val-test split, we split validation into train and vad sets in 80\% and 20\% proportions, respectively.
60
+ * When only a single combined split is present, we partition the data into train, val, and test sets in 70\%, 15\%, and 15\% proportions, respectively.
61
+
62
+ ### Data Fields
63
+
64
+ - **context** (string): The passage or paragraph in which the answer to the question can be found.
65
+ - **question** (string): The question being asked.
66
+ - **answers** (dict): A dictionary containing:
67
+ - **text** (list): A list of answer strings corresponding to possible correct answers for the question.
68
+ - **answer_start** (list): A list of character indices indicating the start position of each answer in the context.
69
+
70
+ Example: `{"text": ["Hassan al-Turabi"], "answer_start": [22]}`
71
+
72
+ ## Source Dataset
73
+
74
+ [hf.co/google/xquad](https://huggingface.co/datasets/google/xquad)