meliksahturker commited on
Commit
05a2a8c
·
verified ·
1 Parent(s): 921f1a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md CHANGED
@@ -27,3 +27,34 @@ configs:
27
  - split: validation
28
  path: data/validation-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  - split: validation
28
  path: data/validation-*
29
  ---
30
+ # Dataset Card for AppsRetrieval-TR
31
+
32
+ ## Table of Contents
33
+ - [Dataset Description](#dataset-description)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Fields](#data-fields)
36
+ - [Source Data](#source-data)
37
+
38
+ ## Dataset Description
39
+
40
+ StackoverflowQA-TR dataset is obtained by translating both the queries and corpora of [StackoverflowQA](https://huggingface.co/datasets/CoIR-Retrieval/stackoverflow-qa) into Turkish using GPT4.1.
41
+
42
+
43
+ ### Dataset Structure
44
+
45
+ The original dataset only had `train` and `test` splits. We applied the following splitting methodology to obtain `validation` and `test` splits:
46
+
47
+ * If a train-val-test split is available, we use the existing divisions as provided.
48
+ * 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.
49
+ * 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.
50
+ * In cases with a val-test split, we split validation into train and vad sets in 80\% and 20\% proportions, respectively.
51
+ * 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.
52
+
53
+ ### Data Fields
54
+
55
+ - **query**(string) : Stackoverflow question
56
+ - **doc**(string) : Stackoverflow answer
57
+
58
+ ## Source Dataset
59
+
60
+ [StackoverflowQA](https://huggingface.co/datasets/CoIR-Retrieval/stackoverflow-qa)