Update README.md
Browse files
README.md
CHANGED
@@ -12,5 +12,68 @@ tags:
|
|
12 |
pretty_name: MedTurkQuAD
|
13 |
size_categories:
|
14 |
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
pretty_name: MedTurkQuAD
|
13 |
size_categories:
|
14 |
- 1K<n<10K
|
15 |
+
dataset_info:
|
16 |
+
total_examples: 8200
|
17 |
+
total_paragraphs: 875
|
18 |
+
source_articles: 618
|
19 |
+
source_datasets:
|
20 |
+
- original
|
21 |
+
paperswithcode_id: medturkquad-medical-turkish-question
|
22 |
+
---
|
23 |
+
# MedTurkQuAD: Medical Turkish Question-Answering Dataset
|
24 |
+
|
25 |
+
MedTurkQuAD is a dataset specifically designed for question-answering (QA) tasks in the medical domain in Turkish. It contains context paragraphs derived from medical texts, paired with questions and answers related to specific diseases or medical issues.
|
26 |
+
For more details about the dataset, methodology, and experiments, you can refer to the corresponding [research paper](https://ieeexplore.ieee.org/abstract/document/10711128).
|
27 |
+
|
28 |
+
---
|
29 |
+
## Dataset Overview
|
30 |
+
- **Number of Paragraphs**: 875
|
31 |
+
- **Number of QA Pairs**: 8,200
|
32 |
+
- **Sources**: 618 medical articles (110 Wikipedia, 508 Thesis in medicine)
|
33 |
+
- **Languages**: Turkish
|
34 |
+
|
35 |
+
### Dataset Structure
|
36 |
+
The dataset is divided into three subsets for training, validation, and testing:
|
37 |
+
|
38 |
+
| Split | Number of Paragraphs | Number of QA Pairs |
|
39 |
+
|--------------|-----------------------|---------------------|
|
40 |
+
| Training | 700 | 6560 |
|
41 |
+
| Validation | 87 | 820 |
|
42 |
+
| Testing | 88 | 820 |
|
43 |
+
|
44 |
+
---
|
45 |
+
## How to Use
|
46 |
+
|
47 |
+
This dataset can be used with libraries such as [🤗 Datasets](https://huggingface.co/docs/datasets) or [pandas](https://pandas.pydata.org/). Below are examples of the use of the dataset:
|
48 |
|
49 |
+
```python
|
50 |
+
from datasets import load_dataset
|
51 |
+
|
52 |
+
ds = load_dataset("incidelen/MedTurkQuAD")
|
53 |
+
```
|
54 |
+
```python
|
55 |
+
import pandas as pd
|
56 |
+
|
57 |
+
splits = {'train': 'train.json', 'validation': 'validation.json', 'test': 'test.json'}
|
58 |
+
df = pd.read_json("hf://datasets/incidelen/MedTurkQuAD/" + splits["train"])
|
59 |
+
```
|
60 |
+
---
|
61 |
+
## Citation
|
62 |
+
If you use this dataset, please cite the following paper:
|
63 |
+
|
64 |
+
```
|
65 |
+
@inproceedings{incidelen2024developing,
|
66 |
+
title={Developing Question-Answering Models in Low-Resource Languages: A Case Study on Turkish Medical Texts Using Transformer-Based Approaches},
|
67 |
+
author={{\.I}ncidelen, Mert and Aydo{\u{g}}an, Murat},
|
68 |
+
booktitle={2024 8th International Artificial Intelligence and Data Processing Symposium (IDAP)},
|
69 |
+
pages={1--4},
|
70 |
+
year={2024},
|
71 |
+
organization={IEEE}
|
72 |
+
}
|
73 |
+
```
|
74 |
+
---
|
75 |
+
## Acknowledgments
|
76 |
+
|
77 |
+
Special thanks to [maydogan](https://huggingface.co/maydogan) for their contributions and support in the development of this dataset.
|
78 |
+
|
79 |
+
---
|